diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-12-09 15:43:03 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-13 22:55:20 +0000 |
commit | 934afbbf90ed07aafdf62bfc01129442b77f4ca8 (patch) | |
tree | 0cee66eb5a49c39a768ecf6ea5db28f4a3933ee8 /meta/conf/machine/qemuarm.conf | |
parent | 113828ff861f4c2767d7265e88e432f427bba2cc (diff) | |
download | poky-934afbbf90ed07aafdf62bfc01129442b77f4ca8.tar.gz |
Use weak assignment for SERIAL_CONSOLES in qemu configuration files
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.
(From OE-Core rev: 5f060b66162c41a295995947b918253450870117)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/qemuarm.conf')
-rw-r--r-- | meta/conf/machine/qemuarm.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemuarm.conf b/meta/conf/machine/qemuarm.conf index 17402ef3b3..f9d6dd7e36 100644 --- a/meta/conf/machine/qemuarm.conf +++ b/meta/conf/machine/qemuarm.conf | |||
@@ -8,7 +8,7 @@ require conf/machine/include/tune-arm926ejs.inc | |||
8 | 8 | ||
9 | KERNEL_IMAGETYPE = "zImage" | 9 | KERNEL_IMAGETYPE = "zImage" |
10 | 10 | ||
11 | SERIAL_CONSOLES = "115200;ttyAMA0 115200;ttyAMA1" | 11 | SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;ttyAMA1" |
12 | 12 | ||
13 | # For runqemu | 13 | # For runqemu |
14 | QB_SYSTEM_NAME = "qemu-system-arm" | 14 | QB_SYSTEM_NAME = "qemu-system-arm" |