binman: Don't show image-skip message by default
[project/bcm63xx/u-boot.git] / tools / binman / control.py
index 3446e2e79c5b278c7d8895f2d6395321bab3d582..b32e4e1996fb297287ca00c74f529be969c107ca 100644 (file)
@@ -133,8 +133,8 @@ def Binman(options, args):
                     if name not in options.image:
                         del images[name]
                         skip.append(name)
-                if skip:
-                    print 'Skipping images: %s\n' % ', '.join(skip)
+                if skip and options.verbosity >= 2:
+                    print 'Skipping images: %s' % ', '.join(skip)
 
             state.Prepare(images, dtb)