From 377b046e58babae17aa0cc2fa09b95d0e101dc4d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 20 Jan 2012 19:12:15 +0000 Subject: smaller stage1: compress initrd with XZ instead of gzip --- images/NEWS | 3 +++ images/make_boot_img | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'images') diff --git a/images/NEWS b/images/NEWS index 91ebb958e..3d4b7636d 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,6 @@ +- smaller stage1: + o compress initrd with XZ instead of gzip + Version 1.61 - 19 January 2012 by Thierry Vignaud - smaller stage1: remove busybox if not in debug mode diff --git a/images/make_boot_img b/images/make_boot_img index 36aa99389..b3385a95b 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -217,7 +217,7 @@ fi my $devs = sprintf "ls /dev/{%s}", join(',', qw(console fb0 fd0 loop3 mem null ppp ptmx ptyp0 ram3 random tty[0-7] ttyp0 ttyS0 urandom)); - _ "(cd $tmp_initrd; (find . ; $devs) | cpio -o -c --quiet) | gzip -9 > $img"; + _ "(cd $tmp_initrd; (find . ; $devs) | cpio -o -c --quiet) | xz --check=crc32 --lzma2=dict=512KiB > $img"; _ "rm -rf $tmp_initrd"; } -- cgit v1.2.1