Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ae9ecb8 authored by Michal Marek's avatar Michal Marek
Browse files

kbuild: Call gzip with -n



The timestamps recorded in the .gz files add no value.

Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 1e2795a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -197,7 +197,7 @@ cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
# ---------------------------------------------------------------------------
# ---------------------------------------------------------------------------


quiet_cmd_gzip = GZIP    $@
quiet_cmd_gzip = GZIP    $@
cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -f -9 > $@) || \
cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -n -f -9 > $@) || \
	(rm -f $@ ; false)
	(rm -f $@ ; false)


# DTC
# DTC
+2 −2
Original line number Original line Diff line number Diff line
@@ -226,7 +226,7 @@ cpio_list=
output="/dev/stdout"
output="/dev/stdout"
output_file=""
output_file=""
is_cpio_compressed=
is_cpio_compressed=
compr="gzip -9 -f"
compr="gzip -n -9 -f"


arg="$1"
arg="$1"
case "$arg" in
case "$arg" in
@@ -240,7 +240,7 @@ case "$arg" in
		output_file="$1"
		output_file="$1"
		cpio_list="$(mktemp ${TMPDIR:-/tmp}/cpiolist.XXXXXX)"
		cpio_list="$(mktemp ${TMPDIR:-/tmp}/cpiolist.XXXXXX)"
		output=${cpio_list}
		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 "\.bz2$" && compr="bzip2 -9 -f"
		echo "$output_file" | grep -q "\.lzma$" && compr="lzma -9 -f"
		echo "$output_file" | grep -q "\.lzma$" && compr="lzma -9 -f"
		echo "$output_file" | grep -q "\.xz$" && \
		echo "$output_file" | grep -q "\.xz$" && \