mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
vmdk: Update for direstdisk
The conversion to directdisk is necessary due to the limitation in the mkdosfs version we carry and larger filesystems. (From OE-Core rev: 0f8a33cfa254f59bb87fe4a6727e329b0772551a) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
337fbed734
commit
a58c37291b
@@ -1,15 +1,23 @@
|
||||
|
||||
NOISO = "1"
|
||||
|
||||
SYSLINUX_ROOT = "root=/dev/hda2 "
|
||||
SYSLINUX_PROMPT = "0"
|
||||
SYSLINUX_TIMEOUT = "1"
|
||||
SYSLINUX_LABELS = "boot"
|
||||
LABELS_append = " ${SYSLINUX_LABELS} "
|
||||
|
||||
# need to define the dependency and the ROOTFS for directdisk
|
||||
do_bootdirectdisk[depends] += "${IMAGE_BASENAME}:do_rootfs"
|
||||
ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_BASENAME}-${MACHINE}.ext3"
|
||||
|
||||
# creating VMDK relies on having a live hddimg so ensure we
|
||||
# inherit it here.
|
||||
inherit image-live
|
||||
#inherit image-live
|
||||
inherit boot-directdisk
|
||||
|
||||
create_vmdk_image () {
|
||||
qemu-img convert -O vmdk ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hddimg ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.vmdk
|
||||
qemu-img convert -O vmdk ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.hdddirect ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.vmdk
|
||||
ln -s ${IMAGE_NAME}.vmdk ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.vmdk
|
||||
|
||||
}
|
||||
@@ -18,7 +26,8 @@ python do_vmdkimg() {
|
||||
bb.build.exec_func('create_vmdk_image', d)
|
||||
}
|
||||
|
||||
addtask vmdkimg after do_bootimg before do_build
|
||||
#addtask vmdkimg after do_bootimg before do_build
|
||||
addtask vmdkimg after do_bootdirectdisk before do_build
|
||||
do_vmdkimg[nostamp] = "1"
|
||||
|
||||
do_vmdkimg[depends] += "qemu-native:do_populate_sysroot"
|
||||
|
||||
Reference in New Issue
Block a user