mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 19:08:58 +00:00
15 lines
221 B
Plaintext
15 lines
221 B
Plaintext
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
# If there is a global system configuration file, suck it in.
|
||
|
if [ -f /etc/rc.conf ]; then
|
||
|
. /etc/rc.conf
|
||
|
fi
|
||
|
|
||
|
# Setup DEVFS, ie permisisons, links etc.
|
||
|
|
||
|
echo -n 'Setting up DEVFS: '
|
||
|
ln -fs ttyv0 vga
|
||
|
|
||
|
echo '.'
|