diff options
| author | Lokesh Vutla <[email protected]> | 2016-11-25 11:14:26 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-12-04 13:54:56 -0500 |
| commit | b9daed8a41259ebf0e33286351053852452820d8 (patch) | |
| tree | 4373c0a96c153323aae788e605b4aa4f85b0d8ff /include | |
| parent | 45e7f7e78b212e6ff10d396d35c3e4500fb36860 (diff) | |
ti_armv7_common: env: Increase IO buffer size
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 <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/ti_armv7_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index ae2cf460b12..d13fc94785b 100644 --- a/include/configs/ti_armv7_common.h +++ b/include/configs/ti_armv7_common.h @@ -199,7 +199,7 @@ #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) |
