diff options
author | Muhammad Shakeel <muhammad_shakeel@mentor.com> | 2013-10-07 15:05:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-14 16:55:24 +0100 |
commit | 3e01f9574a62d8707397857d8f95ff40a307d12f (patch) | |
tree | d143b1fdd337d5bccdd703e519bd33419076ce23 /meta | |
parent | 0f431a3123c399ef0b3ddae5aa85c701bdd0a32a (diff) | |
download | poky-3e01f9574a62d8707397857d8f95ff40a307d12f.tar.gz |
sysvinit-inittab: Fix getting tty device name from SERIAL_CONSOLES entries
Currently the part after "tty" in the device name go into label along with
everything after that part. For example if SERIAL_CONSOLES="115200;vt100;ttyS0"
than label=S0 but if SERIAL_CONSOLES="115200;ttyS0;vt100" than label=S0;vt100.
If SERIAL_CONSOLES="..;ttyX;..", part after 'X' should also be trimmed.
(From OE-Core rev: b00b9ae5693e04cacd0843c12a529e7f3dc501ed)
Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 23c284d131..05ba410441 100644 --- a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | |||
@@ -22,7 +22,7 @@ do_install() { | |||
22 | for i in $tmp | 22 | for i in $tmp |
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//'` | 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 ${j}" >> ${D}${sysconfdir}/inittab |
27 | done | 27 | done |
28 | 28 | ||