summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2016-11-20 17:32:18 +0100
committerDave Reisner <dreisner@archlinux.org>2016-11-20 17:42:01 +0100
commit46cdc8b9e9246b08cc60988d27097e247e7d9eb8 (patch)
tree28c7bf1708867e1f30dabd60eafbdb9d0744fc14
parentdd0dc1b6c6d6b02e4e1613b62e373efa79d1562e (diff)
downloadmkinitcpio-46cdc8b9e9246b08cc60988d27097e247e7d9eb8.tar.gz
mkinitcpio-46cdc8b9e9246b08cc60988d27097e247e7d9eb8.tar.xz
functions: f2fs softdeps on crc32, not libcrc32c
This really ought to be fixed in the module, but here we are again guessing at module requirements. ref: https://bugs.archlinux.org/task/49380
-rw-r--r--functions5
1 files changed, 4 insertions, 1 deletions
diff --git a/functions b/functions
index 14235b2..756b968 100644
--- a/functions
+++ b/functions
@@ -409,9 +409,12 @@ add_module() {
ocfs2)
add_module "configfs?"
;;
- btrfs|f2fs)
+ btrfs)
add_module "libcrc32c?"
;;
+ f2fs)
+ add_module "crc32?"
+ ;;
esac
}