]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fs-lib: f2fs needs crc32 not crc32c
authorHarald Hoyer <harald@redhat.com>
Fri, 8 Jul 2016 08:01:52 +0000 (10:01 +0200)
committerHarald Hoyer <harald@redhat.com>
Fri, 8 Jul 2016 08:01:52 +0000 (10:01 +0200)
*sigh*

modules.d/99fs-lib/module-setup.sh

index 2c5f4c0e3039d2d9d8a91f79787918e3d4ee35cb..bd61838b3a998f4707ade8791e1ea5eeaa37941c 100755 (executable)
@@ -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
 }