From: Simon Glass Date: Thu, 7 Jan 2021 04:35:13 +0000 (-0700) Subject: binman: Show the size when writing entries X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=5b378e4d0b88502faac50180d4be10d60a3f49a8;p=u-boot.git binman: Show the size when writing entries Update the log output to show the size, since this is useful information. Signed-off-by: Simon Glass --- diff --git a/tools/binman/control.py b/tools/binman/control.py index 072417f364..1952b2abf4 100644 --- a/tools/binman/control.py +++ b/tools/binman/control.py @@ -244,7 +244,8 @@ def ExtractEntries(image_fname, output_fname, outdir, entry_paths, if not os.path.exists(fname): os.makedirs(fname) fname = os.path.join(fname, 'root') - tout.Notice("Write entry '%s' to '%s'" % (entry.GetPath(), fname)) + tout.Notice("Write entry '%s' size %x to '%s'" % + (entry.GetPath(), len(data), fname)) tools.WriteFile(fname, data) return einfos