diff options
author | Alexander Graf <agraf@suse.de> | 2010-08-23 23:40:28 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-01-04 02:48:14 +0100 |
commit | 963d83c85420b39eb4ab6ae1ebdcd7f818221402 (patch) | |
tree | 9fcd5cad99e0e6a6c67afbc8533a726033348f85 /Makefile.target | |
parent | 7fa41e536b05865baa9d79c6fd72785f6841576a (diff) |
Compile device-hotplug on all targets
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 <agraf@suse.de>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 3261383fd3..d70d911f34 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 |