diff options
author | Ye.Li <B37916@freescale.com> | 2014-06-05 11:08:07 +0800 |
---|---|---|
committer | Ye.Li <B37916@freescale.com> | 2014-06-17 11:13:41 +0800 |
commit | c89e63ce42c5da5fc0624589c1c9619af2e1eb1c (patch) | |
tree | 5ed7223bc3b5b8308ed42d15aad3f2aa4fcf4f14 /include | |
parent | 684958f4162c12b923636f97ce0c5a32747cc62b (diff) | |
download | u-boot-imx-c89e63ce42c5da5fc0624589c1c9619af2e1eb1c.zip u-boot-imx-c89e63ce42c5da5fc0624589c1c9619af2e1eb1c.tar.gz u-boot-imx-c89e63ce42c5da5fc0624589c1c9619af2e1eb1c.tar.bz2 |
ENGR00315894-18 i.mx6: increase the console I/O buffer to 1K
Current console buffer is 256 bytes long, it is too small.
increase it to 1K.
Signed-off-by: Huang Shijie <b32955@freescale.com>
Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx6qarm2.h | 4 | ||||
-rw-r--r-- | include/configs/mx6sabre_common.h | 2 | ||||
-rw-r--r-- | include/configs/mx6slevk.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/configs/mx6qarm2.h b/include/configs/mx6qarm2.h index db51032..77534f2 100644 --- a/include/configs/mx6qarm2.h +++ b/include/configs/mx6qarm2.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2011 Freescale Semiconductor, Inc. + * Copyright (C) 2010-2014 Freescale Semiconductor, Inc. * * Configuration settings for the Freescale i.MX6Q Armadillo2 board. * @@ -116,7 +116,7 @@ #define CONFIG_SYS_LONGHELP #define CONFIG_SYS_HUSH_PARSER #define CONFIG_AUTO_COMPLETE -#define CONFIG_SYS_CBSIZE 256 +#define CONFIG_SYS_CBSIZE 1024 /* Print Buffer Size */ #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h index 0cb1ebb..cae0e99 100644 --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -263,7 +263,7 @@ #define CONFIG_SYS_HUSH_PARSER #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #define CONFIG_AUTO_COMPLETE -#define CONFIG_SYS_CBSIZE 256 +#define CONFIG_SYS_CBSIZE 1024 /* Print Buffer Size */ #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h index 931e4e8..7bcd435 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h @@ -161,7 +161,7 @@ #define CONFIG_SYS_LONGHELP #define CONFIG_SYS_HUSH_PARSER #define CONFIG_AUTO_COMPLETE -#define CONFIG_SYS_CBSIZE 256 +#define CONFIG_SYS_CBSIZE 1024 /* Print Buffer Size */ #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) |