blob: 870f02cd390a6bcd94970d2ddc9ded53cc07308b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- lfs-bootscripts-20090817/lfs/init.d/checkfs.orig 2009-10-02 21:54:45.000000000 +0000
+++ lfs-bootscripts-20090817/lfs/init.d/checkfs 2009-10-02 21:56:21.000000000 +0000
@@ -58,15 +58,15 @@
boot_mesg -n "/forcefsck found, forcing file" ${INFO}
boot_mesg " system checks as requested."
echo_ok
- options="-f"
+ options="-A -C -T"
else
- options=""
+ options="-a -A -C -T"
fi
boot_mesg "Checking file systems..."
# Note: -a option used to be -p; but this fails e.g.
# on fsck.minix
- fsck ${options} -a -A -C -T
+ fsck ${options}
error_value=${?}
if [ "${error_value}" = 0 ]; then
|