From 6efed28d2a395859c557b7c209df26e9ca008afd Mon Sep 17 00:00:00 2001 From: Markus Stockhausen Date: Tue, 26 Jul 2022 13:48:52 +0200 Subject: [PATCH] image-commands: make use of gzip-libdeflate Now that we provide a better gzip compression tool we can make use of it whereever gzip is used. Change Build/gzip command to new gzip-libdeflate compressor. Signed-off-by: Markus Stockhausen --- include/image-commands.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/image-commands.mk b/include/image-commands.mk index 402e3d71edb8d9..34cc7b82a9cd82 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -298,7 +298,7 @@ define Build/fit endef define Build/gzip - gzip -f -9n -c $@ $(1) > $@.new + $(STAGING_DIR_HOST)/bin/gzip-libdeflate -f -12 -c $@ $(1) > $@.new @mv $@.new $@ endef