From: Przemyslaw Marczak Date: Wed, 5 Nov 2014 20:17:19 +0000 (+0100) Subject: exynos: config: set console and print I/O buffer to 1024 Bytes X-Git-Tag: accepted/tizen/common/20141117.155335~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e0bb332cbc72f4840b2348e838aa289a08271537;p=platform%2Fkernel%2Fu-boot.git exynos: config: set console and print I/O buffer to 1024 Bytes Before this change, the len of environment variable was not enought for many partitions settings for the Exynos4 devices in the ${partitions}. Now the limit is full enought. Change-Id: Ib12b7b3344bce548cacb634d5210e0309a993537 Signed-off-by: Przemyslaw Marczak --- diff --git a/include/configs/exynos-common.h b/include/configs/exynos-common.h index a7e732d..3b33e6b 100644 --- a/include/configs/exynos-common.h +++ b/include/configs/exynos-common.h @@ -80,8 +80,8 @@ /* Miscellaneous configurable options */ #define CONFIG_SYS_LONGHELP /* undef to save memory */ #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */ -#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ -#define CONFIG_SYS_PBSIZE 384 /* Print Buffer Size */ +#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ +#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */ #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ /* Boot Argument Buffer Size */