#!	/bin/sh
# /etc/rc.serial 
#	Initializes the serial ports on your system
#
# Distributed with setserial version 2.10
#

# This version of the configuration file is only suitable for
# the m680x0 series of machines. In these cases, the configuration
# process is unnecessary, but it may still be useful to output
# information about the serial configuration
#    Gordon Russell <g.russell@dcs.napier.ac.uk>
#
SETSERIAL=/bin/setserial

# if the setserial executable is unavailable then abort the configuration
[ -x ${SETSERIAL} ] || exit 0

insmod -k serial 2>/dev/null

rtn=`${SETSERIAL} -bg /dev/ttyS* >/dev/null 2>&1`
if [ $? -gt 0 ]
then
  echo "Aborting serial port reporting. Check the serial modules..."
  exit 1
fi

${SETSERIAL} -bg /dev/ttyS? /dev/ttyS?? 2>/dev/null
#
