summaryrefslogtreecommitdiffstats
path: root/meta/classes/image-live.bbclass
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2016-02-24 01:23:58 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-02 23:08:51 +0000
commitbb1c719250cecc8725147cbdd999a9a44a11b549 (patch)
tree87c69fe8fe2c254d87dbf09b47fba74b9c8a8928 /meta/classes/image-live.bbclass
parent5c5c13d77783e96b9acbbe460bf7060722f436cb (diff)
downloadpoky-bb1c719250cecc8725147cbdd999a9a44a11b549.tar.gz
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>
Diffstat (limited to 'meta/classes/image-live.bbclass')
-rw-r--r--meta/classes/image-live.bbclass16
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass
index badf40de54..b8f21cb7a5 100644
--- a/meta/classes/image-live.bbclass
+++ b/meta/classes/image-live.bbclass
@@ -1,10 +1,10 @@
1 1
2INITRD_IMAGE ?= "core-image-minimal-initramfs" 2INITRD_IMAGE_LIVE ?= "core-image-minimal-initramfs"
3INITRD ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz" 3INITRD_LIVE ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE_LIVE}-${MACHINE}.cpio.gz"
4SYSLINUX_ROOT ?= "root=/dev/ram0" 4SYSLINUX_ROOT_LIVE ?= "root=/dev/ram0"
5SYSLINUX_TIMEOUT ?= "50" 5SYSLINUX_LABELS_LIVE ?= "boot install"
6SYSLINUX_LABELS ?= "boot install" 6LABELS_LIVE ?= "${SYSLINUX_LABELS_LIVE}"
7LABELS_append = " ${SYSLINUX_LABELS} " 7SYSLINUX_CFG_LIVE ?= "${S}/syslinux_live.cfg"
8 8
9ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" 9ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4"
10 10
@@ -19,9 +19,9 @@ IMAGE_TYPES_MASKED += "live hddimg iso"
19 19
20python() { 20python() {
21 image_b = d.getVar('IMAGE_BASENAME', True) 21 image_b = d.getVar('IMAGE_BASENAME', True)
22 initrd_i = d.getVar('INITRD_IMAGE', True) 22 initrd_i = d.getVar('INITRD_IMAGE_LIVE', True)
23 if image_b == initrd_i: 23 if image_b == initrd_i:
24 bb.error('INITRD_IMAGE %s cannot use image live, hddimg or iso.' % initrd_i) 24 bb.error('INITRD_IMAGE_LIVE %s cannot use image live, hddimg or iso.' % initrd_i)
25 bb.fatal('Check IMAGE_FSTYPES and INITRAMFS_FSTYPES settings.') 25 bb.fatal('Check IMAGE_FSTYPES and INITRAMFS_FSTYPES settings.')
26 else: 26 else:
27 d.appendVarFlag('do_bootimg', 'depends', ' %s:do_image_complete' % initrd_i) 27 d.appendVarFlag('do_bootimg', 'depends', ' %s:do_image_complete' % initrd_i)