diff options
author | Simon Glass <sjg@chromium.org> | 2014-08-09 15:33:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-08-13 08:34:15 -0600 |
commit | e5a0e5d84239c71a156a0a14d9332c5532f2411e (patch) | |
tree | 8f868766dea9ec705ed6b38003e3d3c303c67c54 /tools/buildman/buildman.py | |
parent | b2ea7ab25258621871db1f884be1a2f2b1641741 (diff) | |
download | u-boot-imx-e5a0e5d84239c71a156a0a14d9332c5532f2411e.zip u-boot-imx-e5a0e5d84239c71a156a0a14d9332c5532f2411e.tar.gz u-boot-imx-e5a0e5d84239c71a156a0a14d9332c5532f2411e.tar.bz2 |
buildman: Add verbose option to display errors as they happen
Normally buildman operates in two passes - one to do the build and another
to summarise the errors. Add a verbose option (-v) to display build problems
as they happen. With -e also given, this will display errors too.
When building the current source tree (rather than a list of commits in a
branch), both -v and -e are enabled automatically.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/buildman.py')
-rwxr-xr-x | tools/buildman/buildman.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/buildman/buildman.py b/tools/buildman/buildman.py index da6025a..f32557f 100755 --- a/tools/buildman/buildman.py +++ b/tools/buildman/buildman.py @@ -113,6 +113,8 @@ parser.add_option('-T', '--threads', type='int', default=None, help='Number of builder threads to use') parser.add_option('-u', '--show_unknown', action='store_true', default=False, help='Show boards with unknown build result') +parser.add_option('-v', '--verbose', action='store_true', + default=False, help='Show build results while the build progresses') parser.usage = """buildman -b <branch> [options] |