diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-11-12 08:33:25 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-20 14:08:10 +0000 |
commit | 3a3e5abe45318f95cd8ee1a946082f686e48aaf0 (patch) | |
tree | e13d6796f8a22fc5e7354ea3dd407d74bd134df8 /meta/recipes-core | |
parent | 7bc2e2a3120356538bcd5c6f0e5579726d7c657d (diff) | |
download | poky-3a3e5abe45318f95cd8ee1a946082f686e48aaf0.tar.gz |
sysvinit-inittab: Disable the carrier detect requirement for serial consoles
This aligns the params of getty with the ones used in Debian. From the
getty(8) manpage:
,----[ getty(8) manpage ]
| -L, --local-line
|
| Force the line to be a local line with no need for carrier
| detect. This can be useful when you have a locally attached
| terminal where the serial line does not set the carrier detect
| signal.
`----
Reported-by: Craig McQueen <craig.mcqueen@beamcommunications.com>
(From OE-Core rev: a899c362be71cb7b94bd318c57702446b017005c)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Tested-by: Craig McQueen <craig.mcqueen@beamcommunications.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb index c3244b4602..657ef02204 100644 --- a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | |||
@@ -23,7 +23,7 @@ do_install() { | |||
23 | do | 23 | do |
24 | j=`echo ${i} | sed s/\;/\ /g` | 24 | j=`echo ${i} | sed s/\;/\ /g` |
25 | label=`echo ${i} | sed -e 's/^.*;tty//' -e 's/;.*//'` | 25 | label=`echo ${i} | sed -e 's/^.*;tty//' -e 's/;.*//'` |
26 | echo "$label:12345:respawn:${base_sbindir}/getty ${j}" >> ${D}${sysconfdir}/inittab | 26 | echo "$label:12345:respawn:${base_sbindir}/getty -L ${j}" >> ${D}${sysconfdir}/inittab |
27 | done | 27 | done |
28 | 28 | ||
29 | if [ "${USE_VT}" = "1" ]; then | 29 | if [ "${USE_VT}" = "1" ]; then |