linux-initrd: Provide fsck for F2FS.
authorDanny Milosavljevic <dannym@scratchpost.org>
Sun, 3 May 2020 20:41:24 +0000 (22:41 +0200)
committerDanny Milosavljevic <dannym@scratchpost.org>
Sun, 3 May 2020 21:04:59 +0000 (23:04 +0200)
* gnu/system/linux-initrd.scm (file-system-packages): Add F2FS fsck.

gnu/system/linux-initrd.scm

index 44ee4f1..6a1840d 100644 (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