Skip to content

Commit

Permalink
binman: Fix blank line usage for invalid images warning text
Browse files Browse the repository at this point in the history
There is no blank line between last missing blob help message and the
header line for optional blob help messages.

  Image 'simple-bin' is missing external blobs and is non-functional: atf-bl31

  /binman/simple-bin/fit/images/@atf-SEQ/atf-bl31:
     See the documentation for your board. You may need to build ARM Trusted
     Firmware and build with BL31=/path/to/bl31.bin
  Image 'simple-bin' is missing external blobs but is still functional: tee-os

  /binman/simple-bin/fit/images/@tee-SEQ/tee-os:
     See the documentation for your board. You may need to build Open Portable
     Trusted Execution Environment (OP-TEE) and build with TEE=/path/to/tee.bin

  Some images are invalid

With this a blank line is inserted to make the text more readable.

Signed-off-by: Jonas Karlman <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
  • Loading branch information
Kwiboo authored and sjg20 committed Aug 2, 2023
1 parent 49dcd1c commit c260015
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tools/binman/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,10 @@ def _FinishTag(tag, msg, result):
return result

def _ShowBlobHelp(level, path, text):
tout.do_output(level, '\n%s:' % path)
tout.do_output(level, '%s:' % path)
for line in text.splitlines():
tout.do_output(level, ' %s' % line)
tout.do_output(level, '')

def _ShowHelpForMissingBlobs(level, missing_list):
"""Show help for each missing blob to help the user take action
Expand Down Expand Up @@ -658,31 +659,31 @@ def ProcessImage(image, update_fdt, write_map, get_contents=True,
missing_list = []
image.CheckMissing(missing_list)
if missing_list:
tout.error("Image '%s' is missing external blobs and is non-functional: %s" %
tout.error("Image '%s' is missing external blobs and is non-functional: %s\n" %
(image.name, ' '.join([e.name for e in missing_list])))
_ShowHelpForMissingBlobs(tout.ERROR, missing_list)

faked_list = []
image.CheckFakedBlobs(faked_list)
if faked_list:
tout.warning(
"Image '%s' has faked external blobs and is non-functional: %s" %
"Image '%s' has faked external blobs and is non-functional: %s\n" %
(image.name, ' '.join([os.path.basename(e.GetDefaultFilename())
for e in faked_list])))

optional_list = []
image.CheckOptional(optional_list)
if optional_list:
tout.warning(
"Image '%s' is missing optional external blobs but is still functional: %s" %
"Image '%s' is missing optional external blobs but is still functional: %s\n" %
(image.name, ' '.join([e.name for e in optional_list])))
_ShowHelpForMissingBlobs(tout.WARNING, optional_list)

missing_bintool_list = []
image.check_missing_bintools(missing_bintool_list)
if missing_bintool_list:
tout.warning(
"Image '%s' has missing bintools and is non-functional: %s" %
"Image '%s' has missing bintools and is non-functional: %s\n" %
(image.name, ' '.join([os.path.basename(bintool.name)
for bintool in missing_bintool_list])))
return any([missing_list, faked_list, missing_bintool_list])
Expand Down Expand Up @@ -827,7 +828,7 @@ def Binman(args):
# This can only be True if -M is provided, since otherwise binman
# would have raised an error already
if invalid:
msg = '\nSome images are invalid'
msg = 'Some images are invalid'
if args.ignore_missing:
tout.warning(msg)
else:
Expand Down

0 comments on commit c260015

Please sign in to comment.