]> pd.if.org Git - startuptools/commitdiff
use /sbin/udevd in rc.sysinit
authorNathan Wagner <nw@hydaspes.if.org>
Mon, 31 Mar 2014 04:37:17 +0000 (04:37 +0000)
committerNathan Wagner <nw@hydaspes.if.org>
Mon, 31 Mar 2014 04:37:17 +0000 (04:37 +0000)
Makefile
scripts/rc.sysinit

index 4f129b9168685159c58bae714ca68d7a8929720a..acf459c2b079c06364735dbce67e3984d88ab25e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -19,6 +19,7 @@ install-scripts:
         install -m755 $(addprefix scripts/,ifup ifdown) $(DESTDIR)/sbin
         install -d -m755 $(DESTDIR)/etc/networks
         install -m755 scripts/localhost.net $(DESTDIR)/etc/networks/localhost
+        install -D -m644 scripts/example.rc $(DESTDIR)/usr/share/startuptools/example.rc
 
 tarball:
        rm startuptools.tar.gz ; cd ..; tar -czf startuptools.tar.gz startuptools; mv startuptools.tar.gz startuptools
index 29679512ebd2f88352a811a2da92c014e33d956b..3a0e37944692941943afd8528a0755c580a022de 100644 (file)
@@ -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
        ##