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>
This commit is contained in:
David Arroyo 2025-09-27 18:52:27 -04:00 committed by Efraim Flashner
parent a0321563eb
commit fd888ddf63
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -349,7 +349,7 @@ FILE-SYSTEMS."
("btrfs" => '("btrfs"))
("iso9660" => '("isofs"))
("jfs" => '("jfs"))
("f2fs" => '("f2fs" "crc32_generic"))
("f2fs" => '("f2fs" "crc32_cryptoapi"))
("xfs" => '("xfs"))
(else '())))