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/kernel.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/kernel.bbclass')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 4ce1611d7f..997376d126 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -25,7 +25,7 @@ python __anonymous () { | |||
25 | 25 | ||
26 | image = d.getVar('INITRAMFS_IMAGE', True) | 26 | image = d.getVar('INITRAMFS_IMAGE', True) |
27 | if image: | 27 | if image: |
28 | d.appendVarFlag('do_bundle_initramfs', 'depends', ' ${INITRAMFS_IMAGE}:do_rootfs') | 28 | d.appendVarFlag('do_bundle_initramfs', 'depends', ' ${INITRAMFS_IMAGE}:do_image_complete') |
29 | 29 | ||
30 | # NOTE: setting INITRAMFS_TASK is for backward compatibility | 30 | # NOTE: setting INITRAMFS_TASK is for backward compatibility |
31 | # The preferred method is to set INITRAMFS_IMAGE, because | 31 | # The preferred method is to set INITRAMFS_IMAGE, because |