home *** CD-ROM | disk | FTP | other *** search
- # /etc/rc.S
- #
- # These commands are executed at boot time by init(8).
- # User customization should go in /etc/rc.local.
-
- PATH=/sbin:/usr/sbin:/bin:/usr/bin
-
- # enable swapping
- /sbin/swapon -a
-
- # Start update.
- /sbin/update &
-
- # remove /etc/mtab* so that mount will create it with a root entry
- /bin/rm -f /etc/mtab* /etc/nologin /etc/utmp
-
- # Looks like we have to create this.
- cat /dev/null >> /etc/utmp
-
- # mount file systems in fstab (and create an entry for /)
- # but not NFS because TCP/IP is not yet configured
- /sbin/mount -avt nonfs
-
- # Configure the system clock. See /usr/doc/ktzset. Replaces /sbin/clock -s
- if [ -x /sbin/kern_tzset ]; then
- /sbin/kern_tzset -u
- fi
-
-