diff options
author | California Sullivan <california.l.sullivan@intel.com> | 2016-09-28 16:27:34 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-30 16:52:22 +0100 |
commit | a75b79a9e9d76db8f75af64c3792c7a1bbfd15b8 (patch) | |
tree | 9b49f6b57af6c6232db2c91b20f5a4e5fcb568dc /meta-yocto-bsp/conf/machine/genericx86-64.conf | |
parent | de34aab334d5258b62fb6180669e3b6d63cea818 (diff) | |
download | poky-a75b79a9e9d76db8f75af64c3792c7a1bbfd15b8.tar.gz |
genericx86-64.conf: Add SERIAL_CONSOLES_CHECK = "ttyS0"
Trying to start getty on a non-existent console will spew I/O errors
into auth.log on some hardware. Avoid this behavior by checking that
ttyS0 is a console that exists.
Fixes [YOCTO #10291].
(From meta-yocto rev: bb28e1211b9f2542c7edb627abd8aaae2cbe8df8)
Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp/conf/machine/genericx86-64.conf')
-rw-r--r-- | meta-yocto-bsp/conf/machine/genericx86-64.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-yocto-bsp/conf/machine/genericx86-64.conf b/meta-yocto-bsp/conf/machine/genericx86-64.conf index ceee247bac..d843fd2156 100644 --- a/meta-yocto-bsp/conf/machine/genericx86-64.conf +++ b/meta-yocto-bsp/conf/machine/genericx86-64.conf | |||
@@ -8,3 +8,5 @@ require conf/machine/include/tune-core2.inc | |||
8 | require conf/machine/include/genericx86-common.inc | 8 | require conf/machine/include/genericx86-common.inc |
9 | 9 | ||
10 | PREFERRED_VERSION_linux-yocto_genericx86-64 ?= "4.8%" | 10 | PREFERRED_VERSION_linux-yocto_genericx86-64 ?= "4.8%" |
11 | |||
12 | SERIAL_CONSOLES_CHECK = "ttyS0" | ||