1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-16 03:47:03 +00:00

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>
This commit is contained in:
Saul Wold
2012-02-29 23:46:21 -08:00
committed by Richard Purdie
parent 157b44cf72
commit 0e56519b33
3 changed files with 35 additions and 8 deletions
+22
View File
@@ -0,0 +1,22 @@
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"