diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-09-26 06:01:40 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-09-26 06:01:40 +0000 |
| commit | 364f9ab989fc82d104dbbcd8f37c0245151e1304 (patch) | |
| tree | 63689766ca5d6c2933452b680f94eb5c974fb5d9 | |
| parent | b18013f8233121f221fb8e04631742cff761a4e5 (diff) | |
Notes
| -rw-r--r-- | etc/rc | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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. |
