]> pd.if.org Git - startuptools/blobdiff - scripts/rc.sysinit
skip fsck at boot
[startuptools] / scripts / rc.sysinit
index 52ddc707001078181e17fef10b6cb8ee9926d971..150bf70273aade858a123f3e6e539dad8e202ee2 100644 (file)
@@ -27,7 +27,7 @@ mountpoint -q /proc    || mount -t proc proc /proc -o nosuid,noexec,nodev
 mountpoint -q /sys     || mount -t sysfs sys /sys -o nosuid,noexec,nodev
 mountpoint -q /var/run     || mount -t tmpfs run /var/run -o mode=0755,nosuid,nodev
 mountpoint -q /dev     || mount -t devtmpfs dev /dev -o mode=0755,nosuid
-mkdir -p /dev/{pts,shm}                                                                      
+mkdir /dev/pts /dev/shm
 mountpoint -q /dev/pts || mount -t devpts devpts /dev/pts -o mode=0620,gid=5,nosuid,noexec
 mountpoint -q /dev/shm || mount -t tmpfs shm /dev/shm -o mode=1777,nosuid,nodev
 # and make sure they all passed
@@ -109,10 +109,11 @@ swapon -a
 
 # * fsck and mount filesystems
 
-status_starting fsck of /
-mount -o remount,ro /
-fsck -AT
+#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