From: Atharva Lele Date: Tue, 16 Jul 2019 17:42:13 +0000 (+0530) Subject: fs/common.mk: do not store original names and timestamps when creating gzipped rootfs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44d17dd128164cfe7870f5bef279e273ba59f83d;p=buildroot.git fs/common.mk: do not store original names and timestamps when creating gzipped rootfs Using the GZIP environment variable to pass gzip options is deprecated, and therefore we are going to remove the "GZIP = -n" definition from the main Buildroot Makefile. In preparation for this, we explicitly add the -n argument to the gzip call in fs/common.mk to ensure reproducibility. Signed-off-by: Atharva Lele Acked-by: Yann E. MORIN Signed-off-by: Thomas Petazzoni --- diff --git a/fs/common.mk b/fs/common.mk index fceb38c5b9..ca46a331d6 100644 --- a/fs/common.mk +++ b/fs/common.mk @@ -115,7 +115,7 @@ ROOTFS_$(2)_FINAL_RECURSIVE_DEPENDENCIES = $$(sort \ ifeq ($$(BR2_TARGET_ROOTFS_$(2)_GZIP),y) ROOTFS_$(2)_COMPRESS_EXT = .gz -ROOTFS_$(2)_COMPRESS_CMD = gzip -9 -c +ROOTFS_$(2)_COMPRESS_CMD = gzip -9 -c -n endif ifeq ($$(BR2_TARGET_ROOTFS_$(2)_BZIP2),y) ROOTFS_$(2)_COMPRESS_EXT = .bz2