mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 10:13:03 +01:00
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>
23 lines
514 B
Plaintext
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"
|
|
|