diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-02-29 23:46:21 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-01 15:39:55 +0000 |
commit | aa961e112b07d42c272e01f2d69f3c139e9ae70f (patch) | |
tree | 62de0b094a9d2e3462d33d10c879c37ad7817e8c /meta/classes/image-vmdk.bbclass | |
parent | c051d6c59c71a5f90c2d545491facd2d131592fd (diff) | |
download | openembedded-core-aa961e112b07d42c272e01f2d69f3c139e9ae70f.tar.gz openembedded-core-aa961e112b07d42c272e01f2d69f3c139e9ae70f.tar.bz2 openembedded-core-aa961e112b07d42c272e01f2d69f3c139e9ae70f.tar.xz openembedded-core-aa961e112b07d42c272e01f2d69f3c139e9ae70f.zip |
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.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-vmdk.bbclass')
-rw-r--r-- | meta/classes/image-vmdk.bbclass | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/classes/image-vmdk.bbclass b/meta/classes/image-vmdk.bbclass new file mode 100644 index 000000000..d3e548178 --- /dev/null +++ b/meta/classes/image-vmdk.bbclass @@ -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" + |