numam-dpdk/drivers/net/meson.build
Bruce Richardson cf995efc53 drivers: clean up build lists
Ensure all lists of drivers are standardized:
* one driver per line
* lists double-indented with spaces (as they are line continuations)
* elements in alphabetical order
* opening and closing list brackets "[" & "]" on own lines
* last element has trailing comma

Any code snippets in the list files is adjusted to single-indent using
whitespace to correspond to the new style also.

The lists of standard library dependencies per class, and other short
lists are not formatted one-per-line as these lists are not expected to
grow beyond 2 or 3 entries.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2021-04-21 12:37:55 +02:00

65 lines
1.2 KiB
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
drivers = [
'af_packet',
'af_xdp',
'ark',
'atlantic',
'avp',
'axgbe',
'bnx2x',
'bnxt',
'bonding',
'cxgbe',
'dpaa',
'dpaa2',
'e1000',
'ena',
'enetc',
'enic',
'failsafe',
'fm10k',
'hinic',
'hns3',
'i40e',
'iavf',
'ice',
'igc',
'ionic',
'ipn3ke',
'ixgbe',
'kni',
'liquidio',
'memif',
'mlx4',
'mlx5',
'mvneta',
'mvpp2',
'netvsc',
'nfb',
'nfp',
'null',
'octeontx',
'octeontx2',
'octeontx_ep',
'pcap',
'pfe',
'qede',
'ring',
'sfc',
'softnic',
'szedata2',
'tap',
'thunderx',
'txgbe',
'vdev_netvsc',
'vhost',
'virtio',
'vmxnet3',
]
std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
std_deps += ['bus_pci'] # very many PMDs depend on PCI, so make std
std_deps += ['bus_vdev'] # same with vdev bus