rc_mxc.S 658 Bytes
#!/bin/bash
#
if grep -sq ttymxc0 /proc/cmdline; then
	/sbin/getty -L ttymxc0 115200 vt100
elif grep -sq ttymxc1 /proc/cmdline; then
	/sbin/getty -L ttymxc1 115200 vt100
elif grep -sq ttymxc3 /proc/cmdline; then
	/sbin/getty -L ttymxc3 115200 vt100
elif grep -sq ttymxc4 /proc/cmdline; then
	/sbin/getty -L ttymxc4 115200 vt100
elif grep -sq ttyLP0 /proc/cmdline; then
	/sbin/getty -L ttyLP0 115200 vt100
elif grep -sq ttyLP1 /proc/cmdline; then
	/sbin/getty -L ttyLP1 115200 vt100
elif grep -sq ttyLP2 /proc/cmdline; then
	/sbin/getty -L ttyLP2 115200 vt100
elif grep -sq ttyLP3 /proc/cmdline; then
	/sbin/getty -L ttyLP3 115200 vt100
else
	sleep 100000
fi