]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fix: adding crc32c for ext3
authorJóhann B. Guðmundsson <johannbg@gmail.com>
Wed, 12 May 2021 18:49:28 +0000 (18:49 +0000)
committerHarald Hoyer <harald@hoyer.xyz>
Fri, 14 May 2021 06:18:40 +0000 (08:18 +0200)
Noticed that ext3 is still being used in the wild so let's add it to the crc32c list
so downstream does not have to carry a patch for it.

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

index ec1a6063048a6a78eb819519835c9e92ebd68151..efafa5383f985bccf15dd976adb3b56a26c5f90c 100755 (executable)
@@ -37,7 +37,7 @@ echo_fs_helper() {
 include_fs_helper_modules() {
     local fs=$2
     case "$fs" in
-        xfs | btrfs | ext4)
+        xfs | btrfs | ext4 | ext3)
             instmods crc32c
             ;;
         f2fs)