diff options
-rwxr-xr-x | rc.d/rc.sysinit | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index e76e8f5d..5a1c80ce 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -10,6 +10,9 @@ if [ -z "$IN_INITLOG" ]; then [ -f /sbin/initlog ] && exec /sbin/initlog $INITLOG_ARGS -r /etc/rc.d/rc.sysinit fi +# If we're using devfs, start devfsd now - we need the old device names +[ -e /dev/.devfsd -a -x /sbin/devfsd ] && /sbin/devfsd + # Set the path PATH=/bin:/sbin:/usr/bin:/usr/sbin export PATH |