diff options
author | Tom Rini <trini@konsulko.com> | 2022-09-07 08:38:44 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-07 08:38:44 -0400 |
commit | fc2f4085d33cf3e877695e24f63d009134382c48 (patch) | |
tree | b3e4a9d689de64cc9c8234431215990cee41a9ea /tools/binman/btool/btool_gzip.py | |
parent | 59c51fa4abbca41d2a4d60c0fe4d8f05fc83fb46 (diff) | |
parent | 7ac6842316ad1d412a49f88d8668923b40b09b5f (diff) |
Merge tag 'dm-pull-7sep22' of https://source.denx.de/u-boot/custodians/u-boot-dm
binman fixes for bintool support
Diffstat (limited to 'tools/binman/btool/btool_gzip.py')
-rw-r--r-- | tools/binman/btool/btool_gzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/btool/btool_gzip.py b/tools/binman/btool/btool_gzip.py index 7bea300b5da..70cbc19f04b 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__(name, compress_args=[], + super().__init__("gzip", compress_args=[], version_regex=r'gzip ([0-9.]+)') |