All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] edminiv2: add hush parser and long help
@ 2012-01-16  7:45 Albert ARIBAUD
  2012-01-16  8:22 ` Prafulla Wadaskar
  2012-01-16 20:11 ` [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing " Albert ARIBAUD
  0 siblings, 2 replies; 5+ messages in thread
From: Albert ARIBAUD @ 2012-01-16  7:45 UTC (permalink / raw)
  To: u-boot


Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
 include/configs/edminiv2.h |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h
index 88d32b2..9134884 100644
--- a/include/configs/edminiv2.h
+++ b/include/configs/edminiv2.h
@@ -221,6 +221,13 @@
 #define CONFIG_SYS_RESET_ADDRESS	0xffff0000
 #define CONFIG_SYS_MAXARGS		16
 
+/* Use the HUSH parser */
+#define CONFIG_SYS_HUSH_PARSER
+#define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
+
+/* provide extensive help */
+#define CONFIG_SYS_LONGHELP
+
 /* additions for new relocation code, must be added to all boards */
 #define CONFIG_SYS_SDRAM_BASE		0
 #define CONFIG_SYS_INIT_SP_ADDR	\
-- 
1.7.5.4

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

* [U-Boot] [PATCH] edminiv2: add hush parser and long help
  2012-01-16  7:45 [U-Boot] [PATCH] edminiv2: add hush parser and long help Albert ARIBAUD
@ 2012-01-16  8:22 ` Prafulla Wadaskar
  2012-01-16 20:11 ` [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing " Albert ARIBAUD
  1 sibling, 0 replies; 5+ messages in thread
From: Prafulla Wadaskar @ 2012-01-16  8:22 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: u-boot-bounces at lists.denx.de [mailto:u-boot-
> bounces at lists.denx.de] On Behalf Of Albert ARIBAUD
> Sent: 16 January 2012 13:15
> To: u-boot at lists.denx.de
> Subject: [U-Boot] [PATCH] edminiv2: add hush parser and long help
> 
> 
> Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
> ---
>  include/configs/edminiv2.h |    7 +++++++
>  1 files changed, 7 insertions(+), 0 deletions(-)
> 
> diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h
> index 88d32b2..9134884 100644
> --- a/include/configs/edminiv2.h
> +++ b/include/configs/edminiv2.h
> @@ -221,6 +221,13 @@
>  #define CONFIG_SYS_RESET_ADDRESS	0xffff0000
>  #define CONFIG_SYS_MAXARGS		16
> 
> +/* Use the HUSH parser */
> +#define CONFIG_SYS_HUSH_PARSER
> +#define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
> +
> +/* provide extensive help */
> +#define CONFIG_SYS_LONGHELP
> +
>  /* additions for new relocation code, must be added to all boards */
>  #define CONFIG_SYS_SDRAM_BASE		0
>  #define CONFIG_SYS_INIT_SP_ADDR	\

Acked-by: Prafulla Wadaskar <Prafulla@marvell.com>

Regards..
Prafulla . . .

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

* [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing  and long help
  2012-01-16  7:45 [U-Boot] [PATCH] edminiv2: add hush parser and long help Albert ARIBAUD
  2012-01-16  8:22 ` Prafulla Wadaskar
@ 2012-01-16 20:11 ` Albert ARIBAUD
  2012-02-08  9:51   ` Prafulla Wadaskar
  1 sibling, 1 reply; 5+ messages in thread
From: Albert ARIBAUD @ 2012-01-16 20:11 UTC (permalink / raw)
  To: u-boot


Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
---
Patch history:
 V2: include cmdline editing, forgotten in V1

 include/configs/edminiv2.h |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h
index 88d32b2..988d045 100644
--- a/include/configs/edminiv2.h
+++ b/include/configs/edminiv2.h
@@ -221,6 +221,16 @@
 #define CONFIG_SYS_RESET_ADDRESS	0xffff0000
 #define CONFIG_SYS_MAXARGS		16
 
+/* Use the HUSH parser */
+#define CONFIG_SYS_HUSH_PARSER
+#define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
+
+/* Enable command line editing */
+#define CONFIG_CMDLINE_EDITING
+
+/* provide extensive help */
+#define CONFIG_SYS_LONGHELP
+
 /* additions for new relocation code, must be added to all boards */
 #define CONFIG_SYS_SDRAM_BASE		0
 #define CONFIG_SYS_INIT_SP_ADDR	\
-- 
1.7.5.4

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

* [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing  and long help
  2012-01-16 20:11 ` [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing " Albert ARIBAUD
@ 2012-02-08  9:51   ` Prafulla Wadaskar
  2012-02-10 19:46     ` Albert ARIBAUD
  0 siblings, 1 reply; 5+ messages in thread
From: Prafulla Wadaskar @ 2012-02-08  9:51 UTC (permalink / raw)
  To: u-boot



> -----Original Message-----
> From: u-boot-bounces at lists.denx.de [mailto:u-boot-
> bounces at lists.denx.de] On Behalf Of Albert ARIBAUD
> Sent: 17 January 2012 01:42
> To: u-boot at lists.denx.de
> Subject: [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline
> editing and long help
> 
> 
> Signed-off-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
> ---
> Patch history:
>  V2: include cmdline editing, forgotten in V1
> 
>  include/configs/edminiv2.h |   10 ++++++++++
>  1 files changed, 10 insertions(+), 0 deletions(-)
> 
> diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h
> index 88d32b2..988d045 100644
> --- a/include/configs/edminiv2.h
> +++ b/include/configs/edminiv2.h
> @@ -221,6 +221,16 @@
>  #define CONFIG_SYS_RESET_ADDRESS	0xffff0000
>  #define CONFIG_SYS_MAXARGS		16
> 
> +/* Use the HUSH parser */
> +#define CONFIG_SYS_HUSH_PARSER
> +#define CONFIG_SYS_PROMPT_HUSH_PS2	"> "
> +
> +/* Enable command line editing */
> +#define CONFIG_CMDLINE_EDITING
> +
> +/* provide extensive help */
> +#define CONFIG_SYS_LONGHELP
> +
>  /* additions for new relocation code, must be added to all boards */
>  #define CONFIG_SYS_SDRAM_BASE		0
>  #define CONFIG_SYS_INIT_SP_ADDR	\
> --

Applied to u-boot-marvell.git master branch

Regards..
Prafulla . . .

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

* [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing and long help
  2012-02-08  9:51   ` Prafulla Wadaskar
@ 2012-02-10 19:46     ` Albert ARIBAUD
  0 siblings, 0 replies; 5+ messages in thread
From: Albert ARIBAUD @ 2012-02-10 19:46 UTC (permalink / raw)
  To: u-boot

Le 08/02/2012 10:51, Prafulla Wadaskar a ?crit :

> Applied to u-boot-marvell.git master branch

Thanks!

> Regards..
> Prafulla . . .

Amicalement,
-- 
Albert.

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

end of thread, other threads:[~2012-02-10 19:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-16  7:45 [U-Boot] [PATCH] edminiv2: add hush parser and long help Albert ARIBAUD
2012-01-16  8:22 ` Prafulla Wadaskar
2012-01-16 20:11 ` [U-Boot] [PATCH V2] edminiv2: add hush parser, cmdline editing " Albert ARIBAUD
2012-02-08  9:51   ` Prafulla Wadaskar
2012-02-10 19:46     ` Albert ARIBAUD

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.