From 46cdc8b9e9246b08cc60988d27097e247e7d9eb8 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 20 Nov 2016 11:32:18 -0500 Subject: 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 --- functions | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 } -- cgit v1.2.3-24-g4f1b