]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
binman: Update missing optional external blob warning text
authorJonas Karlman <jonas@kwiboo.se>
Tue, 18 Jul 2023 20:34:34 +0000 (20:34 +0000)
committerSimon Glass <sjg@chromium.org>
Wed, 2 Aug 2023 18:05:57 +0000 (12:05 -0600)
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>
tools/binman/control.py
tools/binman/ftest.py

index d1ee1d69a98c6c6f7fb7a35fecb893359f937dd0..8bc666a0c7c96824d0f31be75346afe79eb43eb3 100644 (file)
@@ -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)
 
index 1cfa349d38eb6c208894aa557a9fc2b3c96de0f0..36c72bed35f6424113e187d9650b67e0cbf6d532 100644 (file)
@@ -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"""