#!/bin/bash # if grep -sq ttymxc5 /proc/cmdline; then /sbin/getty -L ttymxc5 115200 vt100 elif grep -sq ttymxc1 /proc/cmdline; then /sbin/getty -L ttymxc1 115200 vt100 elif grep -sq ttymxc6 /proc/cmdline; then /sbin/getty -L ttymxc6 115200 vt100 elif grep -sq ttymxc2 /proc/cmdline; then /sbin/getty -L ttymxc2 115200 vt100 elif grep -sq ttyLP5 /proc/cmdline; then /sbin/getty -L ttyLP5 115200 vt100 elif grep -sq ttyLP1 /proc/cmdline; then /sbin/getty -L ttyLP1 115200 vt100 elif grep -sq ttyLP6 /proc/cmdline; then /sbin/getty -L ttyLP6 115200 vt100 elif grep -sq ttyLP2 /proc/cmdline; then /sbin/getty -L ttyLP2 115200 vt100 else sleep 100000 fi