1softmmu_ss.add(when: 'CONFIG_DP8393X', if_true: files('dp8393x.c')) 2softmmu_ss.add(when: 'CONFIG_XEN', if_true: files('xen_nic.c')) 3softmmu_ss.add(when: 'CONFIG_NE2000_COMMON', if_true: files('ne2000.c')) 4 5# PCI network cards 6softmmu_ss.add(when: 'CONFIG_NE2000_PCI', if_true: files('ne2000-pci.c')) 7softmmu_ss.add(when: 'CONFIG_EEPRO100_PCI', if_true: files('eepro100.c')) 8softmmu_ss.add(when: 'CONFIG_PCNET_PCI', if_true: files('pcnet-pci.c')) 9softmmu_ss.add(when: 'CONFIG_PCNET_COMMON', if_true: files('pcnet.c')) 10softmmu_ss.add(when: 'CONFIG_E1000_PCI', if_true: files('e1000.c', 'e1000x_common.c')) 11softmmu_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) 12softmmu_ss.add(when: 'CONFIG_E1000E_PCI_EXPRESS', if_true: files('e1000e.c', 'e1000e_core.c', 'e1000x_common.c')) 13softmmu_ss.add(when: 'CONFIG_RTL8139_PCI', if_true: files('rtl8139.c')) 14softmmu_ss.add(when: 'CONFIG_TULIP', if_true: files('tulip.c')) 15softmmu_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) 16softmmu_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('vmxnet3.c')) 17 18softmmu_ss.add(when: 'CONFIG_SMC91C111', if_true: files('smc91c111.c')) 19softmmu_ss.add(when: 'CONFIG_LAN9118', if_true: files('lan9118.c')) 20softmmu_ss.add(when: 'CONFIG_NE2000_ISA', if_true: files('ne2000-isa.c')) 21softmmu_ss.add(when: 'CONFIG_OPENCORES_ETH', if_true: files('opencores_eth.c')) 22softmmu_ss.add(when: 'CONFIG_XGMAC', if_true: files('xgmac.c')) 23softmmu_ss.add(when: 'CONFIG_MIPSNET', if_true: files('mipsnet.c')) 24softmmu_ss.add(when: 'CONFIG_XILINX_AXI', if_true: files('xilinx_axienet.c')) 25softmmu_ss.add(when: 'CONFIG_ALLWINNER_EMAC', if_true: files('allwinner_emac.c')) 26softmmu_ss.add(when: 'CONFIG_ALLWINNER_SUN8I_EMAC', if_true: files('allwinner-sun8i-emac.c')) 27softmmu_ss.add(when: 'CONFIG_IMX_FEC', if_true: files('imx_fec.c')) 28softmmu_ss.add(when: 'CONFIG_MSF2', if_true: files('msf2-emac.c')) 29softmmu_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('mv88w8618_eth.c')) 30 31softmmu_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_gem.c')) 32softmmu_ss.add(when: 'CONFIG_STELLARIS_ENET', if_true: files('stellaris_enet.c')) 33softmmu_ss.add(when: 'CONFIG_LANCE', if_true: files('lance.c')) 34softmmu_ss.add(when: 'CONFIG_LASI_I82596', if_true: files('lasi_i82596.c')) 35softmmu_ss.add(when: 'CONFIG_I82596_COMMON', if_true: files('i82596.c')) 36softmmu_ss.add(when: 'CONFIG_SUNHME', if_true: files('sunhme.c')) 37softmmu_ss.add(when: 'CONFIG_FTGMAC100', if_true: files('ftgmac100.c')) 38softmmu_ss.add(when: 'CONFIG_SUNGEM', if_true: files('sungem.c')) 39softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_emc.c')) 40 41softmmu_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_eth.c')) 42softmmu_ss.add(when: 'CONFIG_COLDFIRE', if_true: files('mcf_fec.c')) 43specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_llan.c')) 44specific_ss.add(when: 'CONFIG_XILINX_ETHLITE', if_true: files('xilinx_ethlite.c')) 45 46softmmu_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('net_rx_pkt.c')) 47specific_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('virtio-net.c')) 48 49softmmu_ss.add(when: ['CONFIG_VIRTIO_NET', 'CONFIG_VHOST_NET'], if_true: files('vhost_net.c'), if_false: files('vhost_net-stub.c')) 50softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost_net-stub.c')) 51 52softmmu_ss.add(when: 'CONFIG_ETSEC', if_true: files( 53 'fsl_etsec/etsec.c', 54 'fsl_etsec/miim.c', 55 'fsl_etsec/registers.c', 56 'fsl_etsec/rings.c', 57)) 58 59softmmu_ss.add(when: 'CONFIG_ROCKER', if_true: files( 60 'rocker/rocker.c', 61 'rocker/rocker_desc.c', 62 'rocker/rocker_fp.c', 63 'rocker/rocker_of_dpa.c', 64 'rocker/rocker_world.c', 65), if_false: files('rocker/qmp-norocker.c')) 66softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('rocker/qmp-norocker.c')) 67 68subdir('can') 69