:
# @(#)brc 5.3b of Jan 28, 1988
# Boot time rc file
#
PATH=/etc:/bin:/usr/bin
if [ -r /etc/TIMEZONE ]
	then . /etc/TIMEZONE
	else TZ=PDT8PST
fi
export PATH TZ
#
# Set system clock
if [ -c /dev/clock -a -r /dev/clock ] ; then
	echo "\nCurrent System Time is: \c"
	date -s
else
	echo
	asktime
fi
#
# make the /dev/ttyXX files to be sure they are correct
#
makettys
#
# Initialize mount table, this must be done after clock is set
#
echo 'root /' | setmnt
#
# check to see if they want to go singleuser
sulogin
