meson.build (579510e196a544b42bd8bca9cc61688d4d1211ac) | meson.build (3a977deebe6b9a10043182e922f6883924ef21f5) |
---|---|
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')) | 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_IGB_PCI_EXPRESS', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) 14softmmu_ss.add(when: 'CONFIG_IGB_PCI_EXPRESS', if_true: files('igb.c', 'igbvf.c', 'igb_core.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')) --- 53 unchanged lines hidden --- | 15softmmu_ss.add(when: 'CONFIG_RTL8139_PCI', if_true: files('rtl8139.c')) 16softmmu_ss.add(when: 'CONFIG_TULIP', if_true: files('tulip.c')) 17softmmu_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('net_tx_pkt.c', 'net_rx_pkt.c')) 18softmmu_ss.add(when: 'CONFIG_VMXNET3_PCI', if_true: files('vmxnet3.c')) 19 20softmmu_ss.add(when: 'CONFIG_SMC91C111', if_true: files('smc91c111.c')) 21softmmu_ss.add(when: 'CONFIG_LAN9118', if_true: files('lan9118.c')) 22softmmu_ss.add(when: 'CONFIG_NE2000_ISA', if_true: files('ne2000-isa.c')) --- 53 unchanged lines hidden --- |