diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-06-10 16:42:33 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:38:14 +0100 |
commit | 165e153f81c5cbd9b7f2fe9a35405617cd94406d (patch) | |
tree | 8a2a397891a24e034134cc0ce684cb24ea68a005 /meta/classes/image-live.bbclass | |
parent | 9c0db9cedc05e80f6ddef29ec3eaeaa1063e51c7 (diff) | |
download | openembedded-core-165e153f81c5cbd9b7f2fe9a35405617cd94406d.tar.gz openembedded-core-165e153f81c5cbd9b7f2fe9a35405617cd94406d.tar.bz2 openembedded-core-165e153f81c5cbd9b7f2fe9a35405617cd94406d.zip |
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.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'meta/classes/image-live.bbclass')
-rw-r--r-- | meta/classes/image-live.bbclass | 2 |
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" INITRD_IMAGE ?= "core-image-minimal-initramfs" INITRD ?= "${DEPLOY_DIR_IMAGE}/${INITRD_IMAGE}-${MACHINE}.cpio.gz" SYSLINUX_ROOT = "root=/dev/ram0" -SYSLINUX_TIMEOUT ?= "10" +SYSLINUX_TIMEOUT ?= "50" SYSLINUX_LABELS ?= "boot install" LABELS_append = " ${SYSLINUX_LABELS} " |