]> pd.if.org Git - startuptools/blobdiff - scripts/rc.sysinit
run depmod in rc.sysinit
[startuptools] / scripts / rc.sysinit
index 0751a6ee1a51411f871c570abecc94b345280a8f..3fc5fbd00681b88e73350ace8902dbcd6845cb41 100644 (file)
@@ -61,16 +61,33 @@ status_begin loading sysctl.conf
 sysctl -q -p
 status_check
 
-# * set up /dev
+# * fsck and mount filesystems
+
+#status_starting fsck of /
+#mount -o remount,ro /
+#fsck -A -T
+# TODO actually check the return value
+status_begin remounting root filesystem rw
+mount -o remount,rw /
+status_check
+
+status_begin running depmod
+depmod
+status_check
+
+# set up /dev
 
-if [ -x /sbin/mdev ] && [ ! is_true "$USE_UDEVD" ]; then
+if [ -x /sbin/mdev ] && ! is_true "$USE_UDEV" ; then
+       status_begin setting up mdev
+       echo > /dev/mdev.seq
        echo /sbin/mdev > /proc/sys/kernel/hotplug
+       /sbin/mdev -s
+       status_check
 elif [ -x /sbin/udevd ]; then
        ##
        ## begin voodoo scripting from lfs-initscripts
        ##
 
-
        # udev will handle hotplugs
        echo > /proc/sys/kernel/hotplug
 
@@ -111,15 +128,6 @@ fi
 
 swapon -a
 
-# * fsck and mount filesystems
-
-#status_starting fsck of /
-#mount -o remount,ro /
-#fsck -A -T
-# TODO actually check the return value
-status_begin remounting root filesystem rw
-mount -o remount,rw /
-status_check
 
 # mount any remaining filesystems
 status_begin mounting remaining filesystems