summaryrefslogtreecommitdiffstats
path: root/meta/classes/image-live.bbclass
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2015-06-10 16:42:33 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-06-23 11:47:22 +0100
commitff8ec3db57334d4b6ea13be530feefdfaf06960c (patch)
treeeff034fc4d43215d94008149b471993c2f80c11a /meta/classes/image-live.bbclass
parent74603c4ab47ae5729b05ac538c4f05e37af463bc (diff)
downloadpoky-ff8ec3db57334d4b6ea13be530feefdfaf06960c.tar.gz
image-live: Set syslinux timeout to 5s
Increased syslinux timeout to 5s as default 1s timeout is not enough to notice syslinux prompt on some devices. (From OE-Core rev: 165e153f81c5cbd9b7f2fe9a35405617cd94406d) Signed-off-by: Ed Bartosh <ed.bartosh@linux.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.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image-live.bbclass b/meta/classes/image-live.bbclass
index 7b770fb353..52b6de718a 100644
--- a/meta/classes/image-live.bbclass
+++ b/meta/classes/image-live.bbclass
@@ -3,7 +3,7 @@ AUTO_SYSLINUXCFG = "1"
3INITRD_IMAGE ?= "core-image-minimal-initramfs" 3INITRD_IMAGE ?= "core-image-minimal-initramfs"
4INITRD ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz" 4INITRD ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz"
5SYSLINUX_ROOT = "root=/dev/ram0" 5SYSLINUX_ROOT = "root=/dev/ram0"
6SYSLINUX_TIMEOUT ?= "10" 6SYSLINUX_TIMEOUT ?= "50"
7SYSLINUX_LABELS ?= "boot install" 7SYSLINUX_LABELS ?= "boot install"
8LABELS_append = " ${SYSLINUX_LABELS} " 8LABELS_append = " ${SYSLINUX_LABELS} "
9 9