public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] thor: cosmetic: Update the cmd_thordown help message to present example usage
@ 2014-06-20  7:35 Lukasz Majewski
  2014-06-20 15:59 ` Stephen Warren
  2014-06-23  7:35 ` [U-Boot] [PATCH v2] " Lukasz Majewski
  0 siblings, 2 replies; 6+ messages in thread
From: Lukasz Majewski @ 2014-06-20  7:35 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
---
 common/cmd_thordown.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/cmd_thordown.c b/common/cmd_thordown.c
index 8ed1dc6..25de048 100644
--- a/common/cmd_thordown.c
+++ b/common/cmd_thordown.c
@@ -64,7 +64,7 @@ done:
 
 U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
 	   "TIZEN \"THOR\" downloader",
-	   "<USB_controller> <interface> <dev>\n"
+	   "<USB_controller> <interface> <dev> e.g. thor 0 mmc 0\n"
 	   "  - device software upgrade via LTHOR TIZEN dowload\n"
 	   "    program via <USB_controller> on device <dev>,\n"
 	   "	attached to interface <interface>\n"
-- 
2.0.0.rc2

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

* [U-Boot] [PATCH] thor: cosmetic: Update the cmd_thordown help message to present example usage
  2014-06-20  7:35 [U-Boot] [PATCH] thor: cosmetic: Update the cmd_thordown help message to present example usage Lukasz Majewski
@ 2014-06-20 15:59 ` Stephen Warren
  2014-06-23  7:01   ` Lukasz Majewski
  2014-06-23  7:35 ` [U-Boot] [PATCH v2] " Lukasz Majewski
  1 sibling, 1 reply; 6+ messages in thread
From: Stephen Warren @ 2014-06-20 15:59 UTC (permalink / raw)
  To: u-boot

On 06/20/2014 01:35 AM, Lukasz Majewski wrote:

> diff --git a/common/cmd_thordown.c b/common/cmd_thordown.c

>  U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
>  	   "TIZEN \"THOR\" downloader",
> -	   "<USB_controller> <interface> <dev>\n"
> +	   "<USB_controller> <interface> <dev> e.g. thor 0 mmc 0\n"
>  	   "  - device software upgrade via LTHOR TIZEN dowload\n"
>  	   "    program via <USB_controller> on device <dev>,\n"
>  	   "	attached to interface <interface>\n"

I couldn't find any examples of other commands which do this. Rathe than
add the "e.g." text, perhaps just add the word "thor" at the start of
the command parameter list. That's much more common in existing commands:

-	   "<USB_controller> <interface> <dev>\n"
+	   "thor <USB_controller> <interface> <dev>\n"

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

* [U-Boot] [PATCH] thor: cosmetic: Update the cmd_thordown help message to present example usage
  2014-06-20 15:59 ` Stephen Warren
@ 2014-06-23  7:01   ` Lukasz Majewski
  0 siblings, 0 replies; 6+ messages in thread
From: Lukasz Majewski @ 2014-06-23  7:01 UTC (permalink / raw)
  To: u-boot

Hi Stephen,

> On 06/20/2014 01:35 AM, Lukasz Majewski wrote:
> 
> > diff --git a/common/cmd_thordown.c b/common/cmd_thordown.c
> 
> >  U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
> >  	   "TIZEN \"THOR\" downloader",
> > -	   "<USB_controller> <interface> <dev>\n"
> > +	   "<USB_controller> <interface> <dev> e.g. thor 0 mmc 0\n"
> >  	   "  - device software upgrade via LTHOR TIZEN dowload\n"
> >  	   "    program via <USB_controller> on device <dev>,\n"
> >  	   "	attached to interface <interface>\n"
> 
> I couldn't find any examples of other commands which do this. Rathe
> than add the "e.g." text, perhaps just add the word "thor" at the
> start of the command parameter list. That's much more common in
> existing commands:
> 
> -	   "<USB_controller> <interface> <dev>\n"
> +	   "thor <USB_controller> <interface> <dev>\n"
> 

Ok. Thanks.

-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group

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

* [U-Boot] [PATCH v2] thor: cosmetic: Update the cmd_thordown help message to present example usage
  2014-06-20  7:35 [U-Boot] [PATCH] thor: cosmetic: Update the cmd_thordown help message to present example usage Lukasz Majewski
  2014-06-20 15:59 ` Stephen Warren
@ 2014-06-23  7:35 ` Lukasz Majewski
  2014-06-23  8:37   ` Marek Vasut
  2014-06-23  9:50   ` Lukasz Majewski
  1 sibling, 2 replies; 6+ messages in thread
From: Lukasz Majewski @ 2014-06-23  7:35 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
---
 common/cmd_thordown.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/cmd_thordown.c b/common/cmd_thordown.c
index 2dd7509..96f7d32 100644
--- a/common/cmd_thordown.c
+++ b/common/cmd_thordown.c
@@ -64,7 +64,7 @@ exit:
 
 U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
 	   "TIZEN \"THOR\" downloader",
-	   "<USB_controller> <interface> <dev>\n"
+	   "thor <USB_controller> <interface> <dev>\n"
 	   "  - device software upgrade via LTHOR TIZEN dowload\n"
 	   "    program via <USB_controller> on device <dev>,\n"
 	   "	attached to interface <interface>\n"
-- 
2.0.0.rc2

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

* [U-Boot] [PATCH v2] thor: cosmetic: Update the cmd_thordown help message to present example usage
  2014-06-23  7:35 ` [U-Boot] [PATCH v2] " Lukasz Majewski
@ 2014-06-23  8:37   ` Marek Vasut
  2014-06-23  9:50   ` Lukasz Majewski
  1 sibling, 0 replies; 6+ messages in thread
From: Marek Vasut @ 2014-06-23  8:37 UTC (permalink / raw)
  To: u-boot

On Monday, June 23, 2014 at 09:35:04 AM, Lukasz Majewski wrote:
> Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
> ---
>  common/cmd_thordown.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/cmd_thordown.c b/common/cmd_thordown.c
> index 2dd7509..96f7d32 100644
> --- a/common/cmd_thordown.c
> +++ b/common/cmd_thordown.c
> @@ -64,7 +64,7 @@ exit:
> 
>  U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
>  	   "TIZEN \"THOR\" downloader",
> -	   "<USB_controller> <interface> <dev>\n"
> +	   "thor <USB_controller> <interface> <dev>\n"
>  	   "  - device software upgrade via LTHOR TIZEN dowload\n"
>  	   "    program via <USB_controller> on device <dev>,\n"
>  	   "	attached to interface <interface>\n"

Looks like v2014.07 matter to me. A description in the patch would be 
appreciated though, so can you do a V3 with it ?

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH v2] thor: cosmetic: Update the cmd_thordown help message to present example usage
  2014-06-23  7:35 ` [U-Boot] [PATCH v2] " Lukasz Majewski
  2014-06-23  8:37   ` Marek Vasut
@ 2014-06-23  9:50   ` Lukasz Majewski
  1 sibling, 0 replies; 6+ messages in thread
From: Lukasz Majewski @ 2014-06-23  9:50 UTC (permalink / raw)
  To: u-boot

Dear all,

> Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
> ---
>  common/cmd_thordown.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/cmd_thordown.c b/common/cmd_thordown.c
> index 2dd7509..96f7d32 100644
> --- a/common/cmd_thordown.c
> +++ b/common/cmd_thordown.c
> @@ -64,7 +64,7 @@ exit:
>  
>  U_BOOT_CMD(thordown, CONFIG_SYS_MAXARGS, 1, do_thor_down,
>  	   "TIZEN \"THOR\" downloader",
> -	   "<USB_controller> <interface> <dev>\n"
> +	   "thor <USB_controller> <interface> <dev>\n"
>  	   "  - device software upgrade via LTHOR TIZEN dowload\n"
>  	   "    program via <USB_controller> on device <dev>,\n"
>  	   "	attached to interface <interface>\n"

Please discard this patch. I need to devise more neat solution.

-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group

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

end of thread, other threads:[~2014-06-23  9:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-20  7:35 [U-Boot] [PATCH] thor: cosmetic: Update the cmd_thordown help message to present example usage Lukasz Majewski
2014-06-20 15:59 ` Stephen Warren
2014-06-23  7:01   ` Lukasz Majewski
2014-06-23  7:35 ` [U-Boot] [PATCH v2] " Lukasz Majewski
2014-06-23  8:37   ` Marek Vasut
2014-06-23  9:50   ` Lukasz Majewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox