diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-02-05 14:46:43 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-08 18:13:12 +0200 |
commit | ddf2bcfc63e7c73cc37f870599ee61f9204bde66 (patch) | |
tree | b2ec4be008a49b50d0fad46ecc7d42111777e504 /hw | |
parent | aaa4d1df2e18e7b3aa996836a6256eab13d4267a (diff) | |
download | qemu-ddf2bcfc63e7c73cc37f870599ee61f9204bde66.tar.gz qemu-ddf2bcfc63e7c73cc37f870599ee61f9204bde66.tar.bz2 qemu-ddf2bcfc63e7c73cc37f870599ee61f9204bde66.zip |
hw: make all of hw/pci/ configurable via default-configs/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/Makefile.objs | 2 | ||||
-rw-r--r-- | hw/pci/Makefile.objs | 2 | ||||
-rw-r--r-- | hw/ppc/Makefile.objs | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/hw/i386/Makefile.objs b/hw/i386/Makefile.objs index a78c0b2921..c813b1ef78 100644 --- a/hw/i386/Makefile.objs +++ b/hw/i386/Makefile.objs @@ -2,7 +2,7 @@ obj-y += mc146818rtc.o obj-y += apic_common.o apic.o obj-y += sga.o ioapic_common.o ioapic.o piix_pci.o obj-y += vmport.o -obj-y += pci/pci-hotplug.o wdt_ib700.o +obj-y += wdt_ib700.o obj-y += debugcon.o debugexit.o obj-y += pc_sysfw.o obj-y += lpc_ich9.o q35.o diff --git a/hw/pci/Makefile.objs b/hw/pci/Makefile.objs index aac5f65e9d..a1511abf00 100644 --- a/hw/pci/Makefile.objs +++ b/hw/pci/Makefile.objs @@ -9,3 +9,5 @@ common-obj-$(CONFIG_NO_PCI) += pci-stub.o common-obj-$(CONFIG_ALL) += pci-stub.o common-obj-$(CONFIG_PCI) += bridge/ host/ + +obj-$(CONFIG_PCI_HOTPLUG) += pci-hotplug.o diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs index 4de02098e2..ef1d9edc1a 100644 --- a/hw/ppc/Makefile.objs +++ b/hw/ppc/Makefile.objs @@ -2,7 +2,7 @@ obj-y += mc146818rtc.o # IBM pSeries (sPAPR) obj-$(CONFIG_PSERIES) += spapr_vty.o spapr_llan.o spapr_vscsi.o -obj-$(CONFIG_PSERIES) += spapr_pci.o pci/pci-hotplug.o +obj-$(CONFIG_PSERIES) += spapr_pci.o obj-$(CONFIG_PSERIES) += spapr_nvram.o # PowerPC 4xx boards obj-y += ppc4xx_pci.o |