X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fmeson.build;h=4cbca96414fa55e6fdf0a58c0eec52a2582b423f;hb=df96fd0d73955bdc7ca3909e772ff2ad903249c6;hp=efc690dd8eafea5514cbd588b43f0f60d8ed1864;hpb=9285beee413f1e442b32ce7729764f52ca684426;p=dpdk.git diff --git a/drivers/net/meson.build b/drivers/net/meson.build index efc690dd8e..4cbca96414 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -1,16 +1,59 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation + drivers = ['af_packet', + 'af_xdp', 'ark', - 'axgbe', 'bonding', 'dpaa', 'dpaa2', - 'e1000', 'enic', 'fm10k', 'i40e', - 'ifc', + 'atlantic', + 'avp', + 'axgbe', 'bonding', + 'bnx2x', + 'bnxt', + 'cxgbe', + 'dpaa', 'dpaa2', + 'e1000', + 'ena', + 'enetc', + 'enic', + 'failsafe', + 'fm10k', 'i40e', + 'hinic', + 'hns3', + 'iavf', + 'ice', + 'igc', + 'ionic', + 'ipn3ke', 'ixgbe', - 'mvpp2', 'null', 'octeontx', 'pcap', 'ring', - 'sfc', 'thunderx', 'virtio'] + 'kni', + 'liquidio', + 'memif', + 'mlx4', + 'mlx5', + 'mvneta', + 'mvpp2', + 'netvsc', + 'nfb', + 'nfp', + 'null', + 'octeontx', + 'octeontx2', + 'pcap', + 'pfe', + 'qede', + 'ring', + 'sfc', + 'softnic', + 'szedata2', + 'tap', + 'thunderx', + 'txgbe', + 'vdev_netvsc', + 'vhost', + 'virtio', + 'vmxnet3', +] 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@'