From: Ben Gras Date: Tue, 4 Oct 2005 14:35:36 +0000 (+0000) Subject: Print fsck messages to explain delays X-Git-Tag: v3.1.2a~668 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch04.html?a=commitdiff_plain;h=5fd54a0d5300323eaa41afffc9614b9198cf753a;p=minix.git Print fsck messages to explain delays --- diff --git a/etc/rc b/etc/rc index 13b1767da..e619258c8 100755 --- a/etc/rc +++ b/etc/rc @@ -129,10 +129,13 @@ Mount $usr /usr failed -- Single user." if [ "$fflag" ] then umount $usr + echo "fsck / - $root" intr fsck -r $root + echo "fsck /usr - $usr" intr fsck -r $usr if [ ! -z "$home" ] - then intr fsck -r $home + then echo "fsck /home - $home" + intr fsck -r $home fi mount $usr /usr fi