linux-boot: Ask fsck for a progress bar.

* gnu/build/file-systems.scm (check-file-system): Pass '-C 0' to FSCK.
  Suggested by Mark H. Weaver.
This commit is contained in:
Ludovic Courtès 2014-09-19 21:51:36 +02:00
parent f75426d5b4
commit 4359378a2c

View file

@ -233,7 +233,7 @@ (define (check-file-system device type)
(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)