5cc0ee66e4
The configuration value indicating that KNI was build was incorrect,
causing the driver to never be built.
Fixes: 3479586fe6
("net/kni: add to meson build")
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
9 lines
264 B
Meson
9 lines
264 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
# this driver can be built if-and-only-if KNI library is buildable
|
|
build = dpdk_conf.has('RTE_LIBRTE_KNI')
|
|
allow_experimental_apis = true
|
|
sources = files('rte_eth_kni.c')
|
|
deps += 'kni'
|