]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
buildman: Clarify the use of -V
authorSimon Glass <sjg@chromium.org>
Sun, 13 Mar 2016 01:50:33 +0000 (18:50 -0700)
committerSimon Glass <sjg@chromium.org>
Fri, 18 Mar 2016 03:27:39 +0000 (21:27 -0600)
This option outputs to the log file, not to the terminal. Clarify that in
the help, and add a mention of it in the README.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reported-by: Stephen Warren <swarren@wwwdotorg.org>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
tools/buildman/README
tools/buildman/cmdline.py

index 332fd5c825aa148539d1cd490e7cc2445b0ce995..4705d2644b8f075da0a83802bbb42a908fde8e0b 100644 (file)
@@ -612,7 +612,8 @@ The full build output in this case is available in:
    err:  Output from stderr, if any. Errors and warnings appear here.
 
    log:  Output from stdout. Normally there isn't any since buildman runs
-         in silent mode for now.
+         in silent mode. Use -V to force a verbose build (this passes V=1
+         to 'make')
 
    toolchain: Shows information about the toolchain used for the build.
 
index 916ea57157c0ea3d4deccee0ca7a55b9f6a3ea4f..8341ab145cfa1f5eb1776ef1a821cd2ab95e8972 100644 (file)
@@ -85,7 +85,7 @@ def ParseArgs():
     parser.add_option('-v', '--verbose', action='store_true',
           default=False, help='Show build results while the build progresses')
     parser.add_option('-V', '--verbose-build', action='store_true',
-          default=False, help='Run make with V=1, showing all output')
+          default=False, help='Run make with V=1, logging all output')
     parser.add_option('-x', '--exclude', dest='exclude',
           type='string', action='append',
           help='Specify a list of boards to exclude, separated by comma')