summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-09-26 06:01:40 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-09-26 06:01:40 +0000
commit364f9ab989fc82d104dbbcd8f37c0245151e1304 (patch)
tree63689766ca5d6c2933452b680f94eb5c974fb5d9
parentb18013f8233121f221fb8e04631742cff761a4e5 (diff)
Notes
-rw-r--r--etc/rc12
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/rc b/etc/rc
index 11856b21e63f..504954d6dfdc 100644
--- a/etc/rc
+++ b/etc/rc
@@ -700,6 +700,12 @@ case ${update_motd} in
;;
esac
+# Run rc.devfs if readable to customize devfs
+#
+if [ -r /etc/rc.devfs ]; then
+ sh /etc/rc.devfs
+fi
+
# Configure implementation specific stuff
#
arch=`uname -m`
@@ -713,12 +719,6 @@ if [ -r /etc/rc.syscons ]; then
. /etc/rc.syscons
fi
-# Run rc.devfs if readable to customize devfs
-#
-if [ -r /etc/rc.devfs ]; then
- sh /etc/rc.devfs
-fi
-
echo -n 'Additional ABI support:'
# Load the SysV IPC API if requested.