mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
When the externalsrc class is used the tasks listed in SRCTREECOVEREDTASKS are deleted to prevent them being executed. If externalsrc is used for the kernel then this will include virtual/kernel:do_patch. We can depend on do_shared_workdir instead as this will survive when externalsrc is used. (From OE-Core rev: 2c17d35cc7b9c5e01fd5829858d2f0234e7ac8d6) Signed-off-by: Paul Barker <pbarker@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
306 B
Plaintext
11 lines
306 B
Plaintext
S = "${STAGING_KERNEL_DIR}"
|
|
deltask do_fetch
|
|
deltask do_unpack
|
|
do_patch[depends] += "virtual/kernel:do_shared_workdir"
|
|
do_patch[noexec] = "1"
|
|
do_package[depends] += "virtual/kernel:do_populate_sysroot"
|
|
KERNEL_VERSION = "${@get_kernelversion_file("${STAGING_KERNEL_BUILDDIR}")}"
|
|
|
|
inherit linux-kernel-base
|
|
|