diff mbox

[U-Boot,v2,3/3] buildman: Clarify the use of -V

Message ID 1457833833-11889-3-git-send-email-sjg@chromium.org
State Accepted
Commit c81d0d215ea38d3b8cf3684a57f4ecaca3c01b03
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass March 13, 2016, 1:50 a.m. UTC
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>
---

Changes in v2: None

 tools/buildman/README     | 3 ++-
 tools/buildman/cmdline.py | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

Comments

Stephen Warren March 14, 2016, 4:56 p.m. UTC | #1
On 03/12/2016 06:50 PM, Simon Glass wrote:
> 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.

Reviewed-by: Stephen Warren <swarren@nvidia.com>
Simon Glass March 20, 2016, 12:26 a.m. UTC | #2
On 14 March 2016 at 10:56, Stephen Warren <swarren@wwwdotorg.org> wrote:
> On 03/12/2016 06:50 PM, Simon Glass wrote:
>>
>> 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.
>
>
> Reviewed-by: Stephen Warren <swarren@nvidia.com>

Applied to u-boot-dm.
diff mbox

Patch

diff --git a/tools/buildman/README b/tools/buildman/README
index 332fd5c..4705d26 100644
--- a/tools/buildman/README
+++ b/tools/buildman/README
@@ -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.
 
diff --git a/tools/buildman/cmdline.py b/tools/buildman/cmdline.py
index 916ea57..8341ab1 100644
--- a/tools/buildman/cmdline.py
+++ b/tools/buildman/cmdline.py
@@ -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')