diff options
| author | David Arroyo <david@aqwari.net> | 2025-09-27 18:52:27 -0400 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-09-29 12:56:30 +0300 |
| commit | fd888ddf63f91bcb92d90f5a254b513a3555a694 (patch) | |
| tree | beaca2614e979b87f1a287d96809ec8ce2382760 /gnu/system/linux-initrd.scm | |
| parent | a0321563eb6b56f39e3a6c8c14597ea38de5b25e (diff) | |
gnu: linux-initrd: Fix f2fs module dependencies
The linux kernel has renamed the crc32_generic module to
crc32_cryptoapi. This fixes the f2fs-root-os system test.
* gnu/system/linux-initrd.scm (file-system-type-modules): update module
name
Change-Id: I73a135e453434e726ea9d3ff99ab1a83b4810a10
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/system/linux-initrd.scm')
| -rw-r--r-- | gnu/system/linux-initrd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 17c2e6f6bfd..febfda57785 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -349,7 +349,7 @@ FILE-SYSTEMS." ("btrfs" => '("btrfs")) ("iso9660" => '("isofs")) ("jfs" => '("jfs")) - ("f2fs" => '("f2fs" "crc32_generic")) + ("f2fs" => '("f2fs" "crc32_cryptoapi")) ("xfs" => '("xfs")) (else '()))) |
