1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2017 Intel Corporation 3 4if is_windows 5 subdir_done() 6endif 7 8drivers = ['af_packet', 9 'af_xdp', 10 'ark', 11 'atlantic', 12 'avp', 13 'axgbe', 'bonding', 14 'bnx2x', 15 'bnxt', 16 'cxgbe', 17 'dpaa', 'dpaa2', 18 'e1000', 19 'ena', 20 'enetc', 21 'enic', 22 'failsafe', 23 'fm10k', 'i40e', 24 'hinic', 25 'hns3', 26 'iavf', 27 'ice', 28 'igc', 29 'ipn3ke', 30 'ixgbe', 31 'kni', 32 'liquidio', 33 'memif', 34 'mlx4', 35 'mlx5', 36 'mvneta', 37 'mvpp2', 38 'netvsc', 39 'nfb', 40 'nfp', 41 'null', 42 'octeontx', 43 'octeontx2', 44 'pcap', 45 'pfe', 46 'qede', 47 'ring', 48 'sfc', 49 'softnic', 50 'szedata2', 51 'tap', 52 'thunderx', 53 'txgbe', 54 'vdev_netvsc', 55 'vhost', 56 'virtio', 57 'vmxnet3', 58] 59std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc 60std_deps += ['bus_pci'] # very many PMDs depend on PCI, so make std 61std_deps += ['bus_vdev'] # same with vdev bus 62config_flag_fmt = 'RTE_LIBRTE_@0@_PMD' 63