mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
syslinux.bbclass: make vm and live can be built together
* The vm image(hdddirect, vmdk, qcow2, vdi) and live image (hddimg, iso) couldn't be built together because the following vars settings are conflicted: - SYSLINUX_ROOT (/dev/sda2 vs /dev/ram0) - LABELS (boot vs boot install) - INITRD (None vs live install) - SYSLINUX_CFG (see above) Introduce new vars (SYSLINUX_ROOT_VM/_LIVE, the samilar to others) to make them can work together, now we can build all of them together: IMAGE_FSTYPES += "live iso hddimg hdddirect vmdk qcow2 vdi" * Use SYSLINUX_CFG rather than SYSLINUXCFG to keep align with others SYSLINUX vars. * The SYSLINUX_TIMEOUT had been set, but it didn't work since AUTO_SYSLINUXMENU wasn't set, this would cause confusions, so also set AUTO_SYSLINUXMENU. * Move SYSLINUX_PROMPT and SYSLINUX_TIMEOUT to syslinux.bbclass rather than in separate classes since they are the same. * Set SYSLINUX_TIMEOUT to 50 to have a unique timeout for syslinux. [YOCTO #9161] (From OE-Core rev: e38c94d6bf83ed3ca7f046d9503e81b927487bf2) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
5c5c13d777
commit
bb1c719250
@@ -1,18 +1,17 @@
|
||||
|
||||
SYSLINUX_PROMPT ?= "0"
|
||||
SYSLINUX_LABELS = "boot"
|
||||
LABELS_append = " ${SYSLINUX_LABELS} "
|
||||
SYSLINUX_LABELS_VM ?= "boot"
|
||||
LABELS_VM ?= "${SYSLINUX_LABELS_VM}"
|
||||
|
||||
# Using an initramfs is optional. Enable it by setting INITRD_IMAGE.
|
||||
INITRD_IMAGE ?= ""
|
||||
INITRD ?= "${@'${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz' if '${INITRD_IMAGE}' else ''}"
|
||||
do_bootdirectdisk[depends] += "${@'${INITRD_IMAGE}:do_image_complete' if '${INITRD_IMAGE}' else ''}"
|
||||
# Using an initramfs is optional. Enable it by setting INITRD_IMAGE_VM.
|
||||
INITRD_IMAGE_VM ?= ""
|
||||
INITRD_VM ?= "${@'${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE_VM}-${MACHINE}.cpio.gz' if '${INITRD_IMAGE_VM}' else ''}"
|
||||
do_bootdirectdisk[depends] += "${@'${INITRD_IMAGE_VM}:do_image_complete' if '${INITRD_IMAGE_VM}' else ''}"
|
||||
|
||||
# need to define the dependency and the ROOTFS for directdisk
|
||||
do_bootdirectdisk[depends] += "${PN}:do_image_ext4"
|
||||
ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4"
|
||||
|
||||
# creating VM images relies on having a hddimg so ensure we inherit it here.
|
||||
# creating VM images relies on having a hdddirect so ensure we inherit it here.
|
||||
inherit boot-directdisk
|
||||
|
||||
IMAGE_TYPEDEP_vmdk = "ext4"
|
||||
|
||||
Reference in New Issue
Block a user