mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
binman: Update missing optional external blob warning text
Make it more clear that the missing external blob is optional in the printed warning message. Signed-off-by: Jonas Karlman <jonas@kwiboo.se> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
321f256c9b
commit
05dec37488
2 changed files with 2 additions and 2 deletions
|
@ -674,7 +674,7 @@ def ProcessImage(image, update_fdt, write_map, get_contents=True,
|
|||
image.CheckOptional(optional_list)
|
||||
if optional_list:
|
||||
tout.warning(
|
||||
"Image '%s' is missing external blobs but is still functional: %s" %
|
||||
"Image '%s' is missing optional external blobs but is still functional: %s" %
|
||||
(image.name, ' '.join([e.name for e in optional_list])))
|
||||
_ShowHelpForMissingBlobs(optional_list)
|
||||
|
||||
|
|
|
@ -6390,7 +6390,7 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
|
|||
err = stderr.getvalue()
|
||||
self.assertRegex(
|
||||
err,
|
||||
"Image '.*' is missing external blobs but is still functional: missing")
|
||||
"Image '.*' is missing optional external blobs but is still functional: missing")
|
||||
|
||||
def testSectionInner(self):
|
||||
"""Test an inner section with a size"""
|
||||
|
|
Loading…
Reference in a new issue