mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
classes: Fix do_rootfs references
After the separation of do_rootfs, some rootfs references need changing to image_complete. (From OE-Core rev: 59a5f596ca29b1eb8283706e3c60fbb39f9c2c23) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -167,7 +167,7 @@ python () {
|
||||
initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or ""
|
||||
if initramfs_image != "":
|
||||
d.appendVarFlag('do_build', 'depends', " %s:do_bundle_initramfs" % d.getVar('PN', True))
|
||||
d.appendVarFlag('do_bundle_initramfs', 'depends', " %s:do_rootfs" % initramfs_image)
|
||||
d.appendVarFlag('do_bundle_initramfs', 'depends', " %s:do_image_complete" % initramfs_image)
|
||||
}
|
||||
|
||||
IMAGE_CLASSES += "image_types"
|
||||
@@ -486,4 +486,4 @@ do_bundle_initramfs[noexec] = "1"
|
||||
do_bundle_initramfs () {
|
||||
:
|
||||
}
|
||||
addtask bundle_initramfs after do_rootfs
|
||||
addtask bundle_initramfs after do_image_complete
|
||||
|
||||
Reference in New Issue
Block a user