From: Jóhann B. Guðmundsson Date: Wed, 12 May 2021 18:49:28 +0000 (+0000) Subject: fix: adding crc32c for ext3 X-Git-Tag: 054~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=61f456435879f084a1bf2c8885eaf37070035abf;p=thirdparty%2Fdracut.git fix: adding crc32c for ext3 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. --- diff --git a/modules.d/99fs-lib/module-setup.sh b/modules.d/99fs-lib/module-setup.sh index ec1a60630..efafa5383 100755 --- a/modules.d/99fs-lib/module-setup.sh +++ b/modules.d/99fs-lib/module-setup.sh @@ -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)