mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
image/packagegroup/populate_sdk: Drop do_populate_sysroot task properly
Setting do_populate_sysroot as noexec means the code keeps thinking it can find a manifest file for it. It also complicates sstate installtion since the code would believe there is an sstate object there it should look for. Instead, delete the task. This causes sdk failures as the dependencies are wrong so fix those as well. (From OE-Core rev: bd7d0314038a4c1a8e8c9ebdb7194f8e17db3fef) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -96,10 +96,6 @@ LDCONFIGDEPEND_libc-musl = ""
|
||||
# don't want this dependency, which is causing dependency loop
|
||||
KERNELDEPMODDEPEND ?= "virtual/kernel:do_packagedata"
|
||||
|
||||
# POPULATESYSROOTDEPS fails to expand correctly with multilibs since overrides aren't set for image.bbclass
|
||||
# we don't need these depends so just clear them
|
||||
do_populate_sysroot[depends] = ""
|
||||
|
||||
do_rootfs[depends] += " \
|
||||
makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND} \
|
||||
virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot \
|
||||
@@ -625,7 +621,7 @@ do_patch[noexec] = "1"
|
||||
do_configure[noexec] = "1"
|
||||
do_compile[noexec] = "1"
|
||||
do_install[noexec] = "1"
|
||||
do_populate_sysroot[noexec] = "1"
|
||||
deltask do_populate_sysroot
|
||||
do_package[noexec] = "1"
|
||||
do_package_qa[noexec] = "1"
|
||||
do_packagedata[noexec] = "1"
|
||||
|
||||
@@ -46,7 +46,7 @@ do_patch[noexec] = "1"
|
||||
do_configure[noexec] = "1"
|
||||
do_compile[noexec] = "1"
|
||||
do_install[noexec] = "1"
|
||||
do_populate_sysroot[noexec] = "1"
|
||||
deltask do_populate_sysroot
|
||||
|
||||
python () {
|
||||
initman = d.getVar("VIRTUAL-RUNTIME_init_manager")
|
||||
|
||||
@@ -273,6 +273,6 @@ do_populate_sdk[file-checksums] += "${COREBASE}/meta/files/toolchain-shar-reloca
|
||||
|
||||
do_populate_sdk[dirs] = "${PKGDATA_DIR} ${TOPDIR}"
|
||||
do_populate_sdk[depends] += "${@' '.join([x + ':do_populate_sysroot' for x in d.getVar('SDK_DEPENDS').split()])} ${@d.getVarFlag('do_rootfs', 'depends', False)}"
|
||||
do_populate_sdk[rdepends] = "${@' '.join([x + ':do_populate_sysroot' for x in d.getVar('SDK_RDEPENDS').split()])}"
|
||||
do_populate_sdk[rdepends] = "${@' '.join([x + ':do_package_write_${IMAGE_PKGTYPE} ' + x + ':do_packagedata' for x in d.getVar('SDK_RDEPENDS').split()])}"
|
||||
do_populate_sdk[recrdeptask] += "do_packagedata do_package_write_rpm do_package_write_ipk do_package_write_deb"
|
||||
addtask populate_sdk
|
||||
|
||||
Reference in New Issue
Block a user