diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2012-10-17 22:25:21 -0500 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2012-10-18 13:28:14 -0500 |
commit | 8bd01cd413990ae362665c561f2f7e4e26801a78 (patch) | |
tree | be4bada000eb4f0ff2a713f6bff3c45094f9f8d9 /common | |
parent | b92e78257d19cee079d05bc47ef4b7f134214da9 (diff) | |
download | u-boot-imx-8bd01cd413990ae362665c561f2f7e4e26801a78.zip u-boot-imx-8bd01cd413990ae362665c561f2f7e4e26801a78.tar.gz u-boot-imx-8bd01cd413990ae362665c561f2f7e4e26801a78.tar.bz2 |
ENGR00230334: Fix the mx53_smd_android config
Update the u-boot config for mx53 smd android to
include the correct boot env, enable boot splash,
increase the cmdline buffer, tokens and 1G DDR.
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/main.c b/common/main.c index 026edd1..9c2f97c 100644 --- a/common/main.c +++ b/common/main.c @@ -526,7 +526,11 @@ void reset_cmd_timeout(void) #define CTL_CH(c) ((c) - 'a' + 1) +#if defined(CONFIG_SYS_CBSIZE) +#define MAX_CMDBUF_SIZE CONFIG_SYS_CBSIZE +#else #define MAX_CMDBUF_SIZE 256 +#endif #define CTL_BACKSPACE ('\b') #define DEL ((char)255) |