diff options
author | Matthew McClintock <msm@freescale.com> | 2011-11-04 16:07:52 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-10 11:35:31 +0000 |
commit | a61b5e980d45df4dc2c83dd13996b0563fddf803 (patch) | |
tree | 6a233a97cfebad62336d56fa7192eef50f7a87f0 | |
parent | 5def790bdecd2726692b40a57bc12c8bdfea9179 (diff) | |
download | openembedded-core-a61b5e980d45df4dc2c83dd13996b0563fddf803.tar.gz openembedded-core-a61b5e980d45df4dc2c83dd13996b0563fddf803.tar.bz2 openembedded-core-a61b5e980d45df4dc2c83dd13996b0563fddf803.tar.xz openembedded-core-a61b5e980d45df4dc2c83dd13996b0563fddf803.zip |
Introduce new SERIAL_CONSOLES to add multiple consoles for your MACHINE
Just define additional serial consoles like so:
SERIAL_CONSOLES="115200;ttyS0 115200;ttyS1 ... 115200;ttySN"
Also be sure to remove SERIAL_CONSOLE (lacking the S) from your
machine as they can conflict.
Signed-off-by: Matthew McClintock <msm@freescale.com>
-rw-r--r-- | meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb index ba60c7441..3a716d7d7 100644 --- a/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit-inittab_2.88dsf.bb @@ -25,6 +25,16 @@ do_install() { if [ ! -z "${SERIAL_CONSOLE}" ]; then echo "S:2345:respawn:${base_sbindir}/getty ${SERIAL_CONSOLE}" >> ${D}${sysconfdir}/inittab fi + + idx=0 + tmp="${SERIAL_CONSOLES}" + for i in $tmp + do + j=`echo ${i} | sed s/\;/\ /g` + echo "${idx}:2345:respawn:${base_sbindir}/getty ${j}" >> ${D}${sysconfdir}/inittab + idx=`expr $idx + 1` + done + if [ "${USE_VT}" = "1" ]; then cat <<EOF >>${D}${sysconfdir}/inittab # ${base_sbindir}/getty invocations for the runlevels. |