numam-dpdk/drivers/net/meson.build
Bruce Richardson 5936aa3a39 net/vhost: add to meson build
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
2018-06-14 19:27:50 +02:00

35 lines
682 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
drivers = ['af_packet',
'ark',
'avp',
'axgbe', 'bonding',
'bnx2x',
'bnxt',
'cxgbe',
'dpaa', 'dpaa2',
'e1000',
'ena',
'enic',
'failsafe',
'fm10k', 'i40e',
'ifc',
'ixgbe',
'kni',
'liquidio',
'mvpp2',
'nfp',
'null', 'octeontx', 'pcap', 'ring',
'sfc',
'softnic',
'szedata2',
'thunderx',
'vhost',
'virtio']
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
config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
driver_name_fmt = 'rte_pmd_@0@'