From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:52959) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RiG7s-0006Q6-06 for qemu-devel@nongnu.org; Tue, 03 Jan 2012 20:58:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RiG7q-0004K8-Qd for qemu-devel@nongnu.org; Tue, 03 Jan 2012 20:58:47 -0500 Received: from cantor2.suse.de ([195.135.220.15]:46335 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RiG7q-0004Js-HQ for qemu-devel@nongnu.org; Tue, 03 Jan 2012 20:58:46 -0500 From: Alexander Graf Date: Wed, 4 Jan 2012 03:13:08 +0100 Message-Id: <1325643192-15941-3-git-send-email-agraf@suse.de> In-Reply-To: <1325643192-15941-1-git-send-email-agraf@suse.de> References: <1325643192-15941-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 2/6] Compile device-hotplug on all targets List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org Developers" Cc: Blue Swirl , Aurelien Jarno 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 3261383..d70d911 100644 --- a/Makefile.target +++ b/Makefile.target @@ -220,12 +220,15 @@ ifeq ($(CONFIG_KVM), y) endif obj-$(CONFIG_IVSHMEM) += ivshmem.o +# Generic hotplugging +obj-y += device-hotplug.o + # Hardware support obj-i386-y += vga.o obj-i386-y += mc146818rtc.o pc.o obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o obj-i386-y += vmport.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 obj-i386-$(CONFIG_KVM) += kvmclock.o -- 1.6.0.2