# This file performs various system initializations.

# Initialize files.
>/etc/mtab				# create file to log mounts
>/etc/utmp				# /etc/utmp keeps track of logins

# Mount the floppy disk.
# /bin/getlf "Please insert /usr diskette in drive 0.  Then hit RETURN."
# /etc/mount /dev/dd0 /usr		# mount the floppy disk
/etc/mount /dev/hd4 /usr		# mount the hard disk partition 4

# More initialization (cannot be done until /usr is mounted).
>/usr/adm/wtmp				# accounting information
/usr/bin/printroot >>/etc/mtab		# /etc/mtab keeps track of mounts

# Try to read the hardware real-time clock, if there is one, to set the date
# /usr/bin/date -q

# Initialize the first RS232 line to 1200 baud.
/usr/bin/stty 1200 </dev/tty1

#Display the message of the day and start update.
cat /etc/message
/etc/update  &
