diff options
author | Michal Marek <mmarek@suse.cz> | 2011-03-31 15:47:55 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-04-18 14:24:36 +0200 |
commit | 6ae9ecb86188cc8419024cdb299f18d4ae4f5713 (patch) | |
tree | 463f9f7d4803bf11d98469693c987a393680f1f9 /scripts/gen_initramfs_list.sh | |
parent | 1e2795a1191bb5ff05e80d77feffd51ac875c06d (diff) | |
download | linux-6ae9ecb86188cc8419024cdb299f18d4ae4f5713.tar.gz linux-6ae9ecb86188cc8419024cdb299f18d4ae4f5713.tar.bz2 linux-6ae9ecb86188cc8419024cdb299f18d4ae4f5713.zip |
kbuild: Call gzip with -n
The timestamps recorded in the .gz files add no value.
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/gen_initramfs_list.sh')
-rw-r--r-- | scripts/gen_initramfs_list.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_initramfs_list.sh b/scripts/gen_initramfs_list.sh index 55caecdad995..4a43fe12d179 100644 --- a/scripts/gen_initramfs_list.sh +++ b/scripts/gen_initramfs_list.sh @@ -226,7 +226,7 @@ cpio_list= output="/dev/stdout" output_file="" is_cpio_compressed= -compr="gzip -9 -f" +compr="gzip -n -9 -f" arg="$1" case "$arg" in @@ -240,7 +240,7 @@ case "$arg" in output_file="$1" cpio_list="$(mktemp ${TMPDIR:-/tmp}/cpiolist.XXXXXX)" output=${cpio_list} - echo "$output_file" | grep -q "\.gz$" && compr="gzip -9 -f" + echo "$output_file" | grep -q "\.gz$" && compr="gzip -n -9 -f" echo "$output_file" | grep -q "\.bz2$" && compr="bzip2 -9 -f" echo "$output_file" | grep -q "\.lzma$" && compr="lzma -9 -f" echo "$output_file" | grep -q "\.xz$" && \ |