blob: 1e75faef1c5471f236635830f443663419fc6fce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# $FreeBSD$
#
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi
# Setup DEVFS, ie permisisons, links etc.
#
ln -fs /dev/ttyv0 /dev/vga
|