diff options
author | Ralph Hempel <ralph.hempel@lantiq.com> | 2010-04-24 06:03:31 +0000 |
---|---|---|
committer | Ralph Hempel <ralph.hempel@lantiq.com> | 2010-04-24 06:03:31 +0000 |
commit | 5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5 (patch) | |
tree | d46231902cfff6c8f068c22f7cc583b7446e363f /package/uboot-lantiq/files/include/configs | |
parent | acb329137e21c7dd05e17aadce4d5840ddee55c9 (diff) | |
download | upstream-5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5.tar.gz upstream-5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5.tar.bz2 upstream-5f643ca7dc2fe4afcdbcb4bf7b30ce23ec23eff5.zip |
fix command line buffer length, fixes mtdparts
SVN-Revision: 21117
Diffstat (limited to 'package/uboot-lantiq/files/include/configs')
-rw-r--r-- | package/uboot-lantiq/files/include/configs/ifx-common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uboot-lantiq/files/include/configs/ifx-common.h b/package/uboot-lantiq/files/include/configs/ifx-common.h index 88569ada9c..e4e8067d74 100644 --- a/package/uboot-lantiq/files/include/configs/ifx-common.h +++ b/package/uboot-lantiq/files/include/configs/ifx-common.h @@ -48,7 +48,7 @@ "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ ":${hostname}:${netdev}:off\0" \ "addmisc=setenv bootargs ${bootargs} init=/etc/preinit " \ - "console=ttyS1,115200 ethaddr=${ethaddr} ${mtdparts}" \ + "console=ttyS1,115200 ethaddr=${ethaddr} " \ "${mtdparts}\0" \ "flash_flash=run flashargs addip addmisc;" \ "bootm ${kernel_addr}\0" \ @@ -113,7 +113,7 @@ #ifndef CONFIG_SYS_PROMPT #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ #endif -#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ +#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ |