freebsd-dev/etc/rc.devfs
Søren Schmidt c77c6e0cbb Make /dev/vga a softlink to /dev/ttyv0 under DEVFS using /etc/rc.devfs
Remove the hack from syscons that added a /dev/vga node in DEVFS
it broke root acces on ttyv0 because dev_mkdb screwed up.
1998-09-14 09:14:46 +00:00

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 '.'