From: Quentin Schulz Date: Mon, 7 Nov 2022 12:54:56 +0000 (+0100) Subject: Revert "binman: btool: gzip: fix packer name so that binary can be found" X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=fb132b37278c708692dfc3669339ae6d60ee7822;p=u-boot.git Revert "binman: btool: gzip: fix packer name so that binary can be found" This reverts commit daa2da754afe1bac777f6cb0f05233e0de7b325d. This commit is not needed anymore since the btool_ prefix is automatically stripped by bintool. Cc: Quentin Schulz Signed-off-by: Quentin Schulz Reviewed-by: Simon Glass --- diff --git a/tools/binman/btool/btool_gzip.py b/tools/binman/btool/btool_gzip.py index a7ce6411cd..0d75028120 100644 --- a/tools/binman/btool/btool_gzip.py +++ b/tools/binman/btool/btool_gzip.py @@ -27,5 +27,5 @@ class Bintoolgzip(bintool.BintoolPacker): man gzip """ def __init__(self, name): - super().__init__("gzip", compress_args=[], + super().__init__(name, compress_args=[], version_regex=r'gzip ([0-9.]+)')