]> pd.if.org Git - startuptools/blobdiff - scripts/rc.sysinit
mdev in /sbin
[startuptools] / scripts / rc.sysinit
index 29679512ebd2f88352a811a2da92c014e33d956b..0751a6ee1a51411f871c570abecc94b345280a8f 100644 (file)
@@ -63,13 +63,14 @@ status_check
 
 # * set up /dev
 
-if [ -x /bin/mdev ] && [ ! is_true "$USE_UDEVD" ]; then
-       echo /bin/mdev > /proc/sys/kernel/hotplug
-elif [ -x /lib/udev/udevd ]; then
+if [ -x /sbin/mdev ] && [ ! is_true "$USE_UDEVD" ]; then
+       echo /sbin/mdev > /proc/sys/kernel/hotplug
+elif [ -x /sbin/udevd ]; then
        ##
        ## begin voodoo scripting from lfs-initscripts
        ##
 
+
        # udev will handle hotplugs
        echo > /proc/sys/kernel/hotplug
 
@@ -77,7 +78,7 @@ elif [ -x /lib/udev/udevd ]; then
        # this should probably be moved to inittab or started via
        # something that could monitor it
        status_starting udevd daemon
-       /lib/udev/udevd --daemon
+       /sbin/udevd --daemon
        status_check
 
        # Now traverse /sys in order to "coldplug" devices that have
@@ -96,14 +97,11 @@ elif [ -x /lib/udev/udevd ]; then
        status_begin 'waiting for udevadm to settle'
        udevadm settle
        status_check
-       #      fi
+       # fi
 
        # If any LVM based partitions are on the system, ensure they
        # are activated so they can be used.
        #      if [ -x /sbin/vgchange ]; then /sbin/vgchange -a y >/dev/null; fi 
-
-       #      log_success_msg2 
-
        ##
        ## end voodoo scripting
        ##