From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=37725 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Onf6D-00029D-66 for qemu-devel@nongnu.org; Mon, 23 Aug 2010 18:02:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Onf6A-0000bc-NN for qemu-devel@nongnu.org; Mon, 23 Aug 2010 18:02:36 -0400 Received: from cantor.suse.de ([195.135.220.2]:56238 helo=mx1.suse.de) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Onf6A-0000bC-CF for qemu-devel@nongnu.org; Mon, 23 Aug 2010 18:02:34 -0400 From: Alexander Graf Date: Tue, 24 Aug 2010 00:02:29 +0200 Message-Id: <1282600951-30803-4-git-send-email-agraf@suse.de> In-Reply-To: <1282600951-30803-1-git-send-email-agraf@suse.de> References: <1282600951-30803-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 3/5] Compile device-hotplug on all targets List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel List Cc: Gerd Hoffmann , Markus Armbruster , Aurelien Jarno , Luiz Capitulino All guest targets could potentially implement hotplugging. With the next patches in this set I will also reflect this in the monitor interface. So let's always compile it in. It shouldn't hurt. Signed-off-by: Alexander Graf --- Makefile.target | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index c8281e9..8d9ff57 100644 --- a/Makefile.target +++ b/Makefile.target @@ -193,12 +193,15 @@ obj-y += e1000.o # Inter-VM PCI shared memory obj-$(CONFIG_KVM) += ivshmem.o +# Generic hotplugging +obj-y += device-hotplug.o + # Hardware support obj-i386-y += vga.o obj-i386-y += mc146818rtc.o i8259.o pc.o obj-i386-y += cirrus_vga.o apic.o ioapic.o piix_pci.o obj-i386-y += vmmouse.o vmport.o hpet.o applesmc.o -obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o +obj-i386-y += pci-hotplug.o smbios.o wdt_ib700.o obj-i386-y += debugcon.o multiboot.o obj-i386-y += pc_piix.o -- 1.6.0.2