diff options
Diffstat (limited to 'etc/rc.devfs')
-rw-r--r-- | etc/rc.devfs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/etc/rc.devfs b/etc/rc.devfs index 339cbdb..1e75fae 100644 --- a/etc/rc.devfs +++ b/etc/rc.devfs @@ -2,12 +2,13 @@ # $FreeBSD$ # # If there is a global system configuration file, suck it in. -if [ -f /etc/defaults/rc.conf ]; then +# +if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf -elif [ -f /etc/rc.conf ]; then +elif [ -r /etc/rc.conf ]; then . /etc/rc.conf fi # Setup DEVFS, ie permisisons, links etc. - +# ln -fs /dev/ttyv0 /dev/vga |