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-09 13:19:03 +0000 |
| commit | 7cabd3e23ccc00efc37ca9b04058388b37658832 (patch) | |
| tree | 9c8232ccec080322a03768deb8a506eb86252dc0 | |
| parent | c6b64d28723451c6192bb4c3a46dc353476a648c (diff) | |
| download | poky-7cabd3e23ccc00efc37ca9b04058388b37658832.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: c92593af46ef2ccbaaff89bb75eac46b3ac8b856)
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 82e792351f..4f8e391428 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
| @@ -206,7 +206,7 @@ do_kernel_metadata() { | |||
| 206 | # SRC_URI. If they were supplied, we convert them into include directives | 206 | # SRC_URI. If they were supplied, we convert them into include directives |
| 207 | # for the update part of the process | 207 | # for the update part of the process |
| 208 | for f in ${feat_dirs}; do | 208 | for f in ${feat_dirs}; do |
| 209 | if [ -d "${WORKDIR}/$f/meta" ]; then | 209 | if [ -d "${WORKDIR}/$f/kernel-meta" ]; then |
| 210 | includes="$includes -I${WORKDIR}/$f/kernel-meta" | 210 | includes="$includes -I${WORKDIR}/$f/kernel-meta" |
| 211 | elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then | 211 | elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then |
| 212 | includes="$includes -I${WORKDIR}/../oe-local-files/$f" | 212 | includes="$includes -I${WORKDIR}/../oe-local-files/$f" |
