From 524b712a5a7adb40e4ca4fb2c5414b1726d2e1e3 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 14 Dec 2022 10:45:31 +0100 Subject: [PATCH] profiles: Keep using bzip2 for compressing binary packages This was a default so far, but updating portage resulted in a change of the default binary packages compressor from bzip2 to zstd. We eventually will want to follow this change too, but first some scripts that assume bzip2 will need to be updated. So for now keep using bzip2 to limit the scope of updating portage. --- .../coreos-overlay/profiles/coreos/base/make.defaults | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults index a7cb3dd0c6..bf61ba59f4 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults @@ -112,3 +112,8 @@ PORTAGE_WORKDIR_MODE="0755" # Don't let GRUB whine about /boot DONT_MOUNT_BOOT=1 + +# Keep using bzip2 as a compressor for binary packages. Some hacks +# inside the scripts repository that poke binary packages assume that +# bzip2 is used, not zstd. Eventually we will want to move to zstd. +BINPKG_COMPRESS=bzip2