From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8U33-0005B0-PS for qemu-devel@nongnu.org; Wed, 29 Jan 2014 07:15:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8U2v-0007IZ-CN for qemu-devel@nongnu.org; Wed, 29 Jan 2014 07:15:17 -0500 Received: from smtp.citrix.com ([66.165.176.89]:27561) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8U2v-0007I9-87 for qemu-devel@nongnu.org; Wed, 29 Jan 2014 07:15:09 -0500 From: Wei Liu Date: Wed, 29 Jan 2014 12:15:05 +0000 Message-ID: <1390997707-28607-2-git-send-email-wei.liu2@citrix.com> In-Reply-To: <1390997707-28607-1-git-send-email-wei.liu2@citrix.com> References: <1390997707-28607-1-git-send-email-wei.liu2@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH 1/3] xen: move Xen PV machine files to hw/xenpv List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: xen-devel@lists.xenproject.org, qemu-devel@nongnu.org Cc: anthony.perard@citrix.com, Wei Liu , stefano.stabellini@eu.citrix.com Signed-off-by: Wei Liu --- hw/i386/Makefile.objs | 2 +- hw/xenpv/Makefile.objs | 2 ++ hw/{i386 => xenpv}/xen_domainbuild.c | 0 hw/{i386 => xenpv}/xen_domainbuild.h | 0 hw/{i386 => xenpv}/xen_machine_pv.c | 0 5 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 hw/xenpv/Makefile.objs rename hw/{i386 => xenpv}/xen_domainbuild.c (100%) rename hw/{i386 => xenpv}/xen_domainbuild.h (100%) rename hw/{i386 => xenpv}/xen_machine_pv.c (100%) diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index 09ac433..0faccd7 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -2,7 +2,7 @@ obj-$(CONFIG_KVM) += kvm/ obj-y += multiboot.o smbios.o obj-y += pc.o pc_piix.o pc_q35.o obj-y += pc_sysfw.o -obj-$(CONFIG_XEN) += xen_domainbuild.o xen_machine_pv.o +obj-$(CONFIG_XEN) += ../xenpv/ obj-y += kvmvapic.o obj-y += acpi-build.o diff --git a/hw/xenpv/Makefile.objs b/hw/xenpv/Makefile.objs new file mode 100644 index 0000000..49f6e9e --- /dev/null +++ b/hw/xenpv/Makefile.objs @@ -0,0 +1,2 @@ +# Xen PV machine support +obj-$(CONFIG_XEN) += xen_domainbuild.o xen_machine_pv.o diff --git a/hw/i386/xen_domainbuild.c b/hw/xenpv/xen_domainbuild.c similarity index 100% rename from hw/i386/xen_domainbuild.c rename to hw/xenpv/xen_domainbuild.c diff --git a/hw/i386/xen_domainbuild.h b/hw/xenpv/xen_domainbuild.h similarity index 100% rename from hw/i386/xen_domainbuild.h rename to hw/xenpv/xen_domainbuild.h diff --git a/hw/i386/xen_machine_pv.c b/hw/xenpv/xen_machine_pv.c similarity index 100% rename from hw/i386/xen_machine_pv.c rename to hw/xenpv/xen_machine_pv.c -- 1.7.10.4