diff options
author | dougb <dougb@FreeBSD.org> | 2002-12-15 21:56:53 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2002-12-15 21:56:53 +0000 |
commit | f09a89b5d02d75125bbbf8793285d691561eae60 (patch) | |
tree | e7e9c450d7cd555d0b0a430234cb1d66b7858393 /etc/rc.d/devfs | |
parent | fe836ef10b498f3d4f88f99294fabc23754ab119 (diff) | |
download | FreeBSD-src-f09a89b5d02d75125bbbf8793285d691561eae60.zip FreeBSD-src-f09a89b5d02d75125bbbf8793285d691561eae60.tar.gz |
Bring in the settings from /etc/rc.devfs, which include the vga symlink
that's being replaced here. This is what /etc/rc does now.
There is no NetBSD devfs, so there is no compatibility issue.
Not objected to by: FreeBSD-rc@yahoogroups.com
Approved by: re (murray)
Diffstat (limited to 'etc/rc.d/devfs')
-rw-r--r-- | etc/rc.d/devfs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/rc.d/devfs b/etc/rc.d/devfs index 90a80c3..e8fae94 100644 --- a/etc/rc.d/devfs +++ b/etc/rc.d/devfs @@ -15,5 +15,6 @@ load_rc_config $name # Setup DEVFS, ie permissions, links etc. # -ln -fs /dev/ttyv0 /dev/vga - +if [ -r /etc/rc.devfs ]; then + sh /etc/rc.devfs +fi |