[U-Boot] [PATCH] arndale: Increase command line buffer size (CONFIG_SYS_CBSIZE)

Ian Campbell ian.campbell at citrix.com
Tue Oct 7 15:21:02 CEST 2014


I was running into this limit with a not overly long PXE append line.

Since the PXE code wants to print the resulting command line increase
CONFIG_SYS_PBSIZE too.

Signed-off-by: Ian Campbell <ian.campbell at citrix.com>
---
 include/configs/arndale.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/configs/arndale.h b/include/configs/arndale.h
index f702b6e..adc3eaa 100644
--- a/include/configs/arndale.h
+++ b/include/configs/arndale.h
@@ -116,8 +116,8 @@
 
 /* Miscellaneous configurable options */
 #define CONFIG_SYS_PROMPT		"ARNDALE # "
-#define CONFIG_SYS_CBSIZE		256	/* Console I/O Buffer Size */
-#define CONFIG_SYS_PBSIZE		384	/* Print Buffer Size */
+#define CONFIG_SYS_CBSIZE		1024	/* Console I/O Buffer Size */
+#define CONFIG_SYS_PBSIZE		1024	/* Print Buffer Size */
 #define CONFIG_SYS_MAXARGS		16	/* max number of command args */
 #define CONFIG_DEFAULT_CONSOLE		"console=ttySAC2,115200n8\0"
 /* Boot Argument Buffer Size */
-- 
2.1.0



More information about the U-Boot mailing list