diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-04-24 15:33:18 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-02 17:41:54 +0100 |
| commit | b4aa6d3886977e660e5391b0f2e0484928d5baaf (patch) | |
| tree | 4247c2a653432d1131fb67d7a84129ec280abe21 | |
| parent | 2c5dbc9291b4c77457a5f7d5ea96f586acf7f902 (diff) | |
| download | poky-b4aa6d3886977e660e5391b0f2e0484928d5baaf.tar.gz | |
sysvinit-inittab: ensure unique label for SERIAL_CONSOLES entries
The label field in /etc/inittab entries needs to be unique, and the
numeric label being used for the SERIAL_CONSOLES getty entries was
clashing with the entries added for standard ttyX entries added via
SYSVINIT_ENABLED_GETTYS. Use the part after "tty" in the device name
(which is what the comment further down explicitly says should be done)
as the label rather than a simple incrementing number.
Fixes [YOCTO #4374].
(From OE-Core rev: 28d3202befcec72554885f8ea9cb7985523b89f5)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb index b28985314f..fbac8937fe 100644 --- a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | |||
| @@ -21,14 +21,12 @@ do_install() { | |||
| 21 | echo "S:2345:respawn:${base_sbindir}/getty ${SERIAL_CONSOLE}" >> ${D}${sysconfdir}/inittab | 21 | echo "S:2345:respawn:${base_sbindir}/getty ${SERIAL_CONSOLE}" >> ${D}${sysconfdir}/inittab |
| 22 | fi | 22 | fi |
| 23 | 23 | ||
| 24 | idx=0 | ||
| 25 | tmp="${SERIAL_CONSOLES}" | 24 | tmp="${SERIAL_CONSOLES}" |
| 26 | for i in $tmp | 25 | for i in $tmp |
| 27 | do | 26 | do |
| 28 | j=`echo ${i} | sed s/\;/\ /g` | 27 | j=`echo ${i} | sed s/\;/\ /g` |
| 29 | echo "${idx}:12345:respawn:${base_sbindir}/getty ${j}" >> ${D}${sysconfdir}/inittab | 28 | label=`echo ${i} | sed -e 's/^.*;tty//'` |
| 30 | 29 | echo "$label:12345:respawn:${base_sbindir}/getty ${j}" >> ${D}${sysconfdir}/inittab | |
| 31 | idx=`expr $idx + 1` | ||
| 32 | done | 30 | done |
| 33 | 31 | ||
| 34 | if [ "${USE_VT}" = "1" ]; then | 32 | if [ "${USE_VT}" = "1" ]; then |
