X-Git-Url: https://pd.if.org/git/?p=startuptools;a=blobdiff_plain;f=scripts%2Frc.sysinit;h=3a0e37944692941943afd8528a0755c580a022de;hp=29679512ebd2f88352a811a2da92c014e33d956b;hb=5e333b986783db3950cf5b72736721da243191b5;hpb=050cb10bd5f4f2460b17ba11f22c9fed0bdea56c diff --git a/scripts/rc.sysinit b/scripts/rc.sysinit index 2967951..3a0e379 100644 --- a/scripts/rc.sysinit +++ b/scripts/rc.sysinit @@ -65,11 +65,12 @@ status_check if [ -x /bin/mdev ] && [ ! is_true "$USE_UDEVD" ]; then echo /bin/mdev > /proc/sys/kernel/hotplug -elif [ -x /lib/udev/udevd ]; then +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 @@ -101,9 +102,6 @@ elif [ -x /lib/udev/udevd ]; then # 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 ##