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-live.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-live.bbclass')
-rw-r--r-- | meta/classes/image-live.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index 4a7e2b7557..624ff38dc2 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass | |||
@@ -9,8 +9,8 @@ LABELS_append = " ${SYSLINUX_LABELS} " | |||
9 | 9 | ||
10 | ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" | 10 | ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" |
11 | 11 | ||
12 | do_bootimg[depends] += "${INITRD_IMAGE}:do_rootfs" | 12 | do_bootimg[depends] += "${INITRD_IMAGE}:do_image_complete" |
13 | do_bootimg[depends] += "${PN}:do_rootfs" | 13 | do_bootimg[depends] += "${PN}:do_image_complete" |
14 | 14 | ||
15 | inherit bootimg | 15 | inherit bootimg |
16 | 16 | ||