From c29b7a480ad3e5308a1ecffa8225eeec624f68bc Mon Sep 17 00:00:00 2001 From: He Zhe Date: Mon, 17 Feb 2020 17:57:38 +0800 Subject: dpdk: Add check against necessary kernel options dpdk requires kernel option features/intel-dpdk/intel-dpdk.scc to build. We'd better warn users in advance before they meet some confusing errors at compile-time. Signed-off-by: He Zhe Signed-off-by: Anuj Mittal --- recipes-extended/dpdk/dpdk.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/recipes-extended/dpdk/dpdk.inc b/recipes-extended/dpdk/dpdk.inc index e70d9a6..1ec3a98 100644 --- a/recipes-extended/dpdk/dpdk.inc +++ b/recipes-extended/dpdk/dpdk.inc @@ -1,6 +1,11 @@ DESCRIPTION = "Intel(r) Data Plane Development Kit" HOMEPAGE = "http://dpdk.org" +python () { + if not bb.utils.contains('KERNEL_FEATURES', 'features/intel-dpdk/intel-dpdk.scc', True, False, d): + bb.warn("dpdk requires kernel options in features/intel-dpdk/intel-dpdk.scc to be able to build and work properly. You can either enable them by adding features/intel-dpdk/intel-dpdk.scc to KERNEL_FEATURES or by standard kernel configuration process.") +} + STABLE = "" BRANCH = "master" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf