Files
poky/meta/classes/image-vmdk.bbclass
Saul Wold 0e56519b33 image-vmdk: Create image_vmdk class and setup image and image_types to use it
This creates a new image_vmdk class similar to live. The image_vmdk
class needs to have a hddimg created by the image-live class, so it
inherits it directly.

The changes to image_types is to ensure that both live and vmdk images
get the ext3 tools and dependencies.

(From OE-Core rev: aa961e112b07d42c272e01f2d69f3c139e9ae70f)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-03-01 15:51:40 +00:00

23 lines
514 B
Plaintext

SYSLINUX_PROMPT = "0"
SYSLINUX_TIMEOUT = "1"
SYSLINUX_LABELS = "boot"
# creating VMDK relies on having a live hddimg so ensure we
# inherit it here.
inherit image-live
create_vmdk_image () {
qemu-img convert -O vmdk ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.vmdk
}
python do_vmdkimg() {
bb.build.exec_func('create_vmdk_image', d)
}
addtask vmdkimg after do_bootimg before do_build
do_vmdkimg[nostamp] = "1"
do_vmdkimg[depends] += "qemu-native:do_populate_sysroot"