summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHe Zhe <zhe.he@windriver.com>2020-02-17 17:57:38 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2020-02-18 13:53:47 +0800
commitc29b7a480ad3e5308a1ecffa8225eeec624f68bc (patch)
treed9cc07e057884f0f8b70199e13b4932c602b8d53
parentf2cd2cd5cc7a076f94357ad3b9904909e2e4d536 (diff)
downloadmeta-dpdk-c29b7a480ad3e5308a1ecffa8225eeec624f68bc.tar.gz
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 <zhe.he@windriver.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--recipes-extended/dpdk/dpdk.inc5
1 files changed, 5 insertions, 0 deletions
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 @@
1DESCRIPTION = "Intel(r) Data Plane Development Kit" 1DESCRIPTION = "Intel(r) Data Plane Development Kit"
2HOMEPAGE = "http://dpdk.org" 2HOMEPAGE = "http://dpdk.org"
3 3
4python () {
5 if not bb.utils.contains('KERNEL_FEATURES', 'features/intel-dpdk/intel-dpdk.scc', True, False, d):
6 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.")
7}
8
4STABLE = "" 9STABLE = ""
5BRANCH = "master" 10BRANCH = "master"
6S = "${WORKDIR}/git" 11S = "${WORKDIR}/git"