2009-01-31 12:55:55 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
|
|
# Vasilis Tsiligiannis <acinonyxs@yahoo.gr>
|
|
|
|
|
|
|
|
START=15
|
|
|
|
|
|
|
|
e2fsck() {
|
|
|
|
local args
|
|
|
|
local cfg="$1"
|
|
|
|
|
|
|
|
config_get device "$cfg" device
|
|
|
|
[ -b "$device" ] || return 0
|
|
|
|
|
|
|
|
config_get fstype "$cfg" fstype
|
|
|
|
case "$fstype" in
|
2009-08-27 09:16:54 +00:00
|
|
|
ext2|ext3|ext4)
|
2009-01-31 12:55:55 +00:00
|
|
|
/usr/sbin/e2fsck -p "$device"
|
|
|
|
local status="$?"
|
|
|
|
case "$status" in
|
|
|
|
0|1) continue;;
|
|
|
|
2) reboot;;
|
|
|
|
4) echo "e2fsck ($device): Warning! Uncorrected errors.";;
|
|
|
|
*) echo "e2fsck ($device): Error $status. Check not complete.";;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
config_load fstab
|
|
|
|
config_foreach e2fsck mount
|
|
|
|
}
|
|
|
|
|