321704296f
case instead of test where appropriate, since case allows case is a sh builtin and (as a side-effect) allows case-insensitivity. Changes discussed on freebsd-hackers. Submitted by: Doug Barton <Doug@gorean.org>
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
#
|
|
# $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
|