aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJóhann B. Guðmundsson <johannbg@gmail.com>2021-05-12 18:49:28 +0000
committerHarald Hoyer <harald@hoyer.xyz>2021-05-14 08:18:40 +0200
commit61f456435879f084a1bf2c8885eaf37070035abf (patch)
treec9d645bd8192d17414e49a0d546781fa24ecd616
parent805686930bc2d97e0ffb0a70376ba40216a701a5 (diff)
downloaddracut-61f456435879f084a1bf2c8885eaf37070035abf.tar.gz
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.
-rwxr-xr-xmodules.d/99fs-lib/module-setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules.d/99fs-lib/module-setup.sh b/modules.d/99fs-lib/module-setup.sh
index ec1a6063..efafa538 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)