diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-28 12:08:20 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-06 14:01:42 -0400 |
commit | 3390948c0f5b51f5aa3bdaadebeda0b81a9ac0bd (patch) | |
tree | 2d53d2384f5b5ee257f7774a92d31950a62a46f2 /tools/binman/etype/vblock.py | |
parent | 78df2146d2dfcbfb8713e5cafc3bc766bd10a7e6 (diff) |
binman: Correct Chromium OS entry types
The conversion to bintools broke the invocation of the utility, since
the arguments are not correct. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/etype/vblock.py')
-rw-r--r-- | tools/binman/etype/vblock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/vblock.py b/tools/binman/etype/vblock.py index 065b6ed2f6..c3ef08bbb2 100644 --- a/tools/binman/etype/vblock.py +++ b/tools/binman/etype/vblock.py @@ -73,7 +73,7 @@ class Entry_vblock(Entry_collection): vblock=output_fname, keyblock=prefix + self.keyblock, signprivate=prefix + self.signprivate, - version=f'{self.version,}', + version=f'{self.version:d}', firmware=input_fname, kernelkey=prefix + self.kernelkey, flags=f'{self.preamble_flags}') |