diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-18 14:27:02 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-19 16:35:37 +0000 |
commit | 9543c4a9ce0ac7d9ced66fa14e48a1aa7401011e (patch) | |
tree | c0fbbf9ff241ccd3640e5610350d469250c12818 /meta/classes/image-live.bbclass | |
parent | b2576f2eab10e4c5dd86449312b417a269cc578e (diff) | |
download | openembedded-core-9543c4a9ce0ac7d9ced66fa14e48a1aa7401011e.tar.gz openembedded-core-9543c4a9ce0ac7d9ced66fa14e48a1aa7401011e.tar.bz2 openembedded-core-9543c4a9ce0ac7d9ced66fa14e48a1aa7401011e.zip |
bootimg/image-vm/image-live: Improve image dependencies
Now that image generation consists of separate tasks, we can improve
the dependencies in these classes. We can also incorporate the tasks
within do_image_complete instead of do_build so we have a specific task
for when the deploy directory is populated with images.
This fixes various expectations about do_image_completed and the way
I'd tried to use it to fix some sanity test problems.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index d2e8b85482..aafa7d5b23 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass @@ -10,7 +10,7 @@ LABELS_append = " ${SYSLINUX_LABELS} " ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" do_bootimg[depends] += "${INITRD_IMAGE}:do_image_complete" -do_bootimg[depends] += "${PN}:do_image_complete" +do_bootimg[depends] += "${PN}:do_image_ext4" inherit bootimg |