diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-06 22:57:49 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-11 23:26:29 +0000 |
commit | 3341f3fbee818a0bd62620b8bc34230b03c0689c (patch) | |
tree | 40b07685cb19f5afb62066f837689d24e55cfbce /meta/classes/image.bbclass | |
parent | 0a4e1f968ada5099e3270ed06404d2827e9729aa (diff) | |
download | poky-3341f3fbee818a0bd62620b8bc34230b03c0689c.tar.gz |
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>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 5003dacc1c..48505c8d6c 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -167,7 +167,7 @@ python () { | |||
167 | initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" | 167 | initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" |
168 | if initramfs_image != "": | 168 | if initramfs_image != "": |
169 | d.appendVarFlag('do_build', 'depends', " %s:do_bundle_initramfs" % d.getVar('PN', True)) | 169 | d.appendVarFlag('do_build', 'depends', " %s:do_bundle_initramfs" % d.getVar('PN', True)) |
170 | d.appendVarFlag('do_bundle_initramfs', 'depends', " %s:do_rootfs" % initramfs_image) | 170 | d.appendVarFlag('do_bundle_initramfs', 'depends', " %s:do_image_complete" % initramfs_image) |
171 | } | 171 | } |
172 | 172 | ||
173 | IMAGE_CLASSES += "image_types" | 173 | IMAGE_CLASSES += "image_types" |
@@ -486,4 +486,4 @@ do_bundle_initramfs[noexec] = "1" | |||
486 | do_bundle_initramfs () { | 486 | do_bundle_initramfs () { |
487 | : | 487 | : |
488 | } | 488 | } |
489 | addtask bundle_initramfs after do_rootfs | 489 | addtask bundle_initramfs after do_image_complete |