meson.build (08f787a34cbeca333bd9a79a5d6723c750abd56e) meson.build (960036440942f32644f6070d9a0fffcef7196aca)
1system_ss.add(when: 'CONFIG_DP8393X', if_true: files('dp8393x.c'))
2system_ss.add(when: 'CONFIG_XEN_BUS', if_true: files('xen_nic.c'))
3system_ss.add(when: 'CONFIG_NE2000_COMMON', if_true: files('ne2000.c'))
4
5# PCI network cards
6system_ss.add(when: 'CONFIG_NE2000_PCI', if_true: files('ne2000-pci.c'))
7system_ss.add(when: 'CONFIG_EEPRO100_PCI', if_true: files('eepro100.c'))
8system_ss.add(when: 'CONFIG_PCNET_PCI', if_true: files('pcnet-pci.c'))

--- 19 unchanged lines hidden (view full) ---

28system_ss.add(when: 'CONFIG_ALLWINNER_SUN8I_EMAC', if_true: files('allwinner-sun8i-emac.c'))
29system_ss.add(when: 'CONFIG_IMX_FEC', if_true: files('imx_fec.c'))
30system_ss.add(when: 'CONFIG_MSF2', if_true: files('msf2-emac.c'))
31system_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('mv88w8618_eth.c'))
32
33system_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_gem.c'))
34system_ss.add(when: 'CONFIG_STELLARIS_ENET', if_true: files('stellaris_enet.c'))
35system_ss.add(when: 'CONFIG_LANCE', if_true: files('lance.c'))
1system_ss.add(when: 'CONFIG_DP8393X', if_true: files('dp8393x.c'))
2system_ss.add(when: 'CONFIG_XEN_BUS', if_true: files('xen_nic.c'))
3system_ss.add(when: 'CONFIG_NE2000_COMMON', if_true: files('ne2000.c'))
4
5# PCI network cards
6system_ss.add(when: 'CONFIG_NE2000_PCI', if_true: files('ne2000-pci.c'))
7system_ss.add(when: 'CONFIG_EEPRO100_PCI', if_true: files('eepro100.c'))
8system_ss.add(when: 'CONFIG_PCNET_PCI', if_true: files('pcnet-pci.c'))

--- 19 unchanged lines hidden (view full) ---

28system_ss.add(when: 'CONFIG_ALLWINNER_SUN8I_EMAC', if_true: files('allwinner-sun8i-emac.c'))
29system_ss.add(when: 'CONFIG_IMX_FEC', if_true: files('imx_fec.c'))
30system_ss.add(when: 'CONFIG_MSF2', if_true: files('msf2-emac.c'))
31system_ss.add(when: 'CONFIG_MARVELL_88W8618', if_true: files('mv88w8618_eth.c'))
32
33system_ss.add(when: 'CONFIG_CADENCE', if_true: files('cadence_gem.c'))
34system_ss.add(when: 'CONFIG_STELLARIS_ENET', if_true: files('stellaris_enet.c'))
35system_ss.add(when: 'CONFIG_LANCE', if_true: files('lance.c'))
36system_ss.add(when: 'CONFIG_LASI_I82596', if_true: files('lasi_i82596.c'))
36system_ss.add(when: 'CONFIG_LASI_82596', if_true: files('lasi_i82596.c'))
37system_ss.add(when: 'CONFIG_I82596_COMMON', if_true: files('i82596.c'))
38system_ss.add(when: 'CONFIG_SUNHME', if_true: files('sunhme.c'))
39system_ss.add(when: 'CONFIG_FTGMAC100', if_true: files('ftgmac100.c'))
40system_ss.add(when: 'CONFIG_SUNGEM', if_true: files('sungem.c'))
37system_ss.add(when: 'CONFIG_I82596_COMMON', if_true: files('i82596.c'))
38system_ss.add(when: 'CONFIG_SUNHME', if_true: files('sunhme.c'))
39system_ss.add(when: 'CONFIG_FTGMAC100', if_true: files('ftgmac100.c'))
40system_ss.add(when: 'CONFIG_SUNGEM', if_true: files('sungem.c'))
41system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_emc.c', 'npcm_gmac.c'))
41system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files('npcm7xx_emc.c'))
42
43system_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_eth.c'))
44system_ss.add(when: 'CONFIG_COLDFIRE', if_true: files('mcf_fec.c'))
45specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_llan.c'))
46system_ss.add(when: 'CONFIG_XILINX_ETHLITE', if_true: files('xilinx_ethlite.c'))
47
48system_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('net_rx_pkt.c'))
49specific_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('virtio-net.c'))

--- 24 unchanged lines hidden ---
42
43system_ss.add(when: 'CONFIG_ETRAXFS', if_true: files('etraxfs_eth.c'))
44system_ss.add(when: 'CONFIG_COLDFIRE', if_true: files('mcf_fec.c'))
45specific_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr_llan.c'))
46system_ss.add(when: 'CONFIG_XILINX_ETHLITE', if_true: files('xilinx_ethlite.c'))
47
48system_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('net_rx_pkt.c'))
49specific_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('virtio-net.c'))

--- 24 unchanged lines hidden ---