diff mbox series

[v3,2/2] Revert "binman: btool: gzip: fix packer name so that binary can be found"

Message ID 20220930-upstream-gzip-binman-v3-v3-2-17c99d6d87ac@theobroma-systems.com
State Changes Requested
Delegated to: Simon Glass
Headers show
Series automatically stip btool_ from btool names | expand

Commit Message

Quentin Schulz Sept. 30, 2022, 2:36 p.m. UTC
From: Quentin Schulz <quentin.schulz@theobroma-systems.com>

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>
---
 tools/binman/btool/btool_gzip.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Sept. 30, 2022, 11:49 p.m. UTC | #1
On Fri, 30 Sept 2022 at 08:37, Quentin Schulz <foss+uboot@0leil.net> wrote:
>
> From: Quentin Schulz <quentin.schulz@theobroma-systems.com>
>
> 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>
> ---
>  tools/binman/btool/btool_gzip.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/tools/binman/btool/btool_gzip.py b/tools/binman/btool/btool_gzip.py
index 70cbc19f04..7bea300b5d 100644
--- a/tools/binman/btool/btool_gzip.py
+++ b/tools/binman/btool/btool_gzip.py
@@ -27,5 +27,5 @@  class Bintoolbtool_gzip(bintool.BintoolPacker):
         man gzip
     """
     def __init__(self, name):
-        super().__init__("gzip", compress_args=[],
+        super().__init__(name, compress_args=[],
                          version_regex=r'gzip ([0-9.]+)')