From: Simon Glass Date: Mon, 10 Jan 2022 03:13:45 +0000 (-0700) Subject: binman: Drop the image name from the fake-blob message X-Git-Tag: v2022.07~208^2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cc8c1fba6498a3d0a4a8892c58783cb302c0bab;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/tools/binman/control.py b/tools/binman/control.py index f4c1fd0..e0d2b38 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)