diff options
author | Ulrich Ölmann <u.oelmann@pengutronix.de> | 2023-02-14 11:26:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-14 14:59:10 +0000 |
commit | a2147d6d2751caab170193b8db44876c38877e75 (patch) | |
tree | aca7b3b35cd534bd9b44b2f01d367171cfc378c1 | |
parent | e2b5de2c77e13e623a7e20ec8a1aeb75e0984a01 (diff) | |
download | poky-a2147d6d2751caab170193b8db44876c38877e75.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: 4533e8363549f87a0484d7c0a43a162c918f33bc)
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>
(cherry picked from commit c77754f23e3fb49a62602a6c6a04d5525d1cf457)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 2a6231803b..2abbc2ff66 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -194,7 +194,7 @@ do_kernel_metadata() { | |||
194 | # SRC_URI. If they were supplied, we convert them into include directives | 194 | # SRC_URI. If they were supplied, we convert them into include directives |
195 | # for the update part of the process | 195 | # for the update part of the process |
196 | for f in ${feat_dirs}; do | 196 | for f in ${feat_dirs}; do |
197 | if [ -d "${WORKDIR}/$f/meta" ]; then | 197 | if [ -d "${WORKDIR}/$f/kernel-meta" ]; then |
198 | includes="$includes -I${WORKDIR}/$f/kernel-meta" | 198 | includes="$includes -I${WORKDIR}/$f/kernel-meta" |
199 | elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then | 199 | elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then |
200 | includes="$includes -I${WORKDIR}/../oe-local-files/$f" | 200 | includes="$includes -I${WORKDIR}/../oe-local-files/$f" |