Deleted Added
full compact
rc (44818) rc (45096)
1#!/bin/sh
1#!/bin/sh
2# $Id: rc,v 1.182 1999/03/14 20:26:39 des Exp $
2# $Id: rc,v 1.183 1999/03/17 04:00:04 billf Exp $
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10# Note that almost all the user-configurable behavior is no longer in

--- 134 unchanged lines hidden (view full) ---

145fi
146
147# Add additional swapfile, if configured.
148if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
149 echo "Adding $swapfile as additional swap."
150 vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
151fi
152
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10# Note that almost all the user-configurable behavior is no longer in

--- 134 unchanged lines hidden (view full) ---

145fi
146
147# Add additional swapfile, if configured.
148if [ "x$swapfile" != "xNO" -a -w "$swapfile" -a -b /dev/vn0b ]; then
149 echo "Adding $swapfile as additional swap."
150 vnconfig /dev/vn0b $swapfile && swapon /dev/vn0b
151fi
152
153# set sysctl variables early as we can
154if [ -f /etc/rc.sysctl ]; then
155 . /etc/rc.sysctl
156fi
157
153# configure serial devices
154if [ -f /etc/rc.serial ]; then
155 . /etc/rc.serial
156fi
157
158# start up PC-card configuration
159if [ -f /etc/rc.pccard ]; then
160 . /etc/rc.pccard

--- 274 unchanged lines hidden ---
158# configure serial devices
159if [ -f /etc/rc.serial ]; then
160 . /etc/rc.serial
161fi
162
163# start up PC-card configuration
164if [ -f /etc/rc.pccard ]; then
165 . /etc/rc.pccard

--- 274 unchanged lines hidden ---