summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2017-10-01 20:09:53 +0200
committerDave Reisner <dreisner@archlinux.org>2017-10-01 20:14:00 +0200
commit73262320852264c3bc33cace11503a3ea5820121 (patch)
tree08059acd095f63b4d25534fafd1942e056a6eff2
parent8d59e6a1d7ef3e68b6ed3f17a7a0c20873055592 (diff)
downloadmkinitcpio-73262320852264c3bc33cace11503a3ea5820121.tar.gz
mkinitcpio-73262320852264c3bc33cace11503a3ea5820121.tar.xz
add crc32c for ext4
Might be needed for ext4 filesystems formatted with the metadata_csum option. ref: https://bugs.archlinux.org/task/54091
-rw-r--r--functions3
1 files changed, 3 insertions, 0 deletions
diff --git a/functions b/functions
index 53557e7..1486f2f 100644
--- a/functions
+++ b/functions
@@ -425,6 +425,9 @@ add_module() {
f2fs)
add_module "crypto-crc32?"
;;
+ ext4)
+ add_module "crypto-crc32c?"
+ ;;
esac
}