mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 09:29:40 +01:00
We have removed the nostamps for do_rootfs and do_build, so it seems
reasonable to remove the stamps for do_bootimg, do_bootdirectdisk and
do_vmdkimg.
The current problem is that the do_vmdkimg always re-run, but the
do_rootfs may not, so the code like below in the do_rootfs function
doesn't re-run and cause problems (the symlink exists when the
do_vmdkimg creates the symlink again):
if d.getVar('IMAGE_LINK_NAME', True):
cmds += "\trm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.*"
(From OE-Core rev: 45c7dab5d51065c7b24ab5292f8e9d3104eb0626)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
907 B
Plaintext
34 lines
907 B
Plaintext
|
|
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] += "${PN}: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 boot-directdisk
|
|
|
|
create_vmdk_image () {
|
|
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
|
|
|
|
}
|
|
|
|
python do_vmdkimg() {
|
|
bb.build.exec_func('create_vmdk_image', d)
|
|
}
|
|
|
|
#addtask vmdkimg after do_bootimg before do_build
|
|
addtask vmdkimg after do_bootdirectdisk before do_build
|
|
|
|
do_vmdkimg[depends] += "qemu-native:do_populate_sysroot"
|
|
|