X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=scripts%2Frc.sysinit;h=46794a6c3cf4405a14e5475b44029ee5ebaa2125;hb=aa442d5cc6c7325cbe3422a5c6cd6ec71f832ecc;hp=40c33b0256240163cd7059eef518c44843b248df;hpb=05b7411b8c549890302661a6fff2172cd83c0105;p=startuptools diff --git a/scripts/rc.sysinit b/scripts/rc.sysinit index 40c33b0..46794a6 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 @@ -61,11 +58,24 @@ status_begin loading sysctl.conf sysctl -q -p status_check +# * 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 - status_starting setting up mdev +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 @@ -115,19 +125,9 @@ 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 -mount -a -t noproc,sysfs,devtmpfs,devpts +mount -a -t noproc,sysfs,devtmpfs,devpts,tmpfs status_check rm -f /etc/mtab