linux-boot: Ask fsck for a progress bar.
authorLudovic Courtès <ludo@gnu.org>
Fri, 19 Sep 2014 19:51:36 +0000 (21:51 +0200)
committerLudovic Courtès <ludo@gnu.org>
Fri, 19 Sep 2014 19:51:36 +0000 (21:51 +0200)
* gnu/build/file-systems.scm (check-file-system): Pass '-C 0' to FSCK.
  Suggested by Mark H. Weaver.

gnu/build/file-systems.scm

index 5c04771..4ac7a7f 100644 (file)
@@ -233,7 +233,7 @@ the following:
   (define fsck
     (string-append "fsck." type))
 
-  (let ((status (system* fsck "-v" "-p" device)))
+  (let ((status (system* fsck "-v" "-p" "-C" "0" device)))
     (match (status:exit-val status)
       (0
        #t)