aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/image-vmdk.bbclass
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-02-29 23:46:21 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-01 15:39:55 +0000
commitaa961e112b07d42c272e01f2d69f3c139e9ae70f (patch)
tree62de0b094a9d2e3462d33d10c879c37ad7817e8c /meta/classes/image-vmdk.bbclass
parentc051d6c59c71a5f90c2d545491facd2d131592fd (diff)
downloadopenembedded-core-contrib-aa961e112b07d42c272e01f2d69f3c139e9ae70f.tar.gz
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.bbclass22
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 0000000000..d3e548178b
--- /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"
+