]> code.ossystems Code Review - openembedded-core.git/commit
syslinux.bbclass: make vm and live can be built together
authorRobert Yang <liezhi.yang@windriver.com>
Wed, 24 Feb 2016 09:23:58 +0000 (01:23 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 2 Mar 2016 23:08:07 +0000 (23:08 +0000)
commite38c94d6bf83ed3ca7f046d9503e81b927487bf2
treeb2c3194e2d1dd26d796629a8804d0a70ee1a57ba
parent41d0e4d75f13b53a6c1b6a8df9be4742be7534e0
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]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/boot-directdisk.bbclass
meta/classes/bootimg.bbclass
meta/classes/image-live.bbclass
meta/classes/image-vm.bbclass
meta/classes/syslinux.bbclass