diff options
author | Paul Barker <pbarker@konsulko.com> | 2020-03-09 14:21:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-10 23:20:33 +0000 |
commit | 3abf367f4806ebd8786545f9bc29f045ce9db5d0 (patch) | |
tree | d0f6fe296ee14e117f9763907d2651bebd9c2fe0 /meta/classes | |
parent | c82b02815b71b9edbd408fba0406873d738a92c7 (diff) | |
download | poky-3abf367f4806ebd8786545f9bc29f045ce9db5d0.tar.gz |
kernel-yocto.bbclass: Support config fragments with externalsrc
The merging of config fragments is performend in the do_kernel_configme
task and so config fragments will not be supported when this task is
removed from the dependency tree.
kernel-yocto adds additional tasks which may modify the source directory
to SRCTREECOVEREDTASKS so that they are removed when using externalsrc.
However, do_kernel_configme should be safe to use, the only modification
to the source tree is the potential creation of the '.kernel-meta'
directory and the '.metadir' file.
(From OE-Core rev: 44f04c039a4d61dd18666e42b9b9865cbc3ada9e)
Signed-off-by: Paul Barker <pbarker@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index d71ce212a8..6792c9a233 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -1,5 +1,5 @@ | |||
1 | # remove tasks that modify the source tree in case externalsrc is inherited | 1 | # remove tasks that modify the source tree in case externalsrc is inherited |
2 | SRCTREECOVEREDTASKS += "do_kernel_configme do_validate_branches do_kernel_configcheck do_kernel_checkout do_fetch do_unpack do_patch" | 2 | SRCTREECOVEREDTASKS += "do_validate_branches do_kernel_configcheck do_kernel_checkout do_fetch do_unpack do_patch" |
3 | PATCH_GIT_USER_EMAIL ?= "kernel-yocto@oe" | 3 | PATCH_GIT_USER_EMAIL ?= "kernel-yocto@oe" |
4 | PATCH_GIT_USER_NAME ?= "OpenEmbedded" | 4 | PATCH_GIT_USER_NAME ?= "OpenEmbedded" |
5 | 5 | ||
@@ -325,6 +325,7 @@ do_validate_branches[depends] = "kern-tools-native:do_populate_sysroot" | |||
325 | do_kernel_configme[depends] += "virtual/${TARGET_PREFIX}binutils:do_populate_sysroot" | 325 | do_kernel_configme[depends] += "virtual/${TARGET_PREFIX}binutils:do_populate_sysroot" |
326 | do_kernel_configme[depends] += "virtual/${TARGET_PREFIX}gcc:do_populate_sysroot" | 326 | do_kernel_configme[depends] += "virtual/${TARGET_PREFIX}gcc:do_populate_sysroot" |
327 | do_kernel_configme[depends] += "bc-native:do_populate_sysroot bison-native:do_populate_sysroot" | 327 | do_kernel_configme[depends] += "bc-native:do_populate_sysroot bison-native:do_populate_sysroot" |
328 | do_kernel_configme[depends] += "kern-tools-native:do_populate_sysroot" | ||
328 | do_kernel_configme[dirs] += "${S} ${B}" | 329 | do_kernel_configme[dirs] += "${S} ${B}" |
329 | do_kernel_configme() { | 330 | do_kernel_configme() { |
330 | # translate the kconfig_mode into something that merge_config.sh | 331 | # translate the kconfig_mode into something that merge_config.sh |