diff options
author | Adrian Calianu <adrian.calianu@enea.com> | 2018-06-19 10:56:08 +0200 |
---|---|---|
committer | Martin Borg <martin.borg@enea.com> | 2018-06-19 16:09:23 +0200 |
commit | 36747e7adac88e5181f3cc40e3e50118dc563680 (patch) | |
tree | a8cc3c5285434f8f50c8e2515e8b9263cafcfdd9 /images | |
parent | 5cc0ee005ce8caec976e3c0a7c90b11306b4f2ce (diff) | |
download | meta-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>
Diffstat (limited to 'images')
-rw-r--r-- | images/enea-nfv-access-host-common.inc | 13 |
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 |
8 | LABELS_LIVE="live-boot installer" | 8 | LABELS_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 |
11 | APPEND_x86-64="console=ttyS0,115200 console=tty0 quiet" | 11 | APPEND_x86-64 = "quiet" |
12 | GRUB_SERIAL_x86-64 = "console=ttyS0,115200 console=tty0" | ||
13 | SYSLINUX_SERIAL_TTY_x86-64 = "console=ttyS0,115200 console=tty0" | ||
12 | 14 | ||
13 | # Set timeout values | 15 | # Set timeout values |
14 | GRUB_TIMEOUT_x86-64="10" | 16 | GRUB_TIMEOUT_x86-64 = "10" |
15 | SYSLINUX_TIMEOUT_x86-64="10" | 17 | # 10 - 1sec |
18 | SYSLINUX_TIMEOUT_x86-64 = "50" | ||