diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-03-22 02:48:19 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-25 10:29:16 +0000 |
commit | 4ebaeb281bc70a9962ab9f4c49c0a2587fe3487a (patch) | |
tree | 9505154827b8f99b1f8279310f8719f145740012 /meta/classes/image-live.bbclass | |
parent | af1f77a1eb9d1dc3de17c9b0a2b74d76ada40544 (diff) | |
download | poky-4ebaeb281bc70a9962ab9f4c49c0a2587fe3487a.tar.gz |
bootimg.bbclass: fix settings for grub-efi.bbclass
Fixed:
- Found potential conflicted var LABELS ...
Set LABELS to "boot install" would build out broken images when build
vm + live together, use set_live_vm_vars() to fix the problem.
- Use ROOT and LABEL in boot-directdisk.bbclass and image-foo.bbclass,
they are not only used by syslinux.bbclass, but also grub-efi.bbclass,
add "SYSLINUX_" prefix would mislead users.
(From OE-Core rev: d7d1e0193c94abb1cd2daf1c298c8c1788f3616d)
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.bbclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass index b8f21cb7a5..504725d266 100644 --- a/meta/classes/image-live.bbclass +++ b/meta/classes/image-live.bbclass | |||
@@ -1,9 +1,8 @@ | |||
1 | 1 | ||
2 | INITRD_IMAGE_LIVE ?= "core-image-minimal-initramfs" | 2 | INITRD_IMAGE_LIVE ?= "core-image-minimal-initramfs" |
3 | INITRD_LIVE ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE_LIVE}-${MACHINE}.cpio.gz" | 3 | INITRD_LIVE ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE_LIVE}-${MACHINE}.cpio.gz" |
4 | SYSLINUX_ROOT_LIVE ?= "root=/dev/ram0" | 4 | ROOT_LIVE ?= "root=/dev/ram0" |
5 | SYSLINUX_LABELS_LIVE ?= "boot install" | 5 | LABELS_LIVE ?= "boot install" |
6 | LABELS_LIVE ?= "${SYSLINUX_LABELS_LIVE}" | ||
7 | SYSLINUX_CFG_LIVE ?= "${S}/syslinux_live.cfg" | 6 | SYSLINUX_CFG_LIVE ?= "${S}/syslinux_live.cfg" |
8 | 7 | ||
9 | ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" | 8 | ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.ext4" |