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 15:54:34 +0000 |
commit | 59a5f596ca29b1eb8283706e3c60fbb39f9c2c23 (patch) | |
tree | ed5bee2d708c9a87d2bac1281a7a25c5250876a7 /meta/classes/image-vm.bbclass | |
parent | c2dab181c1cdabac3be6197f4b9ea4235cbbc140 (diff) | |
download | openembedded-core-59a5f596ca29b1eb8283706e3c60fbb39f9c2c23.tar.gz openembedded-core-59a5f596ca29b1eb8283706e3c60fbb39f9c2c23.tar.bz2 openembedded-core-59a5f596ca29b1eb8283706e3c60fbb39f9c2c23.zip |
classes: Fix do_rootfs references
After the separation of do_rootfs, some rootfs references need changing
to image_complete.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-vm.bbclass')
-rw-r--r-- | meta/classes/image-vm.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image-vm.bbclass b/meta/classes/image-vm.bbclass index 575a4b7ffe..d214bf8862 100644 --- a/meta/classes/image-vm.bbclass +++ b/meta/classes/image-vm.bbclass @@ -6,10 +6,10 @@ LABELS_append = " ${SYSLINUX_LABELS} " # Using an initramfs is optional. Enable it by setting INITRD_IMAGE. INITRD_IMAGE ?= "" INITRD ?= "${@'${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz' if '${INITRD_IMAGE}' else ''}" -do_bootdirectdisk[depends] += "${@'${INITRD_IMAGE}:do_rootfs' if '${INITRD_IMAGE}' else ''}" +do_bootdirectdisk[depends] += "${@'${INITRD_IMAGE}:do_image_complete' if '${INITRD_IMAGE}' else ''}" # need to define the dependency and the ROOTFS for directdisk -do_bootdirectdisk[depends] += "${PN}:do_rootfs" +do_bootdirectdisk[depends] += "${PN}:do_image_complete" ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" # creating VM images relies on having a hddimg so ensure we inherit it here. |