Skip to content
Snippets Groups Projects
Commit c81d0d21 authored by Simon Glass's avatar Simon Glass
Browse files

buildman: Clarify the use of -V


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: default avatarSimon Glass <sjg@chromium.org>
Reported-by: default avatarStephen Warren <swarren@wwwdotorg.org>
Reviewed-by: default avatarStephen Warren <swarren@nvidia.com>
parent 17bce66c
No related branches found
No related tags found
No related merge requests found
...@@ -612,7 +612,8 @@ The full build output in this case is available in: ...@@ -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. err: Output from stderr, if any. Errors and warnings appear here.
log: Output from stdout. Normally there isn't any since buildman runs 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. toolchain: Shows information about the toolchain used for the build.
......
...@@ -85,7 +85,7 @@ def ParseArgs(): ...@@ -85,7 +85,7 @@ def ParseArgs():
parser.add_option('-v', '--verbose', action='store_true', parser.add_option('-v', '--verbose', action='store_true',
default=False, help='Show build results while the build progresses') default=False, help='Show build results while the build progresses')
parser.add_option('-V', '--verbose-build', action='store_true', 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', parser.add_option('-x', '--exclude', dest='exclude',
type='string', action='append', type='string', action='append',
help='Specify a list of boards to exclude, separated by comma') help='Specify a list of boards to exclude, separated by comma')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment