fs-lib: f2fs needs crc32 not crc32c

*sigh*
master
Harald Hoyer 2016-07-08 10:01:52 +02:00
parent 5d4aaaa2a3
commit 34a42f9f49
1 changed files with 4 additions and 1 deletions

View File

@ -41,9 +41,12 @@ echo_fs_helper() {
include_fs_helper_modules() {
local dev=$1 fs=$2
case "$fs" in
xfs|btrfs|f2fs)
xfs|btrfs)
instmods crc32c
;;
f2fs)
instmods crc32
;;
esac
}