public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] siemens,at91: enable features for smartweb
@ 2016-01-27 14:56 Samuel Egli
  2016-01-28  6:06 ` Heiko Schocher
  2016-02-16 23:10 ` [U-Boot] " Andreas Bießmann
  0 siblings, 2 replies; 3+ messages in thread
From: Samuel Egli @ 2016-01-27 14:56 UTC (permalink / raw)
  To: u-boot

From: Matthias Michel <matthias.michel@siemens.com>

New features for smartweb:
* switch to hush command parser
* change autoboot stop to <ESC><ESC>
* allow to write ethaddr

Signed-off-by: Matthias Michel <matthias.michel@siemens.com>
Reviewed-by: Samuel Egli <samuel.egli@siemens.com>
Cc: Roger Meier <r.meier@siemens.com>
Cc: Heiko Schocher <hs@denx.de>
---
 configs/smartweb_defconfig |  5 ++++-
 include/configs/smartweb.h | 14 ++++++++++----
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/configs/smartweb_defconfig b/configs/smartweb_defconfig
index ee4340f..654bb4b 100644
--- a/configs/smartweb_defconfig
+++ b/configs/smartweb_defconfig
@@ -3,4 +3,7 @@ CONFIG_ARCH_AT91=y
 CONFIG_TARGET_SMARTWEB=y
 CONFIG_SPL=y
 CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9260"
-CONFIG_SYS_PROMPT="U-Boot> "
+CONFIG_SYS_PROMPT="U-Boot# "
+CONFIG_AUTOBOOT_KEYED=y
+CONFIG_AUTOBOOT_PROMPT="Autobooting in %d seconds, press \"<Esc><Esc>\" to stop\n"
+CONFIG_AUTOBOOT_STOP_STR="\x1b\x1b"
diff --git a/include/configs/smartweb.h b/include/configs/smartweb.h
index 44d1d5a..de7b6bc 100644
--- a/include/configs/smartweb.h
+++ b/include/configs/smartweb.h
@@ -49,10 +49,18 @@
 #define CONFIG_BOARD_EARLY_INIT_F	/* call board_early_init_f() */
 #define CONFIG_DISPLAY_CPUINFO		/* display CPU Info at startup */
 
+/* We set the max number of command args high to avoid HUSH bugs. */
+#define CONFIG_SYS_MAXARGS    32
+
 /* setting board specific options */
-# define CONFIG_MACH_TYPE		MACH_TYPE_SMARTWEB
-#define CONFIG_CMDLINE_EDITING
+#define CONFIG_MACH_TYPE		MACH_TYPE_SMARTWEB
+#define CONFIG_AUTO_COMPLETE
+#define CONFIG_ENV_OVERWRITE    1 /* Overwrite ethaddr / serial# */
+#define CONFIG_SYS_HUSH_PARSER    /* use "hush" command parser */
+#define CONFIG_SYS_PROMPT_HUSH_PS2  "> "
 #define CONFIG_AUTO_COMPLETE
+#define CONFIG_SYS_AUTOLOAD "yes"
+#define CONFIG_RESET_TO_RETRY
 
 /* The LED PINs */
 #define CONFIG_RED_LED			AT91_PIN_PA9
@@ -184,9 +192,7 @@
 /* General Boot Parameter */
 #define CONFIG_BOOTDELAY		3
 #define CONFIG_BOOTCOMMAND		"run flashboot"
-#define CONFIG_BOOT_RETRY_TIME          30
 #define CONFIG_SYS_CBSIZE		512
-#define CONFIG_SYS_MAXARGS		16
 #define CONFIG_SYS_PBSIZE \
 	(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_LONGHELP
-- 
2.1.4

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

* [U-Boot] [PATCH] siemens,at91: enable features for smartweb
  2016-01-27 14:56 [U-Boot] [PATCH] siemens,at91: enable features for smartweb Samuel Egli
@ 2016-01-28  6:06 ` Heiko Schocher
  2016-02-16 23:10 ` [U-Boot] " Andreas Bießmann
  1 sibling, 0 replies; 3+ messages in thread
From: Heiko Schocher @ 2016-01-28  6:06 UTC (permalink / raw)
  To: u-boot

Hello Samuel,

Am 27.01.2016 um 15:56 schrieb Samuel Egli:
> From: Matthias Michel <matthias.michel@siemens.com>
>
> New features for smartweb:
> * switch to hush command parser
> * change autoboot stop to <ESC><ESC>
> * allow to write ethaddr
>
> Signed-off-by: Matthias Michel <matthias.michel@siemens.com>
> Reviewed-by: Samuel Egli <samuel.egli@siemens.com>
> Cc: Roger Meier <r.meier@siemens.com>
> Cc: Heiko Schocher <hs@denx.de>
> ---
>   configs/smartweb_defconfig |  5 ++++-
>   include/configs/smartweb.h | 14 ++++++++++----
>   2 files changed, 14 insertions(+), 5 deletions(-)

Reviewed-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
>
> diff --git a/configs/smartweb_defconfig b/configs/smartweb_defconfig
> index ee4340f..654bb4b 100644
> --- a/configs/smartweb_defconfig
> +++ b/configs/smartweb_defconfig
> @@ -3,4 +3,7 @@ CONFIG_ARCH_AT91=y
>   CONFIG_TARGET_SMARTWEB=y
>   CONFIG_SPL=y
>   CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9260"
> -CONFIG_SYS_PROMPT="U-Boot> "
> +CONFIG_SYS_PROMPT="U-Boot# "
> +CONFIG_AUTOBOOT_KEYED=y
> +CONFIG_AUTOBOOT_PROMPT="Autobooting in %d seconds, press \"<Esc><Esc>\" to stop\n"
> +CONFIG_AUTOBOOT_STOP_STR="\x1b\x1b"
> diff --git a/include/configs/smartweb.h b/include/configs/smartweb.h
> index 44d1d5a..de7b6bc 100644
> --- a/include/configs/smartweb.h
> +++ b/include/configs/smartweb.h
> @@ -49,10 +49,18 @@
>   #define CONFIG_BOARD_EARLY_INIT_F	/* call board_early_init_f() */
>   #define CONFIG_DISPLAY_CPUINFO		/* display CPU Info at startup */
>
> +/* We set the max number of command args high to avoid HUSH bugs. */
> +#define CONFIG_SYS_MAXARGS    32
> +
>   /* setting board specific options */
> -# define CONFIG_MACH_TYPE		MACH_TYPE_SMARTWEB
> -#define CONFIG_CMDLINE_EDITING
> +#define CONFIG_MACH_TYPE		MACH_TYPE_SMARTWEB
> +#define CONFIG_AUTO_COMPLETE
> +#define CONFIG_ENV_OVERWRITE    1 /* Overwrite ethaddr / serial# */
> +#define CONFIG_SYS_HUSH_PARSER    /* use "hush" command parser */
> +#define CONFIG_SYS_PROMPT_HUSH_PS2  "> "
>   #define CONFIG_AUTO_COMPLETE
> +#define CONFIG_SYS_AUTOLOAD "yes"
> +#define CONFIG_RESET_TO_RETRY
>
>   /* The LED PINs */
>   #define CONFIG_RED_LED			AT91_PIN_PA9
> @@ -184,9 +192,7 @@
>   /* General Boot Parameter */
>   #define CONFIG_BOOTDELAY		3
>   #define CONFIG_BOOTCOMMAND		"run flashboot"
> -#define CONFIG_BOOT_RETRY_TIME          30
>   #define CONFIG_SYS_CBSIZE		512
> -#define CONFIG_SYS_MAXARGS		16
>   #define CONFIG_SYS_PBSIZE \
>   	(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
>   #define CONFIG_SYS_LONGHELP
>

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

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

* [U-Boot] siemens,at91: enable features for smartweb
  2016-01-27 14:56 [U-Boot] [PATCH] siemens,at91: enable features for smartweb Samuel Egli
  2016-01-28  6:06 ` Heiko Schocher
@ 2016-02-16 23:10 ` Andreas Bießmann
  1 sibling, 0 replies; 3+ messages in thread
From: Andreas Bießmann @ 2016-02-16 23:10 UTC (permalink / raw)
  To: u-boot

On Wed, Jan 27, 2016 at 03:56:07PM +0100, Egli, Samuel wrote:
> From: Matthias Michel <matthias.michel@siemens.com>
> 
> New features for smartweb:
> * switch to hush command parser
> * change autoboot stop to <ESC><ESC>
> * allow to write ethaddr
> 
> Signed-off-by: Matthias Michel <matthias.michel@siemens.com>
> Reviewed-by: Samuel Egli <samuel.egli@siemens.com>
> Cc: Roger Meier <r.meier@siemens.com>
> Cc: Heiko Schocher <hs@denx.de>
> Reviewed-by: Heiko Schocher <hs@denx.de>

Reviewed-by: Andreas Bie?mann <andreas.devel@googlemail.com>

> ---
>  configs/smartweb_defconfig |  5 ++++-
>  include/configs/smartweb.h | 14 ++++++++++----
>  2 files changed, 14 insertions(+), 5 deletions(-)
> 
> diff --git a/configs/smartweb_defconfig b/configs/smartweb_defconfig
> index ee4340f..654bb4b 100644
> --- a/configs/smartweb_defconfig
> +++ b/configs/smartweb_defconfig
> @@ -3,4 +3,7 @@ CONFIG_ARCH_AT91=y
>  CONFIG_TARGET_SMARTWEB=y
>  CONFIG_SPL=y
>  CONFIG_SYS_EXTRA_OPTIONS="AT91SAM9260"
> -CONFIG_SYS_PROMPT="U-Boot> "
> +CONFIG_SYS_PROMPT="U-Boot# "
> +CONFIG_AUTOBOOT_KEYED=y
> +CONFIG_AUTOBOOT_PROMPT="Autobooting in %d seconds, press \"<Esc><Esc>\" to stop\n"
> +CONFIG_AUTOBOOT_STOP_STR="\x1b\x1b"
> diff --git a/include/configs/smartweb.h b/include/configs/smartweb.h
> index 44d1d5a..de7b6bc 100644
> --- a/include/configs/smartweb.h
> +++ b/include/configs/smartweb.h
> @@ -49,10 +49,18 @@
>  #define CONFIG_BOARD_EARLY_INIT_F	/* call board_early_init_f() */
>  #define CONFIG_DISPLAY_CPUINFO		/* display CPU Info at startup */
>  
> +/* We set the max number of command args high to avoid HUSH bugs. */
> +#define CONFIG_SYS_MAXARGS    32
> +
>  /* setting board specific options */
> -# define CONFIG_MACH_TYPE		MACH_TYPE_SMARTWEB
> -#define CONFIG_CMDLINE_EDITING
> +#define CONFIG_MACH_TYPE		MACH_TYPE_SMARTWEB
> +#define CONFIG_AUTO_COMPLETE
> +#define CONFIG_ENV_OVERWRITE    1 /* Overwrite ethaddr / serial# */
> +#define CONFIG_SYS_HUSH_PARSER    /* use "hush" command parser */
> +#define CONFIG_SYS_PROMPT_HUSH_PS2  "> "
>  #define CONFIG_AUTO_COMPLETE
> +#define CONFIG_SYS_AUTOLOAD "yes"
> +#define CONFIG_RESET_TO_RETRY
>  
>  /* The LED PINs */
>  #define CONFIG_RED_LED			AT91_PIN_PA9
> @@ -184,9 +192,7 @@
>  /* General Boot Parameter */
>  #define CONFIG_BOOTDELAY		3
>  #define CONFIG_BOOTCOMMAND		"run flashboot"
> -#define CONFIG_BOOT_RETRY_TIME          30
>  #define CONFIG_SYS_CBSIZE		512
> -#define CONFIG_SYS_MAXARGS		16
>  #define CONFIG_SYS_PBSIZE \
>  	(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
>  #define CONFIG_SYS_LONGHELP

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

end of thread, other threads:[~2016-02-16 23:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-27 14:56 [U-Boot] [PATCH] siemens,at91: enable features for smartweb Samuel Egli
2016-01-28  6:06 ` Heiko Schocher
2016-02-16 23:10 ` [U-Boot] " Andreas Bießmann

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