~ruther/guix-local

4359378a2c83afd9f511fb3fbf8c81f236d0a9b9 — Ludovic Courtès 11 years ago f75426d
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.
1 files changed, 1 insertions(+), 1 deletions(-)

M gnu/build/file-systems.scm
M gnu/build/file-systems.scm => gnu/build/file-systems.scm +1 -1
@@ 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)