From ea21783487c2446d121f361805f6ea682df08b04 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 10 Jan 2010 16:51:54 +0000 Subject: [PATCH] * Compress the initrd with bzip2. svn path=/nixpkgs/trunk/; revision=19331 --- 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 d930e51a03f..5c63856c19f 100644 --- a/pkgs/build-support/kernel/make-initrd.sh +++ b/pkgs/build-support/kernel/make-initrd.sh @@ -36,4 +36,4 @@ storePaths=$(perl $pathsFromGraph closure-*) # Put the closure in a gzipped cpio archive. ensureDir $out -(cd root && find * -print0 | cpio -ov -H newc --null | gzip -9 > $out/initrd) +(cd root && find * -print0 | cpio -ov -H newc --null | bzip2 -9 > $out/initrd)