From: Ulrich Ölmann Date: Tue, 14 Feb 2023 10:26:46 +0000 (+0100) Subject: kernel-yocto: fix kernel-meta data detection X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~1672 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c77754f23e3fb49a62602a6c6a04d5525d1cf457;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git kernel-yocto: fix kernel-meta data detection Fixes: 7ef7af5c03ba ("kernel-yocto: restore kernel-meta data detection for SRC_URI elements") Signed-off-by: Ulrich Ölmann Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/kernel-yocto.bbclass b/meta/classes-recipe/kernel-yocto.bbclass index 1a6695ba7e3..7de99cff564 100644 --- a/meta/classes-recipe/kernel-yocto.bbclass +++ b/meta/classes-recipe/kernel-yocto.bbclass @@ -212,7 +212,7 @@ do_kernel_metadata() { # SRC_URI. If they were supplied, we convert them into include directives # for the update part of the process for f in ${feat_dirs}; do - if [ -d "${WORKDIR}/$f/meta" ]; then + if [ -d "${WORKDIR}/$f/kernel-meta" ]; then includes="$includes -I${WORKDIR}/$f/kernel-meta" elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then includes="$includes -I${WORKDIR}/../oe-local-files/$f"