All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] buildman: refactor help message
@ 2014-08-21  5:28 Masahiro Yamada
  2014-08-22 10:21 ` [U-Boot] [PATCH] buildman: refactor help message (This has been superseded !) Masahiro Yamada
  2014-08-23  2:01 ` [U-Boot] [PATCH] buildman: refactor help message Simon Glass
  0 siblings, 2 replies; 4+ messages in thread
From: Masahiro Yamada @ 2014-08-21  5:28 UTC (permalink / raw)
  To: u-boot

"buildman [options]" is displayed by default.

Append the rest of help messages to parser.usage
instead of replacing it.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---

 tools/buildman/buildman.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/buildman/buildman.py b/tools/buildman/buildman.py
index 6ca8dc6..9b0c9a0 100755
--- a/tools/buildman/buildman.py
+++ b/tools/buildman/buildman.py
@@ -118,7 +118,7 @@ parser.add_option('-u', '--show_unknown', action='store_true',
 parser.add_option('-v', '--verbose', action='store_true',
        default=False, help='Show build results while the build progresses')
 
-parser.usage = """buildman -b <branch> [options]
+parser.usage += """ -b <branch>
 
 Build U-Boot for all commits in a branch. Use -n to do a dry run"""
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] buildman: refactor help message (This has been superseded !)
  2014-08-21  5:28 [U-Boot] [PATCH] buildman: refactor help message Masahiro Yamada
@ 2014-08-22 10:21 ` Masahiro Yamada
  2014-08-22 14:43   ` Tom Rini
  2014-08-23  2:01 ` [U-Boot] [PATCH] buildman: refactor help message Simon Glass
  1 sibling, 1 reply; 4+ messages in thread
From: Masahiro Yamada @ 2014-08-22 10:21 UTC (permalink / raw)
  To: u-boot

Hi Tom,


I notice this patch is already marked as Under Review
and I guess you are testing it locally now.

If it is not too late, could you replace it with v2 please?
http://patchwork.ozlabs.org/patch/382136/


I found "-b <branch>" is not a mandatory option.


Best Regards
Masahiro Yamada





On Thu, 21 Aug 2014 14:28:19 +0900
Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:

> "buildman [options]" is displayed by default.
> 
> Append the rest of help messages to parser.usage
> instead of replacing it.
> 
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> ---
> 
>  tools/buildman/buildman.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/buildman/buildman.py b/tools/buildman/buildman.py
> index 6ca8dc6..9b0c9a0 100755
> --- a/tools/buildman/buildman.py
> +++ b/tools/buildman/buildman.py
> @@ -118,7 +118,7 @@ parser.add_option('-u', '--show_unknown', action='store_true',
>  parser.add_option('-v', '--verbose', action='store_true',
>         default=False, help='Show build results while the build progresses')
>  
> -parser.usage = """buildman -b <branch> [options]
> +parser.usage += """ -b <branch>
>  
>  Build U-Boot for all commits in a branch. Use -n to do a dry run"""
>  
> -- 
> 1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] buildman: refactor help message (This has been superseded !)
  2014-08-22 10:21 ` [U-Boot] [PATCH] buildman: refactor help message (This has been superseded !) Masahiro Yamada
@ 2014-08-22 14:43   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2014-08-22 14:43 UTC (permalink / raw)
  To: u-boot

On Fri, Aug 22, 2014 at 07:21:57PM +0900, Masahiro Yamada wrote:

> Hi Tom,
> 
> 
> I notice this patch is already marked as Under Review
> and I guess you are testing it locally now.
> 
> If it is not too late, could you replace it with v2 please?
> http://patchwork.ozlabs.org/patch/382136/

Will do, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140822/885ab26e/attachment.pgp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] buildman: refactor help message
  2014-08-21  5:28 [U-Boot] [PATCH] buildman: refactor help message Masahiro Yamada
  2014-08-22 10:21 ` [U-Boot] [PATCH] buildman: refactor help message (This has been superseded !) Masahiro Yamada
@ 2014-08-23  2:01 ` Simon Glass
  1 sibling, 0 replies; 4+ messages in thread
From: Simon Glass @ 2014-08-23  2:01 UTC (permalink / raw)
  To: u-boot

Hi Masahiro,

On 20 August 2014 23:28, Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:
> "buildman [options]" is displayed by default.
>
> Append the rest of help messages to parser.usage
> instead of replacing it.
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> ---
>
>  tools/buildman/buildman.py | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/buildman/buildman.py b/tools/buildman/buildman.py
> index 6ca8dc6..9b0c9a0 100755
> --- a/tools/buildman/buildman.py
> +++ b/tools/buildman/buildman.py
> @@ -118,7 +118,7 @@ parser.add_option('-u', '--show_unknown', action='store_true',
>  parser.add_option('-v', '--verbose', action='store_true',
>         default=False, help='Show build results while the build progresses')
>
> -parser.usage = """buildman -b <branch> [options]
> +parser.usage += """ -b <branch>

Actually, it's my mistake but the -b argument is now optional. So
perhaps it could be:

> +parser.usage += """ [-b <branch>]

Regards,
Simon

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-08-23  2:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-21  5:28 [U-Boot] [PATCH] buildman: refactor help message Masahiro Yamada
2014-08-22 10:21 ` [U-Boot] [PATCH] buildman: refactor help message (This has been superseded !) Masahiro Yamada
2014-08-22 14:43   ` Tom Rini
2014-08-23  2:01 ` [U-Boot] [PATCH] buildman: refactor help message Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.