diff options
author | Simon Glass <sjg@chromium.org> | 2024-07-31 08:49:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-05 12:15:29 -0600 |
commit | d0dbfd5299910a85c821b06ae8bd9a38818331c1 (patch) | |
tree | 081bac95d9ac42c90cfb3f480023d51845635e0f /tools | |
parent | 8436282e24df315a37bb0392fcf6212458239432 (diff) | |
download | u-boot-d0dbfd5299910a85c821b06ae8bd9a38818331c1.tar.gz |
binman: Collect the version number for mkeficapsule
Now that this tool has a version number, collect it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/btool/mkeficapsule.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/binman/btool/mkeficapsule.py b/tools/binman/btool/mkeficapsule.py index ef1da638df1..f7e5a886849 100644 --- a/tools/binman/btool/mkeficapsule.py +++ b/tools/binman/btool/mkeficapsule.py @@ -33,7 +33,8 @@ class Bintoolmkeficapsule(bintool.Bintool): commandline, or through a config file. """ def __init__(self, name): - super().__init__(name, 'mkeficapsule tool for generating capsules') + super().__init__(name, 'mkeficapsule tool for generating capsules', + r'mkeficapsule version (.*)') def generate_capsule(self, image_index, image_guid, hardware_instance, payload, output_fname, priv_key, pub_key, |