6f54e56d65
Add support for building MRVL MVPP2 PMD with meson. To avoid cluttering the build environment and to keep all relevant settings local to a cross build we get MUSDK library installation path from a meson option. Signed-off-by: Tomasz Duszynski <tdu@semihalf.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
13 lines
536 B
Meson
13 lines
536 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
drivers = ['af_packet', 'axgbe', 'bonding', 'dpaa', 'dpaa2',
|
|
'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe',
|
|
'mvpp2', 'null', 'octeontx', 'pcap', 'ring',
|
|
'sfc', 'thunderx', '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@'
|