summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Calianu <adrian.calianu@enea.com>2018-06-21 17:38:03 +0200
committerAdrian Calianu <adrian.calianu@enea.com>2018-06-21 17:47:49 +0200
commit347f4cdbe1bf619393f7c2de01348c002de20e4c (patch)
treea74ceeccba2f64d8683c972d6df52f1d412deb03
parent3f2ddc605586a4cec5c98776aed963665276dda9 (diff)
downloadmeta-el-nfv-access-347f4cdbe1bf619393f7c2de01348c002de20e4c.tar.gz
fix missing console option in grub
take another aproach on setting the console options for syslinux and grub since GRUB_SERIAL is used only for graphical interface which is not on our interest. Signed-off-by: Adrian Calianu <adrian.calianu@enea.com>
-rw-r--r--images/enea-nfv-access-host-common.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/images/enea-nfv-access-host-common.inc b/images/enea-nfv-access-host-common.inc
index b4e8eff..926e56f 100644
--- a/images/enea-nfv-access-host-common.inc
+++ b/images/enea-nfv-access-host-common.inc
@@ -8,9 +8,10 @@ IMAGE_INSTALL += " \
8LABELS_LIVE = "live-boot installer" 8LABELS_LIVE = "live-boot installer"
9 9
10# Append default parameters for x86-64 targets and avoid duplicate serial configs 10# Append default parameters for x86-64 targets and avoid duplicate serial configs
11APPEND_x86-64 = "quiet" 11APPEND_x86-64 = "console=ttyS0,115200 console=tty0 quiet"
12GRUB_SERIAL_x86-64 = "console=ttyS0,115200 console=tty0" 12GRUB_SERIAL_x86-64 = ""
13SYSLINUX_SERIAL_TTY_x86-64 = "console=ttyS0,115200 console=tty0" 13SYSLINUX_DEFAULT_CONSOLE_x86-64 = ""
14SYSLINUX_SERIAL_TTY_x86-64 = ""
14 15
15# Set timeout values 16# Set timeout values
16GRUB_TIMEOUT_x86-64 = "10" 17GRUB_TIMEOUT_x86-64 = "10"