1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2017 Intel Corporation 3 4drivers = ['af_packet', 'bonding', 'dpaa', 'dpaa2', 5 'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe', 6 'null', 'octeontx', 'pcap', 'ring', 7 'sfc', 'thunderx', 'virtio'] 8std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc 9std_deps += ['bus_pci'] # very many PMDs depend on PCI, so make std 10std_deps += ['bus_vdev'] # same with vdev bus 11config_flag_fmt = 'RTE_LIBRTE_@0@_PMD' 12driver_name_fmt = 'rte_pmd_@0@' 13