Blame 0100-fs-lib-f2fs-needs-crc32-not-crc32c.patch
|
Harald Hoyer |
414eba |
From 34a42f9f49d4ad8897c4890af5b9a455e1335c66 Mon Sep 17 00:00:00 2001
|
|
Harald Hoyer |
414eba |
From: Harald Hoyer <harald@redhat.com>
|
|
Harald Hoyer |
414eba |
Date: Fri, 8 Jul 2016 10:01:52 +0200
|
|
Harald Hoyer |
414eba |
Subject: [PATCH] fs-lib: f2fs needs crc32 not crc32c
|
|
Harald Hoyer |
414eba |
|
|
Harald Hoyer |
414eba |
*sigh*
|
|
Harald Hoyer |
414eba |
---
|
|
Harald Hoyer |
414eba |
modules.d/99fs-lib/module-setup.sh | 5 ++++-
|
|
Harald Hoyer |
414eba |
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
Harald Hoyer |
414eba |
|
|
Harald Hoyer |
414eba |
diff --git a/modules.d/99fs-lib/module-setup.sh b/modules.d/99fs-lib/module-setup.sh
|
|
Harald Hoyer |
414eba |
index 2c5f4c0..bd61838 100755
|
|
Harald Hoyer |
414eba |
--- a/modules.d/99fs-lib/module-setup.sh
|
|
Harald Hoyer |
414eba |
+++ b/modules.d/99fs-lib/module-setup.sh
|
|
Harald Hoyer |
414eba |
@@ -41,9 +41,12 @@ echo_fs_helper() {
|
|
Harald Hoyer |
414eba |
include_fs_helper_modules() {
|
|
Harald Hoyer |
414eba |
local dev=$1 fs=$2
|
|
Harald Hoyer |
414eba |
case "$fs" in
|
|
Harald Hoyer |
414eba |
- xfs|btrfs|f2fs)
|
|
Harald Hoyer |
414eba |
+ xfs|btrfs)
|
|
Harald Hoyer |
414eba |
instmods crc32c
|
|
Harald Hoyer |
414eba |
;;
|
|
Harald Hoyer |
414eba |
+ f2fs)
|
|
Harald Hoyer |
414eba |
+ instmods crc32
|
|
Harald Hoyer |
414eba |
+ ;;
|
|
Harald Hoyer |
414eba |
esac
|
|
Harald Hoyer |
414eba |
}
|
|
Harald Hoyer |
414eba |
|