mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
Only compile esp when one target uses it
Patchworks-ID: 35206 Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
065c7a36df
commit
9f376df1b2
@ -30,7 +30,8 @@ obj-y += msix.o
|
||||
obj-y += ne2000.o
|
||||
|
||||
# SCSI layer
|
||||
obj-y += lsi53c895a.o esp.o
|
||||
obj-y += lsi53c895a.o
|
||||
obj-$(CONFIG_ESP) += esp.o
|
||||
|
||||
obj-y += dma-helpers.o sysbus.o isa-bus.o
|
||||
obj-$(CONFIG_QDEV_ADDR) += qdev-addr.o
|
||||
|
@ -1,3 +1,4 @@
|
||||
# Default configuration for mips-softmmu
|
||||
|
||||
CONFIG_ISA_MMIO=y
|
||||
CONFIG_ESP=y
|
||||
|
@ -1,3 +1,4 @@
|
||||
# Default configuration for mips64-softmmu
|
||||
|
||||
CONFIG_ISA_MMIO=y
|
||||
CONFIG_ESP=y
|
||||
|
@ -1,3 +1,4 @@
|
||||
# Default configuration for mips64el-softmmu
|
||||
|
||||
CONFIG_ISA_MMIO=y
|
||||
CONFIG_ESP=y
|
||||
|
@ -1,3 +1,4 @@
|
||||
# Default configuration for mipsel-softmmu
|
||||
|
||||
CONFIG_ISA_MMIO=y
|
||||
CONFIG_ESP=y
|
||||
|
@ -2,3 +2,4 @@
|
||||
|
||||
CONFIG_QDEV_ADDR=y
|
||||
CONFIG_ECC=y
|
||||
CONFIG_ESP=y
|
||||
|
Loading…
Reference in New Issue
Block a user