From 8336d5599396eef35236b26ebc0a651117f5680d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 21 May 2012 20:47:57 +0000 Subject: [PATCH] * Be less verbose generating initrds. svn path=/nixpkgs/trunk/; revision=34199 --- pkgs/build-support/kernel/make-initrd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/kernel/make-initrd.sh b/pkgs/build-support/kernel/make-initrd.sh index 8d334447b6dd..b2c784635699 100644 --- a/pkgs/build-support/kernel/make-initrd.sh +++ b/pkgs/build-support/kernel/make-initrd.sh @@ -36,7 +36,7 @@ storePaths=$(perl $pathsFromGraph closure-*) # Put the closure in a gzipped cpio archive. mkdir -p $out -(cd root && find * -print0 | cpio -ov -H newc --null | gzip -9 > $out/initrd) +(cd root && find * -print0 | cpio -o -H newc --null | gzip -9 > $out/initrd) if [ -n "$makeUInitrd" ]; then mv $out/initrd $out/initrd.gz