From: Blue Swirl Date: Sat, 3 Jul 2010 06:49:47 +0000 (+0000) Subject: piix4: compile only once X-Git-Tag: v0.13.0-rc0~114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08af49da7e3c3ed72cdffe3d43a6618165406f34;p=thirdparty%2Fqemu.git piix4: compile only once Compile piix4 in hwlib. Two compilations less for the full build. Signed-off-by: Blue Swirl --- diff --git a/Makefile.objs b/Makefile.objs index 67a0c2395e8..55417c99414 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -180,6 +180,9 @@ hw-obj-$(CONFIG_DEC_PCI) += dec_pci.o # PowerPC E500 boards hw-obj-$(CONFIG_PPCE500_PCI) += ppce500_pci.o +# MIPS devices +hw-obj-$(CONFIG_PIIX4) += piix4.o + # PCI watchdog devices hw-obj-y += wdt_i6300esb.o diff --git a/Makefile.target b/Makefile.target index d58b2014c32..7489910f1b4 100644 --- a/Makefile.target +++ b/Makefile.target @@ -220,7 +220,7 @@ obj-mips-y += mips_addr.o mips_timer.o mips_int.o obj-mips-y += vga.o i8259.o obj-mips-y += g364fb.o jazz_led.o obj-mips-y += gt64xxx.o mc146818rtc.o -obj-mips-y += piix4.o cirrus_vga.o +obj-mips-y += cirrus_vga.o obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o obj-microblaze-y = petalogix_s3adsp1800_mmu.o diff --git a/default-configs/mips-softmmu.mak b/default-configs/mips-softmmu.mak index 29be52eb1d6..3d0af831657 100644 --- a/default-configs/mips-softmmu.mak +++ b/default-configs/mips-softmmu.mak @@ -16,6 +16,7 @@ CONFIG_FDC=y CONFIG_ACPI=y CONFIG_APM=y CONFIG_DMA=y +CONFIG_PIIX4=y CONFIG_IDE_CORE=y CONFIG_IDE_QDEV=y CONFIG_IDE_PCI=y diff --git a/default-configs/mips64-softmmu.mak b/default-configs/mips64-softmmu.mak index 9bae8a7bc2f..0030de45dc5 100644 --- a/default-configs/mips64-softmmu.mak +++ b/default-configs/mips64-softmmu.mak @@ -16,6 +16,7 @@ CONFIG_FDC=y CONFIG_ACPI=y CONFIG_APM=y CONFIG_DMA=y +CONFIG_PIIX4=y CONFIG_IDE_CORE=y CONFIG_IDE_QDEV=y CONFIG_IDE_PCI=y diff --git a/default-configs/mips64el-softmmu.mak b/default-configs/mips64el-softmmu.mak index 85b78383eb3..fa2a3ffa450 100644 --- a/default-configs/mips64el-softmmu.mak +++ b/default-configs/mips64el-softmmu.mak @@ -16,6 +16,7 @@ CONFIG_FDC=y CONFIG_ACPI=y CONFIG_APM=y CONFIG_DMA=y +CONFIG_PIIX4=y CONFIG_IDE_CORE=y CONFIG_IDE_QDEV=y CONFIG_IDE_PCI=y diff --git a/default-configs/mipsel-softmmu.mak b/default-configs/mipsel-softmmu.mak index 10ef4837994..238b73ace1c 100644 --- a/default-configs/mipsel-softmmu.mak +++ b/default-configs/mipsel-softmmu.mak @@ -16,6 +16,7 @@ CONFIG_FDC=y CONFIG_ACPI=y CONFIG_APM=y CONFIG_DMA=y +CONFIG_PIIX4=y CONFIG_IDE_CORE=y CONFIG_IDE_QDEV=y CONFIG_IDE_PCI=y