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-06 15:09:42 +0000 |
commit | c0d004ef35f5867525f436d61380affb658d72d1 (patch) | |
tree | 5ecb3aade16229615d37ab6504c16e276eb03061 | |
parent | a0652e7549635728169528666e6367aa098681b7 (diff) | |
download | poky-c0d004ef35f5867525f436d61380affb658d72d1.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: a075bf43ddbbd79cfdcaa257bb2dae49a5b6e0f7)
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-recipe/kernel-yocto.bbclass | 2 |
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" |