diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2016-02-24 01:23:58 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-02 23:08:51 +0000 |
| commit | bb1c719250cecc8725147cbdd999a9a44a11b549 (patch) | |
| tree | 87c69fe8fe2c254d87dbf09b47fba74b9c8a8928 /meta/classes/boot-directdisk.bbclass | |
| parent | 5c5c13d77783e96b9acbbe460bf7060722f436cb (diff) | |
| download | poky-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/boot-directdisk.bbclass')
| -rw-r--r-- | meta/classes/boot-directdisk.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/boot-directdisk.bbclass b/meta/classes/boot-directdisk.bbclass index 89007e315b..fcdef26fd8 100644 --- a/meta/classes/boot-directdisk.bbclass +++ b/meta/classes/boot-directdisk.bbclass | |||
| @@ -53,14 +53,13 @@ def pcbios_class(d): | |||
| 53 | PCBIOS = "${@pcbios(d)}" | 53 | PCBIOS = "${@pcbios(d)}" |
| 54 | PCBIOS_CLASS = "${@pcbios_class(d)}" | 54 | PCBIOS_CLASS = "${@pcbios_class(d)}" |
| 55 | 55 | ||
| 56 | # Get the build_syslinux_cfg() function from the syslinux class | ||
| 56 | inherit ${PCBIOS_CLASS} | 57 | inherit ${PCBIOS_CLASS} |
| 57 | inherit ${EFI_CLASS} | 58 | inherit ${EFI_CLASS} |
| 58 | 59 | ||
| 59 | # Get the build_syslinux_cfg() function from the syslinux class | ||
| 60 | |||
| 61 | DISK_SIGNATURE ?= "${DISK_SIGNATURE_GENERATED}" | 60 | DISK_SIGNATURE ?= "${DISK_SIGNATURE_GENERATED}" |
| 62 | SYSLINUX_ROOT ?= "root=/dev/sda2" | 61 | SYSLINUX_ROOT_VM ?= "root=/dev/sda2" |
| 63 | SYSLINUX_TIMEOUT ?= "10" | 62 | SYSLINUX_CFG_VM ?= "${S}/syslinux_hdd.cfg" |
| 64 | 63 | ||
| 65 | boot_direct_populate() { | 64 | boot_direct_populate() { |
| 66 | dest=$1 | 65 | dest=$1 |
| @@ -162,6 +161,7 @@ build_boot_dd() { | |||
| 162 | python do_bootdirectdisk() { | 161 | python do_bootdirectdisk() { |
| 163 | validate_disk_signature(d) | 162 | validate_disk_signature(d) |
| 164 | if d.getVar("PCBIOS", True) == "1": | 163 | if d.getVar("PCBIOS", True) == "1": |
| 164 | syslinux_set_vars(d, 'VM') | ||
| 165 | bb.build.exec_func('build_syslinux_cfg', d) | 165 | bb.build.exec_func('build_syslinux_cfg', d) |
| 166 | if d.getVar("EFI", True) == "1": | 166 | if d.getVar("EFI", True) == "1": |
| 167 | bb.build.exec_func('build_efi_cfg', d) | 167 | bb.build.exec_func('build_efi_cfg', d) |
