summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHe Zhe <zhe.he@windriver.com>2020-02-21 12:02:20 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2020-02-24 16:56:40 +0800
commitf47d49eb141dc8547686b5dcfcca289fe6b7ac68 (patch)
tree04c7465470d6ab2037047c750f06ab8a0fafd227
parent24cd3e389bb6e4fe06296f918de2b72389fdeb0f (diff)
downloadmeta-dpdk-f47d49eb141dc8547686b5dcfcca289fe6b7ac68.tar.gz
Revert "dpdk: Add check against necessary kernel options"
This reverts commit c29b7a480ad3e5308a1ecffa8225eeec624f68bc. Unfortunely, the reverted commit does not work in every cases. If KERNEL_FEATURES was set in somewhere else other than a global configuration, for example in kernel's bbappend, there would be no way for dpdk recipe to detect if the wanted feature has been enabled. 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, 0 insertions, 5 deletions
diff --git a/recipes-extended/dpdk/dpdk.inc b/recipes-extended/dpdk/dpdk.inc
index c52f8fe..293a404 100644
--- a/recipes-extended/dpdk/dpdk.inc
+++ b/recipes-extended/dpdk/dpdk.inc
@@ -1,11 +1,6 @@
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
9STABLE = "" 4STABLE = ""
10BRANCH = "master" 5BRANCH = "master"
11S = "${WORKDIR}/git" 6S = "${WORKDIR}/git"