All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE
@ 2015-03-02 17:14 Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 02/14] mx6slevk: " Fabio Estevam
                   ` (13 more replies)
  0 siblings, 14 replies; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx6sxsabresd.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx6sxsabresd.h b/include/configs/mx6sxsabresd.h
index a290129..a29d62f 100644
--- a/include/configs/mx6sxsabresd.h
+++ b/include/configs/mx6sxsabresd.h
@@ -134,8 +134,6 @@
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		1024
 
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS		256
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 02/14] mx6slevk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-03  1:11   ` Hui.Liu at freescale.com
  2015-03-02 17:14 ` [U-Boot] [PATCH 03/14] mx6qarm2: " Fabio Estevam
                   ` (12 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx6slevk.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h
index 1221418..21c654b 100644
--- a/include/configs/mx6slevk.h
+++ b/include/configs/mx6slevk.h
@@ -169,8 +169,6 @@
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		256
 
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS		16
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 03/14] mx6qarm2: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 02/14] mx6slevk: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-03  1:12   ` Hui.Liu at freescale.com
  2015-03-02 17:14 ` [U-Boot] [PATCH 04/14] mx53loco: " Fabio Estevam
                   ` (11 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx6qarm2.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx6qarm2.h b/include/configs/mx6qarm2.h
index 76cfef1..5412dd3 100644
--- a/include/configs/mx6qarm2.h
+++ b/include/configs/mx6qarm2.h
@@ -153,8 +153,6 @@
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		256
 
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS		16
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 04/14] mx53loco: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 02/14] mx6slevk: " Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 03/14] mx6qarm2: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-03  1:12   ` Hui.Liu at freescale.com
  2015-03-02 17:14 ` [U-Boot] [PATCH 05/14] mx51evk: " Fabio Estevam
                   ` (10 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx53loco.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h
index 42bc3c8..3551e02 100644
--- a/include/configs/mx53loco.h
+++ b/include/configs/mx53loco.h
@@ -182,8 +182,6 @@
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		512	/* Console I/O Buffer Size */
 
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
 
-- 
1.9.1

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

* [U-Boot] [PATCH 05/14] mx51evk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (2 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 04/14] mx53loco: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-04  8:08   ` Stefano Babic
  2015-03-02 17:14 ` [U-Boot] [PATCH 06/14] mx35pdk: " Fabio Estevam
                   ` (9 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx51evk.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h
index d6e8ec4..b0c9717 100644
--- a/include/configs/mx51evk.h
+++ b/include/configs/mx51evk.h
@@ -222,8 +222,6 @@
 #define CONFIG_SYS_HUSH_PARSER		/* use "hush" command parser */
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		256	/* Console I/O Buffer Size */
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
 
-- 
1.9.1

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

* [U-Boot] [PATCH 06/14] mx35pdk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (3 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 05/14] mx51evk: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-04  8:08   ` Stefano Babic
  2015-03-02 17:14 ` [U-Boot] [PATCH 07/14] mx31pdk: " Fabio Estevam
                   ` (8 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx35pdk.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx35pdk.h b/include/configs/mx35pdk.h
index a145f08..ae021a6 100644
--- a/include/configs/mx35pdk.h
+++ b/include/configs/mx35pdk.h
@@ -138,8 +138,6 @@
 
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE	256	/* Console I/O Buffer Size */
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
 
-- 
1.9.1

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

* [U-Boot] [PATCH 07/14] mx31pdk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (4 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 06/14] mx35pdk: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-03 18:33   ` Magnus Lilja
  2015-03-02 17:14 ` [U-Boot] [PATCH 08/14] mx25pdk: " Fabio Estevam
                   ` (7 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Magnus Lilja <lilja.magnus@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx31pdk.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h
index 2a3e53c..1282a6e 100644
--- a/include/configs/mx31pdk.h
+++ b/include/configs/mx31pdk.h
@@ -121,9 +121,6 @@
  */
 #define CONFIG_SYS_LONGHELP	/* undef to save memory */
 #define CONFIG_SYS_CBSIZE	256	/* Console I/O Buffer Size */
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE	(CONFIG_SYS_CBSIZE + \
-				sizeof(CONFIG_SYS_PROMPT)+16)
 /* max number of command args */
 #define CONFIG_SYS_MAXARGS	16
 /* Boot Argument Buffer Size */
-- 
1.9.1

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

* [U-Boot] [PATCH 08/14] mx25pdk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (5 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 07/14] mx31pdk: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 09/14] mxs: " Fabio Estevam
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx25pdk.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/include/configs/mx25pdk.h b/include/configs/mx25pdk.h
index c02e29b..bfbfc68 100644
--- a/include/configs/mx25pdk.h
+++ b/include/configs/mx25pdk.h
@@ -229,8 +229,6 @@
 #define CONFIG_SYS_HUSH_PARSER
 #define CONFIG_AUTO_COMPLETE
 
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	       16
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 09/14] mxs: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (6 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 08/14] mx25pdk: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-02 17:30   ` Marek Vasut
  2015-03-02 17:14 ` [U-Boot] [PATCH 10/14] wandboard: " Fabio Estevam
                   ` (5 subsequent siblings)
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mxs.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/mxs.h b/include/configs/mxs.h
index dea8227..38b1e93 100644
--- a/include/configs/mxs.h
+++ b/include/configs/mxs.h
@@ -94,9 +94,6 @@
 /* U-Boot general configuration */
 #define CONFIG_SYS_LONGHELP
 #define CONFIG_SYS_CBSIZE	1024		/* Console I/O buffer size */
-#define CONFIG_SYS_PBSIZE	\
-	(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
-						/* Print buffer size */
 #define CONFIG_SYS_MAXARGS	32		/* Max number of command args */
 #define CONFIG_SYS_BARGSIZE	CONFIG_SYS_CBSIZE
 						/* Boot argument buffer size */
-- 
1.9.1

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

* [U-Boot] [PATCH 10/14] wandboard: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (7 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 09/14] mxs: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 11/14] hummingboard: " Fabio Estevam
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/wandboard.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h
index 117d1f7..b586803 100644
--- a/include/configs/wandboard.h
+++ b/include/configs/wandboard.h
@@ -249,9 +249,6 @@
 #define CONFIG_SYS_HUSH_PARSER
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		256
-
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	       16
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 11/14] hummingboard: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (8 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 10/14] wandboard: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 12/14] nitrogen6x: " Fabio Estevam
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/hummingboard.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/hummingboard.h b/include/configs/hummingboard.h
index 34dbdce..973f2c5 100644
--- a/include/configs/hummingboard.h
+++ b/include/configs/hummingboard.h
@@ -185,9 +185,6 @@
 #define CONFIG_SYS_HUSH_PARSER
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE		1024
-
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	       16
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 12/14] nitrogen6x: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (9 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 11/14] hummingboard: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-02 17:14 ` [U-Boot] [PATCH 13/14] warp: " Fabio Estevam
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Eric Nelson <eric.nelson@boundarydevices.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/nitrogen6x.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h
index 6d379ed..8ef4b73 100644
--- a/include/configs/nitrogen6x.h
+++ b/include/configs/nitrogen6x.h
@@ -325,9 +325,6 @@
 #define CONFIG_SYS_PROMPT	       "U-Boot > "
 #define CONFIG_AUTO_COMPLETE
 #define CONFIG_SYS_CBSIZE	       1024
-
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS	       48
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 13/14] warp: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (10 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 12/14] nitrogen6x: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-03  1:50   ` Otavio Salvador
  2015-03-02 17:14 ` [U-Boot] [PATCH 14/14] novena: " Fabio Estevam
  2015-03-13 12:14 ` [U-Boot] [PATCH 01/14] mx6sxsabresd: " Stefano Babic
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/warp.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/warp.h b/include/configs/warp.h
index babcda5..e851da0 100644
--- a/include/configs/warp.h
+++ b/include/configs/warp.h
@@ -81,9 +81,6 @@
 #define CONFIG_HW_WATCHDOG
 #define CONFIG_IMX_WATCHDOG
 #define CONFIG_WATCHDOG_TIMEOUT_MSECS 30000 /* 30s */
-
-/* Print Buffer Size */
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
 #define CONFIG_SYS_MAXARGS		16
 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
 
-- 
1.9.1

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

* [U-Boot] [PATCH 14/14] novena: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (11 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 13/14] warp: " Fabio Estevam
@ 2015-03-02 17:14 ` Fabio Estevam
  2015-03-02 17:30   ` Marek Vasut
  2015-03-13 12:14 ` [U-Boot] [PATCH 01/14] mx6sxsabresd: " Stefano Babic
  13 siblings, 1 reply; 24+ messages in thread
From: Fabio Estevam @ 2015-03-02 17:14 UTC (permalink / raw)
  To: u-boot

Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
the console and hitting enter afterwards, causes a hang in the system because
CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
message:
"Unknown command '' - try 'help'".

Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
this problem.

Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/novena.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/novena.h b/include/configs/novena.h
index 074110c..3809c6c 100644
--- a/include/configs/novena.h
+++ b/include/configs/novena.h
@@ -58,9 +58,6 @@
 /* U-Boot general configurations */
 #define CONFIG_SYS_LONGHELP
 #define CONFIG_SYS_CBSIZE	1024		/* Console I/O buffer size */
-#define CONFIG_SYS_PBSIZE	\
-	(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
-						/* Print buffer size */
 #define CONFIG_SYS_MAXARGS	32		/* Max number of command args */
 #define CONFIG_SYS_BARGSIZE	CONFIG_SYS_CBSIZE
 						/* Boot argument buffer size */
-- 
1.9.1

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

* [U-Boot] [PATCH 09/14] mxs: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 09/14] mxs: " Fabio Estevam
@ 2015-03-02 17:30   ` Marek Vasut
  0 siblings, 0 replies; 24+ messages in thread
From: Marek Vasut @ 2015-03-02 17:30 UTC (permalink / raw)
  To: u-boot

On Monday, March 02, 2015 at 06:14:33 PM, Fabio Estevam wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system
> because CONFIG_SYS_PBSIZE is not capable of storing the extra characters
> of the error message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to
> solve this problem.
> 
> Cc: Marek Vasut <marex@denx.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 14/14] novena: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 14/14] novena: " Fabio Estevam
@ 2015-03-02 17:30   ` Marek Vasut
  0 siblings, 0 replies; 24+ messages in thread
From: Marek Vasut @ 2015-03-02 17:30 UTC (permalink / raw)
  To: u-boot

On Monday, March 02, 2015 at 06:14:38 PM, Fabio Estevam wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system
> because CONFIG_SYS_PBSIZE is not capable of storing the extra characters
> of the error message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to
> solve this problem.
> 
> Cc: Marek Vasut <marex@denx.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Marek Vasut <marex@denx.de>

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 02/14] mx6slevk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 02/14] mx6slevk: " Fabio Estevam
@ 2015-03-03  1:11   ` Hui.Liu at freescale.com
  0 siblings, 0 replies; 24+ messages in thread
From: Hui.Liu at freescale.com @ 2015-03-03  1:11 UTC (permalink / raw)
  To: u-boot

> -----Original Message-----
> From: Fabio Estevam [mailto:fabio.estevam at freescale.com]
> Sent: Tuesday, March 03, 2015 1:14 AM
> To: sbabic at denx.de
> Cc: u-boot at lists.denx.de; Estevam Fabio-R49496; Liu Hui-R64343
> Subject: [PATCH 02/14] mx6slevk: Use the default CONFIG_SYS_PBSIZE
> 
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE
> into the console and hitting enter afterwards, causes a hang in the
> system because CONFIG_SYS_PBSIZE is not capable of storing the extra
> characters of the error
> message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to
> solve this problem.
> 
> Cc: Jason Liu <r64343@freescale.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/mx6slevk.h | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h
> index 1221418..21c654b 100644
> --- a/include/configs/mx6slevk.h
> +++ b/include/configs/mx6slevk.h
> @@ -169,8 +169,6 @@
>  #define CONFIG_AUTO_COMPLETE
>  #define CONFIG_SYS_CBSIZE		256
> 
> -/* Print Buffer Size */
> -#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT)
> + 16)
>  #define CONFIG_SYS_MAXARGS		16
>  #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE


Acked-by: Jason Liu <r64343@freescale.com>

> 
> --
> 1.9.1

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

* [U-Boot] [PATCH 03/14] mx6qarm2: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 03/14] mx6qarm2: " Fabio Estevam
@ 2015-03-03  1:12   ` Hui.Liu at freescale.com
  0 siblings, 0 replies; 24+ messages in thread
From: Hui.Liu at freescale.com @ 2015-03-03  1:12 UTC (permalink / raw)
  To: u-boot

> -----Original Message-----
> From: Fabio Estevam [mailto:fabio.estevam at freescale.com]
> Sent: Tuesday, March 03, 2015 1:14 AM
> To: sbabic at denx.de
> Cc: u-boot at lists.denx.de; Estevam Fabio-R49496; Liu Hui-R64343
> Subject: [PATCH 03/14] mx6qarm2: Use the default CONFIG_SYS_PBSIZE
> 
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE
> into the console and hitting enter afterwards, causes a hang in the
> system because CONFIG_SYS_PBSIZE is not capable of storing the extra
> characters of the error
> message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to
> solve this problem.
> 
> Cc: Jason Liu <r64343@freescale.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/mx6qarm2.h | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/include/configs/mx6qarm2.h b/include/configs/mx6qarm2.h
> index 76cfef1..5412dd3 100644
> --- a/include/configs/mx6qarm2.h
> +++ b/include/configs/mx6qarm2.h
> @@ -153,8 +153,6 @@
>  #define CONFIG_AUTO_COMPLETE
>  #define CONFIG_SYS_CBSIZE		256
> 
> -/* Print Buffer Size */
> -#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT)
> + 16)
>  #define CONFIG_SYS_MAXARGS		16
>  #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE

Acked-by: Jason Liu <r64343@freescale.com>

> 
> --
> 1.9.1

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

* [U-Boot] [PATCH 04/14] mx53loco: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 04/14] mx53loco: " Fabio Estevam
@ 2015-03-03  1:12   ` Hui.Liu at freescale.com
  0 siblings, 0 replies; 24+ messages in thread
From: Hui.Liu at freescale.com @ 2015-03-03  1:12 UTC (permalink / raw)
  To: u-boot

> -----Original Message-----
> From: Fabio Estevam [mailto:fabio.estevam at freescale.com]
> Sent: Tuesday, March 03, 2015 1:14 AM
> To: sbabic at denx.de
> Cc: u-boot at lists.denx.de; Estevam Fabio-R49496; Liu Hui-R64343
> Subject: [PATCH 04/14] mx53loco: Use the default CONFIG_SYS_PBSIZE
> 
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE
> into the console and hitting enter afterwards, causes a hang in the
> system because CONFIG_SYS_PBSIZE is not capable of storing the extra
> characters of the error
> message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to
> solve this problem.
> 
> Cc: Jason Liu <r64343@freescale.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/mx53loco.h | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h
> index 42bc3c8..3551e02 100644
> --- a/include/configs/mx53loco.h
> +++ b/include/configs/mx53loco.h
> @@ -182,8 +182,6 @@
>  #define CONFIG_AUTO_COMPLETE
>  #define CONFIG_SYS_CBSIZE		512	/* Console I/O Buffer Size */
> 
> -/* Print Buffer Size */
> -#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT)
> + 16)
>  #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
>  #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer
> Size */

Acked-by: Jason Liu <r64343@freescale.com>

> 
> --
> 1.9.1

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

* [U-Boot] [PATCH 13/14] warp: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 13/14] warp: " Fabio Estevam
@ 2015-03-03  1:50   ` Otavio Salvador
  0 siblings, 0 replies; 24+ messages in thread
From: Otavio Salvador @ 2015-03-03  1:50 UTC (permalink / raw)
  To: u-boot

On Mon, Mar 2, 2015 at 2:14 PM, Fabio Estevam
<fabio.estevam@freescale.com> wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system because
> CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
> message:
> "Unknown command '' - try 'help'".
>
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
> this problem.
>
> Cc: Otavio Salvador <otavio@ossystems.com.br>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

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

* [U-Boot] [PATCH 07/14] mx31pdk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 07/14] mx31pdk: " Fabio Estevam
@ 2015-03-03 18:33   ` Magnus Lilja
  0 siblings, 0 replies; 24+ messages in thread
From: Magnus Lilja @ 2015-03-03 18:33 UTC (permalink / raw)
  To: u-boot

Hi

On 2 March 2015 at 18:14, Fabio Estevam <fabio.estevam@freescale.com> wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system because
> CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
> message:
> "Unknown command '' - try 'help'".
>
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
> this problem.
>
> Cc: Magnus Lilja <lilja.magnus@gmail.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/mx31pdk.h | 3 ---
>  1 file changed, 3 deletions(-)
>
> diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h
> index 2a3e53c..1282a6e 100644
> --- a/include/configs/mx31pdk.h
> +++ b/include/configs/mx31pdk.h
> @@ -121,9 +121,6 @@
>   */
>  #define CONFIG_SYS_LONGHELP    /* undef to save memory */
>  #define CONFIG_SYS_CBSIZE      256     /* Console I/O Buffer Size */
> -/* Print Buffer Size */
> -#define CONFIG_SYS_PBSIZE      (CONFIG_SYS_CBSIZE + \
> -                               sizeof(CONFIG_SYS_PROMPT)+16)
>  /* max number of command args */
>  #define CONFIG_SYS_MAXARGS     16
>  /* Boot Argument Buffer Size */
> --

Looks ok to me.

Acked-by: Magnus Lilja <lilja.magnus@gmail.com>

/Magnus

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

* [U-Boot] [PATCH 06/14] mx35pdk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 06/14] mx35pdk: " Fabio Estevam
@ 2015-03-04  8:08   ` Stefano Babic
  0 siblings, 0 replies; 24+ messages in thread
From: Stefano Babic @ 2015-03-04  8:08 UTC (permalink / raw)
  To: u-boot

On 02/03/2015 18:14, Fabio Estevam wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system because
> CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
> message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
> this problem.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/mx35pdk.h | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/include/configs/mx35pdk.h b/include/configs/mx35pdk.h
> index a145f08..ae021a6 100644
> --- a/include/configs/mx35pdk.h
> +++ b/include/configs/mx35pdk.h
> @@ -138,8 +138,6 @@
>  
>  #define CONFIG_AUTO_COMPLETE
>  #define CONFIG_SYS_CBSIZE	256	/* Console I/O Buffer Size */
> -/* Print Buffer Size */
> -#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
>  #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
>  #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
>  
> 

Acked-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

* [U-Boot] [PATCH 05/14] mx51evk: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 ` [U-Boot] [PATCH 05/14] mx51evk: " Fabio Estevam
@ 2015-03-04  8:08   ` Stefano Babic
  0 siblings, 0 replies; 24+ messages in thread
From: Stefano Babic @ 2015-03-04  8:08 UTC (permalink / raw)
  To: u-boot

On 02/03/2015 18:14, Fabio Estevam wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system because
> CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
> message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
> this problem.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  include/configs/mx51evk.h | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h
> index d6e8ec4..b0c9717 100644
> --- a/include/configs/mx51evk.h
> +++ b/include/configs/mx51evk.h
> @@ -222,8 +222,6 @@
>  #define CONFIG_SYS_HUSH_PARSER		/* use "hush" command parser */
>  #define CONFIG_AUTO_COMPLETE
>  #define CONFIG_SYS_CBSIZE		256	/* Console I/O Buffer Size */
> -/* Print Buffer Size */
> -#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
>  #define CONFIG_SYS_MAXARGS	16	/* max number of command args */
>  #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
>  
> 

Acked-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

* [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE
  2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
                   ` (12 preceding siblings ...)
  2015-03-02 17:14 ` [U-Boot] [PATCH 14/14] novena: " Fabio Estevam
@ 2015-03-13 12:14 ` Stefano Babic
  13 siblings, 0 replies; 24+ messages in thread
From: Stefano Babic @ 2015-03-13 12:14 UTC (permalink / raw)
  To: u-boot

Hi Fabio,

On 02/03/2015 18:14, Fabio Estevam wrote:
> Entering the maximum number of characters defined by CONFIG_SYS_CBSIZE into
> the console and hitting enter afterwards, causes a hang in the system because
> CONFIG_SYS_PBSIZE is not capable of storing the extra characters of the error
> message:
> "Unknown command '' - try 'help'".
> 
> Use the default CONFIG_SYS_PBSIZE definition from config_fallbacks.h to solve
> this problem.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---

Whole series applied to u-boot-imx, thanks !

Best regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2015-03-13 12:14 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-02 17:14 [U-Boot] [PATCH 01/14] mx6sxsabresd: Use the default CONFIG_SYS_PBSIZE Fabio Estevam
2015-03-02 17:14 ` [U-Boot] [PATCH 02/14] mx6slevk: " Fabio Estevam
2015-03-03  1:11   ` Hui.Liu at freescale.com
2015-03-02 17:14 ` [U-Boot] [PATCH 03/14] mx6qarm2: " Fabio Estevam
2015-03-03  1:12   ` Hui.Liu at freescale.com
2015-03-02 17:14 ` [U-Boot] [PATCH 04/14] mx53loco: " Fabio Estevam
2015-03-03  1:12   ` Hui.Liu at freescale.com
2015-03-02 17:14 ` [U-Boot] [PATCH 05/14] mx51evk: " Fabio Estevam
2015-03-04  8:08   ` Stefano Babic
2015-03-02 17:14 ` [U-Boot] [PATCH 06/14] mx35pdk: " Fabio Estevam
2015-03-04  8:08   ` Stefano Babic
2015-03-02 17:14 ` [U-Boot] [PATCH 07/14] mx31pdk: " Fabio Estevam
2015-03-03 18:33   ` Magnus Lilja
2015-03-02 17:14 ` [U-Boot] [PATCH 08/14] mx25pdk: " Fabio Estevam
2015-03-02 17:14 ` [U-Boot] [PATCH 09/14] mxs: " Fabio Estevam
2015-03-02 17:30   ` Marek Vasut
2015-03-02 17:14 ` [U-Boot] [PATCH 10/14] wandboard: " Fabio Estevam
2015-03-02 17:14 ` [U-Boot] [PATCH 11/14] hummingboard: " Fabio Estevam
2015-03-02 17:14 ` [U-Boot] [PATCH 12/14] nitrogen6x: " Fabio Estevam
2015-03-02 17:14 ` [U-Boot] [PATCH 13/14] warp: " Fabio Estevam
2015-03-03  1:50   ` Otavio Salvador
2015-03-02 17:14 ` [U-Boot] [PATCH 14/14] novena: " Fabio Estevam
2015-03-02 17:30   ` Marek Vasut
2015-03-13 12:14 ` [U-Boot] [PATCH 01/14] mx6sxsabresd: " Stefano Babic

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.