Re: [OE-core] [PATCH] Introduce new SERIAL_CONSOLES to add multiple consoles for your MACHINE

2011-11-04 Thread Phil Blundell
On Fri, 2011-11-04 at 16:07 -0500, Matthew McClintock wrote: > +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`

[OE-core] [PATCH] Introduce new SERIAL_CONSOLES to add multiple consoles for your MACHINE

2011-11-04 Thread Matthew McClintock
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 --- .../sysvinit/sysvinit-inittab_2.88dsf.bb |