summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/kernel-yocto.bbclass
diff options
context:
space:
mode:
authorUlrich Ölmann <u.oelmann@pengutronix.de>2023-02-14 11:26:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-19 07:47:53 +0000
commitaa7c92e2b083bb789de53da30f2bcba589642c98 (patch)
tree272ef27ab3e829b97561a82be75a39f06065bb55 /meta/classes-recipe/kernel-yocto.bbclass
parent7017752717384bf6caedf08426156bcfb0782426 (diff)
downloadpoky-aa7c92e2b083bb789de53da30f2bcba589642c98.tar.gz
kernel-yocto: fix kernel-meta data detection
Fixes: 7ef7af5c03ba ("kernel-yocto: restore kernel-meta data detection for SRC_URI elements") (From OE-Core rev: c77754f23e3fb49a62602a6c6a04d5525d1cf457) Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/kernel-yocto.bbclass')
-rw-r--r--meta/classes-recipe/kernel-yocto.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/kernel-yocto.bbclass b/meta/classes-recipe/kernel-yocto.bbclass
index 1a6695ba7e..7de99cff56 100644
--- a/meta/classes-recipe/kernel-yocto.bbclass
+++ b/meta/classes-recipe/kernel-yocto.bbclass
@@ -212,7 +212,7 @@ do_kernel_metadata() {
212 # SRC_URI. If they were supplied, we convert them into include directives 212 # SRC_URI. If they were supplied, we convert them into include directives
213 # for the update part of the process 213 # for the update part of the process
214 for f in ${feat_dirs}; do 214 for f in ${feat_dirs}; do
215 if [ -d "${WORKDIR}/$f/meta" ]; then 215 if [ -d "${WORKDIR}/$f/kernel-meta" ]; then
216 includes="$includes -I${WORKDIR}/$f/kernel-meta" 216 includes="$includes -I${WORKDIR}/$f/kernel-meta"
217 elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then 217 elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then
218 includes="$includes -I${WORKDIR}/../oe-local-files/$f" 218 includes="$includes -I${WORKDIR}/../oe-local-files/$f"