* [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable
@ 2019-07-03 16:39 Atharva Lele
2019-07-03 16:39 ` [Buildroot] [PATCH 2/2] fs/common.mk: do not store original names and timestamps when creating GZIP rootfs Atharva Lele
2019-07-14 18:07 ` [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable Yann E. MORIN
0 siblings, 2 replies; 4+ messages in thread
From: Atharva Lele @ 2019-07-03 16:39 UTC (permalink / raw)
To: buildroot
We export GZIP = -n so that GZIP does not record original
name and timestamps. However..
GZIP environment variable is deprecated and soon will not be
supported in future GZIP versions. GZIP suggests the use of a
wrapper to pass options globally but it might be difficult to
implement in Buildroot. For now, we don't export the variable
and fix reproducibility issues per package as they show up in
Autobuilder.
Signed-off-by: Atharva Lele <itsatharva@gmail.com>
---
Makefile | 1 -
1 file changed, 1 deletion(-)
diff --git a/Makefile b/Makefile
index c98a0ed87e..9cce934990 100644
--- a/Makefile
+++ b/Makefile
@@ -248,7 +248,6 @@ ifeq ($(BR2_REPRODUCIBLE),y)
export TZ = UTC
export LANG = C
export LC_ALL = C
-export GZIP = -n
endif
# To put more focus on warnings, be less verbose as default
--
2.22.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] fs/common.mk: do not store original names and timestamps when creating GZIP rootfs
2019-07-03 16:39 [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable Atharva Lele
@ 2019-07-03 16:39 ` Atharva Lele
2019-07-14 18:06 ` Yann E. MORIN
2019-07-14 18:07 ` [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable Yann E. MORIN
1 sibling, 1 reply; 4+ messages in thread
From: Atharva Lele @ 2019-07-03 16:39 UTC (permalink / raw)
To: buildroot
We don't use the GZIP environment variable to store GZIP options,
so explicitly add -n argument here to increase reproducibility.
Signed-off-by: Atharva Lele <itsatharva@gmail.com>
---
fs/common.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
--
2.22.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] fs/common.mk: do not store original names and timestamps when creating GZIP rootfs
2019-07-03 16:39 ` [Buildroot] [PATCH 2/2] fs/common.mk: do not store original names and timestamps when creating GZIP rootfs Atharva Lele
@ 2019-07-14 18:06 ` Yann E. MORIN
0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2019-07-14 18:06 UTC (permalink / raw)
To: buildroot
Atharva, All,
On 2019-07-03 22:09 +0530, Atharva Lele spake thusly:
> We don't use the GZIP environment variable to store GZIP options,
> so explicitly add -n argument here to increase reproducibility.
This patch should come before the previous patch removing 'export GZIP'.
Otherwise:
Acked-by: Yann E. MORIN <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> Signed-off-by: Atharva Lele <itsatharva@gmail.com>
> ---
> fs/common.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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
> --
> 2.22.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable
2019-07-03 16:39 [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable Atharva Lele
2019-07-03 16:39 ` [Buildroot] [PATCH 2/2] fs/common.mk: do not store original names and timestamps when creating GZIP rootfs Atharva Lele
@ 2019-07-14 18:07 ` Yann E. MORIN
1 sibling, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2019-07-14 18:07 UTC (permalink / raw)
To: buildroot
Atharva, All,
On 2019-07-03 22:09 +0530, Atharva Lele spake thusly:
> We export GZIP = -n so that GZIP does not record original
> name and timestamps. However..
>
> GZIP environment variable is deprecated and soon will not be
> supported in future GZIP versions. GZIP suggests the use of a
> wrapper to pass options globally but it might be difficult to
> implement in Buildroot. For now, we don't export the variable
> and fix reproducibility issues per package as they show up in
> Autobuilder.
This patch must be applied after all caller of gzip have been converted
to use -n.
So far, we identified only fs/comon.mk that calls gzip without -n, and
this is fixed in the following patch.
So, provided the order of these two patches are inversed when applying:
Acked-by: Yann E. MORIN <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> Signed-off-by: Atharva Lele <itsatharva@gmail.com>
> ---
> Makefile | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index c98a0ed87e..9cce934990 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -248,7 +248,6 @@ ifeq ($(BR2_REPRODUCIBLE),y)
> export TZ = UTC
> export LANG = C
> export LC_ALL = C
> -export GZIP = -n
> endif
>
> # To put more focus on warnings, be less verbose as default
> --
> 2.22.0
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-07-14 18:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-03 16:39 [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable Atharva Lele
2019-07-03 16:39 ` [Buildroot] [PATCH 2/2] fs/common.mk: do not store original names and timestamps when creating GZIP rootfs Atharva Lele
2019-07-14 18:06 ` Yann E. MORIN
2019-07-14 18:07 ` [Buildroot] [PATCH 1/2] Makefile: don't export GZIP environment variable Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox