1105e72d8ec60047e830275fd3f7f7d5eb153f6c
[dpdk.git] / drivers / net / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 drivers = ['af_packet',
5         'af_xdp',
6         'ark',
7         'atlantic',
8         'avp',
9         'axgbe', 'bonding',
10         'bnx2x',
11         'bnxt',
12         'cxgbe',
13         'dpaa', 'dpaa2',
14         'e1000',
15         'ena',
16         'enetc',
17         'enic',
18         'failsafe',
19         'fm10k', 'i40e',
20         'iavf',
21         'ice',
22         'ifc',
23         'ixgbe',
24         'kni',
25         'liquidio',
26         'mlx4',
27         'mlx5',
28         'mvneta',
29         'mvpp2',
30         'netvsc',
31         'nfp',
32         'null', 'octeontx', 'pcap', 'qede', 'ring',
33         'sfc',
34         'softnic',
35         'szedata2',
36         'tap',
37         'thunderx',
38         'vdev_netvsc',
39         'vhost',
40         'virtio',
41         'vmxnet3',
42 ]
43 std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
44 std_deps += ['bus_pci']         # very many PMDs depend on PCI, so make std
45 std_deps += ['bus_vdev']        # same with vdev bus
46 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
47 driver_name_fmt = 'rte_pmd_@0@'