diff options
author | John Crispin <john@openwrt.org> | 2015-07-14 09:57:45 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-07-14 09:57:45 +0000 |
commit | 096b3759a98cdbbc710d8620e948eaa7ee2045ed (patch) | |
tree | ddec733630e2353a6f2890b81f65410dbfdf165c /docs/adding.tex | |
parent | 3846bb9ac92060669f9c798c3c128057a6d32809 (diff) | |
download | upstream-096b3759a98cdbbc710d8620e948eaa7ee2045ed.tar.gz upstream-096b3759a98cdbbc710d8620e948eaa7ee2045ed.tar.bz2 upstream-096b3759a98cdbbc710d8620e948eaa7ee2045ed.zip |
build: Prevent more gzip timestamps
To improve reproducibility, prevent the inclusion of timestamps
in the gzip header.
Signed-off-by: Reiner Herrmann <reiner@reiner-h.de>
SVN-Revision: 46361
Diffstat (limited to 'docs/adding.tex')
-rw-r--r-- | docs/adding.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/adding.tex b/docs/adding.tex index 97547ac859..7b80c0d1d6 100644 --- a/docs/adding.tex +++ b/docs/adding.tex @@ -556,7 +556,7 @@ include $(INCLUDE_DIR)/image.mk define Image/BuildKernel cp $(KDIR)/vmlinux.elf $(BIN_DIR)/openwrt-$(BOARD)-vmlinux.elf - gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz + gzip -9n -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.bin.l7 dd if=$(KDIR)/vmlinux.bin.l7 of=$(BIN_DIR)/openwrt-$(BOARD)-vmlinux.lzma bs=65536 conv=sync dd if=$(KDIR)/vmlinux.bin.gz of=$(BIN_DIR)/openwrt-$(BOARD)-vmlinux.gz bs=65536 conv=sync |