aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorQuentin Schulz2022-11-07 13:54:56 +0100
committerSimon Glass2022-11-22 15:13:34 -0700
commitfb132b37278c708692dfc3669339ae6d60ee7822 (patch)
tree2d910e66ec28be6dd58d5ae2edf3741fb01d408c /tools
parent478332a345428659c924b06ea59627a26c2f0ee2 (diff)
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 <foss+uboot@0leil.net> Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/btool/btool_gzip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/btool/btool_gzip.py b/tools/binman/btool/btool_gzip.py
index a7ce6411cdb..0d75028120f 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.]+)')