]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ti_armv7_common: env: Increase IO buffer size
authorLokesh Vutla <lokeshvutla@ti.com>
Fri, 25 Nov 2016 05:44:26 +0000 (11:14 +0530)
committerTom Rini <trini@konsulko.com>
Sun, 4 Dec 2016 18:54:56 +0000 (13:54 -0500)
There are certain environment variables whose length is greater than
the defined IO buffer size. So, increase the IO buffer size to print the
entire variables.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
include/configs/ti_armv7_common.h

index ae2cf460b12b3005ff31e56ff89b93cb26bc6773..d13fc94785badf952ff681bd34bb65b9778e7a37 100644 (file)
 #define CONFIG_SYS_MAXARGS             64
 
 /* Console I/O Buffer Size */
-#define CONFIG_SYS_CBSIZE              512
+#define CONFIG_SYS_CBSIZE              1024
 /* Print Buffer Size */
 #define CONFIG_SYS_PBSIZE              (CONFIG_SYS_CBSIZE \
                                        + sizeof(CONFIG_SYS_PROMPT) + 16)