diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-27 09:16:54 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-08-27 09:16:54 +0000 |
commit | 49d65e70587712d6bef237c6d5b15aa86597465b (patch) | |
tree | 6e6c5a1580f6551946ad34b5ca48fa94d31779dd /package/e2fsprogs/files | |
parent | 8c720dfa92fbc58ebad44bc07e8c2faf64374724 (diff) |
[package] update e2fsprogs to 1.41.9, add support for ext4 (#5748)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17427 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/e2fsprogs/files')
-rw-r--r-- | package/e2fsprogs/files/e2fsck.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/e2fsprogs/files/e2fsck.init b/package/e2fsprogs/files/e2fsck.init index e66750c91..4fa231296 100644 --- a/package/e2fsprogs/files/e2fsck.init +++ b/package/e2fsprogs/files/e2fsck.init @@ -13,7 +13,7 @@ e2fsck() { config_get fstype "$cfg" fstype case "$fstype" in - ext2|ext3) + ext2|ext3|ext4) /usr/sbin/e2fsck -p "$device" local status="$?" case "$status" in |