X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=scripts%2Frc.sysinit;h=79de383b143b004e3312d94fb5953cda29a52fde;hb=07d48467c9c6dc0edab652c0994d0973240e7997;hp=1ecc8522de54a23dfd51a0a796c14b2fd09fa6d0;hpb=bda2fccd8c53c14d154db28729aaaf65f61b3f4f;p=startuptools diff --git a/scripts/rc.sysinit b/scripts/rc.sysinit index 1ecc852..79de383 100644 --- a/scripts/rc.sysinit +++ b/scripts/rc.sysinit @@ -39,11 +39,8 @@ mountpoint -q /dev/pts && mountpoint -q /dev/shm status_check -#status_begin mounting virtual filesystems -#mount /proc && -#mount /sys && -#mount /dev -#status_check +# bash seems to rely on this +ln -s /proc/self/fd /dev/fd # * set the host name status_begin Setting hostname @@ -71,10 +68,28 @@ status_begin remounting root filesystem rw mount -o remount,rw / status_check +# need to run depmod here, just in case +# it should be done at kernel install time, but this can avoid +# errors if that goes wrong or there are new or removed modules +status_begin running depmod +depmod +status_check + +# load any kernel modules +# there's probably a better way to do this +# this could also be done in the initial ram-disk, but +# this covers the case where there isn't one, but we still want +# to load more hardware +if ! is_true "$NOPROBEHW" ; then + status_begin "loading kernel modules" + modprobe $(lspci -k|grep 'Kernel modules:' | awk '{print $3}'| sort -u) + status_check +fi + # set up /dev if [ -x /sbin/mdev ] && ! is_true "$USE_UDEV" ; then - status_starting setting up mdev + status_begin setting up mdev echo > /dev/mdev.seq echo /sbin/mdev > /proc/sys/kernel/hotplug /sbin/mdev -s @@ -124,15 +139,14 @@ fi swapon -a - # mount any remaining filesystems status_begin mounting remaining filesystems -mount -a -t noproc,sysfs,devtmpfs,devpts +mount -a -t noproc,sysfs,devtmpfs,devpts,tmpfs status_check +# force mtab symlink rm -f /etc/mtab -mount -af -mount -f / +ln -s /proc/mounts /etc/mtab # * do any boot time /tmp cleanup or similar