From e0bb332cbc72f4840b2348e838aa289a08271537 Mon Sep 17 00:00:00 2001 From: Przemyslaw Marczak Date: Wed, 5 Nov 2014 21:17:19 +0100 Subject: [PATCH] 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 --- include/configs/exynos-common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.7.4