me
/
guix
Archived
1
0
Fork 0

linux-initrd: Provide fsck for F2FS.

* gnu/system/linux-initrd.scm (file-system-packages): Add F2FS fsck.
master
Danny Milosavljevic 2020-05-03 22:41:24 +02:00
parent da09c63e78
commit 33eab4a10d
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 3 additions and 0 deletions

View File

@ -245,6 +245,9 @@ FILE-SYSTEMS."
'())
,@(if (find (file-system-type-predicate "jfs") file-systems)
(list jfs_fsck/static)
'())
,@(if (find (file-system-type-predicate "f2fs") file-systems)
(list f2fs-fsck/static)
'())))
(define-syntax vhash ;TODO: factorize