From 4359378a2c83afd9f511fb3fbf8c81f236d0a9b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 19 Sep 2014 21:51:36 +0200 Subject: 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. --- gnu/build/file-systems.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/build/file-systems.scm') diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 5c04771e19..4ac7a7f8c6 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -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) -- cgit v1.2.3