summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-10 06:13:45 +0300
committerSimon Glass <sjg@chromium.org>2022-01-25 22:36:11 +0300
commit2cc8c1fba6498a3d0a4a8892c58783cb302c0bab (patch)
treed1fc7716ad9de83d38d1260b1dc43ba46b2ae530 /tools
parent596fd10a79e95197ec9fa1ebe7b9e6f7bf81e217 (diff)
downloadu-boot-2cc8c1fba6498a3d0a4a8892c58783cb302c0bab.tar.xz
binman: Drop the image name from the fake-blob message
This is not really needed and it makes the message different from the missing-blob message. Update it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/control.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/binman/control.py b/tools/binman/control.py
index f4c1fd0156..e0d2b3879d 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)