diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-02-05 12:33:56 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-08 18:13:13 +0200 |
commit | d7e35d4a8495bfb3aa0dfd6319fcc499f43a175c (patch) | |
tree | e9464746aa6e52e37c5ca9ed63b26f2bbd3a58d8 /hw | |
parent | 0ddfaf7fe4c8453446730328bf348b7c6438e4f8 (diff) | |
download | hqemu-d7e35d4a8495bfb3aa0dfd6319fcc499f43a175c.zip hqemu-d7e35d4a8495bfb3aa0dfd6319fcc499f43a175c.tar.gz |
hw: move NICs to hw/net/, configure via default-configs/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/arm/Makefile.objs | 2 | ||||
-rw-r--r-- | hw/cris/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/lm32/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/m68k/Makefile.objs | 2 | ||||
-rw-r--r-- | hw/microblaze/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/net/Makefile.objs | 8 | ||||
-rw-r--r-- | hw/net/etraxfs_eth.c (renamed from hw/etraxfs_eth.c) | 0 | ||||
-rw-r--r-- | hw/net/lance.c (renamed from hw/lance.c) | 0 | ||||
-rw-r--r-- | hw/net/mcf_fec.c (renamed from hw/mcf_fec.c) | 0 | ||||
-rw-r--r-- | hw/net/milkymist-minimac2.c (renamed from hw/milkymist-minimac2.c) | 0 | ||||
-rw-r--r-- | hw/net/spapr_llan.c (renamed from hw/spapr_llan.c) | 0 | ||||
-rw-r--r-- | hw/net/stellaris_enet.c (renamed from hw/stellaris_enet.c) | 0 | ||||
-rw-r--r-- | hw/net/xilinx_ethlite.c (renamed from hw/xilinx_ethlite.c) | 0 | ||||
-rw-r--r-- | hw/ppc/Makefile.objs | 5 | ||||
-rw-r--r-- | hw/sparc/Makefile.objs | 2 |
15 files changed, 12 insertions, 10 deletions
diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index d809ad8..b14beb8 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -8,7 +8,7 @@ obj-y += exynos4210_uart.o exynos4210_pwm.o obj-y += exynos4210_pmu.o exynos4210_mct.o exynos4210_fimd.o obj-y += exynos4210_rtc.o exynos4210_i2c.o obj-y += arm_mptimer.o a15mpcore.o -obj-y += armv7m_nvic.o stellaris_enet.o +obj-y += armv7m_nvic.o obj-y += pxa2xx_timer.o pxa2xx_dma.o obj-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o obj-y += zaurus.o tc6393xb.o diff --git a/hw/cris/Makefile.objs b/hw/cris/Makefile.objs index a94c624..e02365d 100644 --- a/hw/cris/Makefile.objs +++ b/hw/cris/Makefile.objs @@ -1,7 +1,6 @@ # IO blocks obj-y += etraxfs_dma.o obj-y += etraxfs_pic.o -obj-y += etraxfs_eth.o obj-y += etraxfs_timer.o obj-y += etraxfs_ser.o diff --git a/hw/lm32/Makefile.objs b/hw/lm32/Makefile.objs index 68ca90a..d72756c 100644 --- a/hw/lm32/Makefile.objs +++ b/hw/lm32/Makefile.objs @@ -7,7 +7,6 @@ obj-y += lm32_sys.o obj-y += milkymist-ac97.o obj-y += milkymist-hpdmc.o obj-y += milkymist-memcard.o -obj-y += milkymist-minimac2.o obj-y += milkymist-pfpu.o obj-y += milkymist-softusb.o obj-y += milkymist-sysctl.o diff --git a/hw/m68k/Makefile.objs b/hw/m68k/Makefile.objs index ede32a7..ebbe003 100644 --- a/hw/m68k/Makefile.objs +++ b/hw/m68k/Makefile.objs @@ -1,4 +1,4 @@ -obj-y = mcf_uart.o mcf_fec.o +obj-y = mcf_uart.o obj-y := $(addprefix ../,$(obj-y)) diff --git a/hw/microblaze/Makefile.objs b/hw/microblaze/Makefile.objs index 9e7f249..75f5ce6 100644 --- a/hw/microblaze/Makefile.objs +++ b/hw/microblaze/Makefile.objs @@ -1,5 +1,4 @@ obj-y += xilinx_spi.o -obj-y += xilinx_ethlite.o obj-y := $(addprefix ../,$(obj-y)) diff --git a/hw/net/Makefile.objs b/hw/net/Makefile.objs index 73217d8..951cca3 100644 --- a/hw/net/Makefile.objs +++ b/hw/net/Makefile.objs @@ -20,6 +20,14 @@ common-obj-$(CONFIG_MIPSNET) += mipsnet.o common-obj-$(CONFIG_XILINX_AXI) += xilinx_axienet.o common-obj-$(CONFIG_CADENCE) += cadence_gem.o +common-obj-$(CONFIG_STELLARIS_ENET) += stellaris_enet.o +common-obj-$(CONFIG_LANCE) += lance.o + +obj-$(CONFIG_ETRAXFS) += etraxfs_eth.o +obj-$(CONFIG_COLDFIRE) += mcf_fec.o +obj-$(CONFIG_MILKYMIST) += milkymist-minimac2.o +obj-$(CONFIG_PSERIES) += spapr_llan.o +obj-$(CONFIG_XILINX_ETHLITE) += xilinx_ethlite.o obj-$(CONFIG_VIRTIO) += virtio-net.o obj-y += vhost_net.o diff --git a/hw/etraxfs_eth.c b/hw/net/etraxfs_eth.c index 1039913..1039913 100644 --- a/hw/etraxfs_eth.c +++ b/hw/net/etraxfs_eth.c diff --git a/hw/lance.c b/hw/net/lance.c index 0f4e808..0f4e808 100644 --- a/hw/lance.c +++ b/hw/net/lance.c diff --git a/hw/mcf_fec.c b/hw/net/mcf_fec.c index 9b68052..9b68052 100644 --- a/hw/mcf_fec.c +++ b/hw/net/mcf_fec.c diff --git a/hw/milkymist-minimac2.c b/hw/net/milkymist-minimac2.c index 29618e8..29618e8 100644 --- a/hw/milkymist-minimac2.c +++ b/hw/net/milkymist-minimac2.c diff --git a/hw/spapr_llan.c b/hw/net/spapr_llan.c index 34332f2..34332f2 100644 --- a/hw/spapr_llan.c +++ b/hw/net/spapr_llan.c diff --git a/hw/stellaris_enet.c b/hw/net/stellaris_enet.c index 59b8456..59b8456 100644 --- a/hw/stellaris_enet.c +++ b/hw/net/stellaris_enet.c diff --git a/hw/xilinx_ethlite.c b/hw/net/xilinx_ethlite.c index b2e3523..b2e3523 100644 --- a/hw/xilinx_ethlite.c +++ b/hw/net/xilinx_ethlite.c diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs index b22a6f1..42c7d08 100644 --- a/hw/ppc/Makefile.objs +++ b/hw/ppc/Makefile.objs @@ -1,5 +1,5 @@ # IBM pSeries (sPAPR) -obj-$(CONFIG_PSERIES) += spapr_vty.o spapr_llan.o spapr_vscsi.o +obj-$(CONFIG_PSERIES) += spapr_vty.o spapr_vscsi.o obj-$(CONFIG_PSERIES) += spapr_pci.o obj-$(CONFIG_PSERIES) += spapr_nvram.o # PowerPC 4xx boards @@ -7,9 +7,6 @@ obj-y += ppc4xx_pci.o # PowerPC OpenPIC obj-y += openpic.o -# Xilinx PPC peripherals -obj-y += xilinx_ethlite.o - obj-y := $(addprefix ../,$(obj-y)) # shared objects diff --git a/hw/sparc/Makefile.objs b/hw/sparc/Makefile.objs index 71bbddf..56eeb90 100644 --- a/hw/sparc/Makefile.objs +++ b/hw/sparc/Makefile.objs @@ -1,4 +1,4 @@ -obj-y = lance.o tcx.o sun4m_iommu.o slavio_intctl.o +obj-y = tcx.o sun4m_iommu.o slavio_intctl.o obj-y += slavio_timer.o slavio_misc.o sparc32_dma.o obj-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o |