[yocto] [meta-dpdk][PATCH] dpdk: Skip build if necessary kernel options is not included

Mittal, Anuj anuj.mittal at intel.com
Mon Sep 16 20:54:31 PDT 2019


On Mon, 2019-09-16 at 15:56 +0800, zhe.he at windriver.com wrote:
> From: He Zhe <zhe.he at windriver.com>
> 
> dpdk depends on some kernel configuration options without which it is
> not able
> to successfully build.
> 
> Signed-off-by: He Zhe <zhe.he at windriver.com>
> ---
>  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 3b997eb..9c9b397 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):
> +        raise bb.parse.SkipPackage("dpdk requires features/intel-
> dpdk/intel-dpdk.scc in KERNEL_FEATURES to build")
> +}
> +

I think this won't work for people who don't use yocto-kernel-cache.

Thanks,

Anuj


More information about the yocto mailing list