[PATCH v2 10/38] binman: Drop the image name from the fake-blob message
Simon Glass
sjg at chromium.org
Mon Jan 10 04:13:45 CET 2022
This is not really needed and it makes the message different from the
missing-blob message. Update it.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
(no changes since v1)
tools/binman/control.py | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/tools/binman/control.py b/tools/binman/control.py
index f4c1fd01568..e0d2b3879d8 100644
--- a/tools/binman/control.py
+++ b/tools/binman/control.py
@@ -578,10 +578,9 @@ def ProcessImage(image, update_fdt, write_map, get_contents=True,
image.CheckFakedBlobs(faked_list)
if faked_list:
tout.Warning(
- "Image '%s:%s' has faked external blobs and is non-functional: %s" %
- (image.name, image.image_name,
- ' '.join([os.path.basename(e.GetDefaultFilename())
- for e in faked_list])))
+ "Image '%s' has faked external blobs and is non-functional: %s" %
+ (image.name, ' '.join([os.path.basename(e.GetDefaultFilename())
+ for e in faked_list])))
return bool(missing_list) or bool(faked_list)
--
2.34.1.575.g55b058a8bb-goog
More information about the U-Boot
mailing list