From 59a5f596ca29b1eb8283706e3c60fbb39f9c2c23 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 6 Jan 2016 22:57:49 +0000 Subject: classes: Fix do_rootfs references After the separation of do_rootfs, some rootfs references need changing to image_complete. Signed-off-by: Richard Purdie --- meta/classes/image-vm.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/classes/image-vm.bbclass') 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. -- cgit v1.2.3