From 2baeb917042983010cf6c1ec9923868dbf320709 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 26 Sep 2001 06:01:40 +0000 Subject: Run rc.devfs a little bit earlier. Many people like to use generic devices in rc.syscons, etc.. So rc.devfs needs to run before those rc files. Requested by: Jos Backus --- etc/rc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'etc/rc') diff --git a/etc/rc b/etc/rc index 11856b2..504954d 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. -- cgit v1.1