summarylogtreecommitdiffstats
path: root/autofsck_hook
diff options
context:
space:
mode:
Diffstat (limited to 'autofsck_hook')
-rw-r--r--autofsck_hook20
1 files changed, 20 insertions, 0 deletions
diff --git a/autofsck_hook b/autofsck_hook
new file mode 100644
index 000000000000..773c08844bc8
--- /dev/null
+++ b/autofsck_hook
@@ -0,0 +1,20 @@
+#!/usr/bin/ash
+
+run_hook () {
+ eval "$(busybox sed 's/fsck_device/orig_fsck_device/' init_functions)"
+ eval "fsck_device(){ auto_fsck_device \$1;}"
+}
+auto_fsck_device() {
+ orig_fsck_device $1;
+ RET=$?;
+ if [ -n "$fsckret" ] && [ "$fsckret" -ne 255 ]; then
+ if bitfield_has_bit "$fsckret" 4; then
+ fsck -a $1;
+ if [ "$?" == "0" ];then
+ return 0;
+ fi;
+ fi;
+ fi;
+ return $RET;
+}
+