X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fmeson.build;h=fb9ff05a1f18c755e23fc903f12aa6798c2827b9;hb=d566bfcff0c7bfe167f6c520d4fd5b0104130af6;hp=7ecf2783c1466614616578a44b6782274e716702;hpb=50385c106021fad4191d8e9a599baf5a42961b7a;p=dpdk.git diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 7ecf2783c1..fb9ff05a1f 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -1,14 +1,60 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -drivers = ['af_packet', 'axgbe', 'bonding', 'dpaa', 'dpaa2', - 'e1000', 'enic', 'fm10k', 'i40e', - 'ifc', + +drivers = ['af_packet', + 'af_xdp', + 'ark', + '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', + 'octeontx_ep', + '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@'