diff options
| author | Russ Dill <russ.dill@nikolamotor.com> | 2022-04-20 20:58:19 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-04 13:07:33 +0100 |
| commit | 6adc3aa634a152a10355aa0e12105fd919f420f6 (patch) | |
| tree | d4766c8643d8ce1b1c622d88bc977a8e2c51983b | |
| parent | ef36e735aea8752e92238386c8432cbba104f9d7 (diff) | |
| download | poky-6adc3aa634a152a10355aa0e12105fd919f420f6.tar.gz | |
kernel-yocto.bbclass: Fixup do_kernel_configcheck usage of KMETA
The do_kernel_configcheck task requires a meta directory, normally
set by ${KMETA}. The meta directory is taken as a relative path
from ${S}:
outfile = "{}/{}/cfg/mismatch.txt".format( s, kmeta )
However, when checking for the presence of ${KMETA} the current
working directory is searched. This will almost always fail and
"kgit --meta" is used instead. If the user does have a path in
their current working directory that matches the ${KMETA}
variable but the path is not present within the kernel source
directory, the build will fail if it tries to write config errors/
warnings to that path.
If ${KMETA} is not set, the same problem exists with the hard-coded
"meta" directory.
Fix these issues by checking for ${KMETA} within ${S} rather than
the current working directory. Additionally, drop the hardcoded
backup directory "meta" as it hasn't been functioning and
probably has no users
(From OE-Core rev: c322272a51d923cda9b0e5e388e32b7dd3a6bd22)
Signed-off-by: Russ Dill <russ.dill@nikolamotor.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
(cherry picked from commit f4a3e80a4a6f4f709d09940dcaf45b2b00654496)
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 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 1d5a8cdf29..4cb638864c 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
| @@ -521,15 +521,15 @@ python do_config_analysis() { | |||
| 521 | python do_kernel_configcheck() { | 521 | python do_kernel_configcheck() { |
| 522 | import re, string, sys, subprocess | 522 | import re, string, sys, subprocess |
| 523 | 523 | ||
| 524 | # if KMETA isn't set globally by a recipe using this routine, we need to | ||
| 525 | # set the default to 'meta'. Otherwise, kconf_check is not passed a valid | ||
| 526 | # meta-series for processing | ||
| 527 | kmeta = d.getVar("KMETA") or "meta" | ||
| 528 | if not os.path.exists(kmeta): | ||
| 529 | kmeta = subprocess.check_output(['kgit', '--meta'], cwd=d.getVar('S')).decode('utf-8').rstrip() | ||
| 530 | |||
| 531 | s = d.getVar('S') | 524 | s = d.getVar('S') |
| 532 | 525 | ||
| 526 | # if KMETA isn't set globally by a recipe using this routine, use kgit to | ||
| 527 | # locate or create the meta directory. Otherwise, kconf_check is not | ||
| 528 | # passed a valid meta-series for processing | ||
| 529 | kmeta = d.getVar("KMETA") | ||
| 530 | if not kmeta or not os.path.exists('{}/{}'.format(s,kmeta)): | ||
| 531 | kmeta = subprocess.check_output(['kgit', '--meta'], cwd=d.getVar('S')).decode('utf-8').rstrip() | ||
| 532 | |||
| 533 | env = os.environ.copy() | 533 | env = os.environ.copy() |
| 534 | env['PATH'] = "%s:%s%s" % (d.getVar('PATH'), s, "/scripts/util/") | 534 | env['PATH'] = "%s:%s%s" % (d.getVar('PATH'), s, "/scripts/util/") |
| 535 | env['LD'] = d.getVar('KERNEL_LD') | 535 | env['LD'] = d.getVar('KERNEL_LD') |
