4e9c73e96e
The driver supports Hyper-V networking directly like virtio for KVM or vmxnet3 for VMware. This code is based off of the FreeBSD driver. The file and variable names are kept the same to help with understanding (with most of the BSD style warts removed). This version supports the latest NetVSP 6.1 version and older versions. Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
36 lines
693 B
Meson
36 lines
693 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',
|
|
'netvsc',
|
|
'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@'
|