Revert "binman: btool: gzip: fix packer name so that binary can be found"

This reverts commit daa2da754a.

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>
This commit is contained in:
Quentin Schulz 2022-11-07 13:54:56 +01:00 committed by Simon Glass
parent 478332a345
commit fb132b3727

View File

@ -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.]+)')