mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 11:13:04 +01:00
IMAGE_TYPES_MASKED support was accidentally removed. The original idea behind it was to remove some of the hardcoding in the core image code, so do that for image-live and ensure the dependency and masked variables correctly reflect the needs of the class. This means we can remove all the hardcoded special cases since image-vm already has the needed markup. (From OE-Core rev: 9a2d4a3b8d7bb1cf7f1fb7fe47d5c002d9941c89) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
579 B
Plaintext
21 lines
579 B
Plaintext
|
|
AUTO_SYSLINUXCFG = "1"
|
|
INITRD_IMAGE ?= "core-image-minimal-initramfs"
|
|
INITRD ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz"
|
|
SYSLINUX_ROOT ?= "root=/dev/ram0"
|
|
SYSLINUX_TIMEOUT ?= "50"
|
|
SYSLINUX_LABELS ?= "boot install"
|
|
LABELS_append = " ${SYSLINUX_LABELS} "
|
|
|
|
ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4"
|
|
|
|
do_bootimg[depends] += "${INITRD_IMAGE}:do_image_complete"
|
|
do_bootimg[depends] += "${PN}:do_image_complete"
|
|
|
|
inherit bootimg
|
|
|
|
IMAGE_TYPEDEP_live = "ext4"
|
|
IMAGE_TYPEDEP_iso = "ext4"
|
|
IMAGE_TYPEDEP_hddimg = "ext4"
|
|
IMAGE_TYPES_MASKED += "live hddimg iso"
|