From: Mike Frysinger Date: Tue, 25 Aug 2009 00:36:25 +0000 (-0400) Subject: Blackfin: increase default console size X-Git-Tag: v2009.11-rc1~218 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=69a25ce3578f34c8accb476f70089f3a44b78ed9;p=platform%2Fkernel%2Fu-boot.git Blackfin: increase default console size The default console size indirectly applies to length of env vars, so a smaller length makes it hard to pass longer command lines to kernels. Signed-off-by: Mike Frysinger --- diff --git a/include/asm-blackfin/config.h b/include/asm-blackfin/config.h index 6623fb7..5739b13 100644 --- a/include/asm-blackfin/config.h +++ b/include/asm-blackfin/config.h @@ -120,11 +120,7 @@ # define CONFIG_SYS_PROMPT "bfin> " #endif #ifndef CONFIG_SYS_CBSIZE -# ifdef CONFIG_CMD_KGDB -# define CONFIG_SYS_CBSIZE 1024 -# else -# define CONFIG_SYS_CBSIZE 256 -# endif +# define CONFIG_SYS_CBSIZE 1024 #endif #ifndef CONFIG_SYS_BARGSIZE # define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE