aboutsummaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/qemux86.conf
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2016-12-09 15:26:35 +0800
committerChen Qi <Qi.Chen@windriver.com>2016-12-12 15:53:24 +0800
commit6b254888c7957511d48b80dabb295108e8244fdd (patch)
treeb21eafb48934d235517a97c100e521b8f041764c /meta/conf/machine/qemux86.conf
parentad00a31fbe93e073a2d83616efcd08c5a7ef37c9 (diff)
downloadopenembedded-core-contrib-ChenQi/qemu-console.tar.gz
Use weak assignment for SERIAL_CONSOLES in qemu configuration filesChenQi/qemu-console
Use weak assignment for SERIAL_CONSOLES in qemu configuration files so that the value could serve as a default value and could be easily overridden in configuration files like local.conf. When using the default value for SERIAL_CONSOLES in qemux86-64,we would have annoying messages on console complaining about respawning getty on ttyS1. Although the value is set by purpose, at least we need to provide an easy way to override it. Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Diffstat (limited to 'meta/conf/machine/qemux86.conf')
-rw-r--r--meta/conf/machine/qemux86.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemux86.conf b/meta/conf/machine/qemux86.conf
index 77859994c9..8997f6ba70 100644
--- a/meta/conf/machine/qemux86.conf
+++ b/meta/conf/machine/qemux86.conf
@@ -13,7 +13,7 @@ require conf/machine/include/qemuboot-x86.inc
KERNEL_IMAGETYPE = "bzImage"
-SERIAL_CONSOLES = "115200;ttyS0 115200;ttyS1"
+SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1"
XSERVER = "xserver-xorg \
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-swrast xserver-xorg-extension-glx', '', d)} \