From 61f456435879f084a1bf2c8885eaf37070035abf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B3hann=20B=2E=20Gu=C3=B0mundsson?= Date: Wed, 12 May 2021 18:49:28 +0000 Subject: [PATCH] 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. --- modules.d/99fs-lib/module-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.d/99fs-lib/module-setup.sh b/modules.d/99fs-lib/module-setup.sh index ec1a606304..efafa5383f 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)