summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Calianu <adrian.calianu@enea.com>2018-06-19 10:56:08 +0200
committerMartin Borg <martin.borg@enea.com>2018-06-19 16:09:23 +0200
commit36747e7adac88e5181f3cc40e3e50118dc563680 (patch)
treea8cc3c5285434f8f50c8e2515e8b9263cafcfdd9
parent5cc0ee005ce8caec976e3c0a7c90b11306b4f2ce (diff)
downloadmeta-el-nfv-access-36747e7adac88e5181f3cc40e3e50118dc563680.tar.gz
nfv-access-host-common: set default console options
Some options were inherited from syslinux and grub-efi bbclass and we ended up with duplicates. Issue fixed! Increased timeout on syslinux boot menu to 5sec. Signed-off-by: Adrian Calianu <adrian.calianu@enea.com> Signed-off-by: Martin Borg <martin.borg@enea.com>
-rw-r--r--images/enea-nfv-access-host-common.inc13
1 files changed, 8 insertions, 5 deletions
diff --git a/images/enea-nfv-access-host-common.inc b/images/enea-nfv-access-host-common.inc
index 10bf5dc..b4e8eff 100644
--- a/images/enea-nfv-access-host-common.inc
+++ b/images/enea-nfv-access-host-common.inc
@@ -5,11 +5,14 @@ IMAGE_INSTALL += " \
5 " 5 "
6 6
7# Set labels for GRUB and SYSLINUX 7# Set labels for GRUB and SYSLINUX
8LABELS_LIVE="live-boot installer" 8LABELS_LIVE = "live-boot installer"
9 9
10# Append default parameters for x86-64 targets 10# Append default parameters for x86-64 targets and avoid duplicate serial configs
11APPEND_x86-64="console=ttyS0,115200 console=tty0 quiet" 11APPEND_x86-64 = "quiet"
12GRUB_SERIAL_x86-64 = "console=ttyS0,115200 console=tty0"
13SYSLINUX_SERIAL_TTY_x86-64 = "console=ttyS0,115200 console=tty0"
12 14
13# Set timeout values 15# Set timeout values
14GRUB_TIMEOUT_x86-64="10" 16GRUB_TIMEOUT_x86-64 = "10"
15SYSLINUX_TIMEOUT_x86-64="10" 17# 10 - 1sec
18SYSLINUX_TIMEOUT_x86-64 = "50"