From 36747e7adac88e5181f3cc40e3e50118dc563680 Mon Sep 17 00:00:00 2001 From: Adrian Calianu Date: Tue, 19 Jun 2018 10:56:08 +0200 Subject: 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 Signed-off-by: Martin Borg --- images/enea-nfv-access-host-common.inc | 13 ++++++++----- 1 file 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 += " \ " # Set labels for GRUB and SYSLINUX -LABELS_LIVE="live-boot installer" +LABELS_LIVE = "live-boot installer" -# Append default parameters for x86-64 targets -APPEND_x86-64="console=ttyS0,115200 console=tty0 quiet" +# Append default parameters for x86-64 targets and avoid duplicate serial configs +APPEND_x86-64 = "quiet" +GRUB_SERIAL_x86-64 = "console=ttyS0,115200 console=tty0" +SYSLINUX_SERIAL_TTY_x86-64 = "console=ttyS0,115200 console=tty0" # Set timeout values -GRUB_TIMEOUT_x86-64="10" -SYSLINUX_TIMEOUT_x86-64="10" +GRUB_TIMEOUT_x86-64 = "10" +# 10 - 1sec +SYSLINUX_TIMEOUT_x86-64 = "50" -- cgit v1.2.3-54-g00ecf