From 1005ccfda493febde8543fef3b0d41f5c74cd06d Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Fri, 13 Apr 2012 12:20:04 +0000 Subject: include/configs: Remove CONFIG_SYS_64BIT_VSPRINTF This define does not control anything, remove it. Signed-off-by: Tom Rini --- include/configs/tam3517-common.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/configs/tam3517-common.h') diff --git a/include/configs/tam3517-common.h b/include/configs/tam3517-common.h index 4c4321d..37eb87b 100644 --- a/include/configs/tam3517-common.h +++ b/include/configs/tam3517-common.h @@ -146,7 +146,6 @@ #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */ /* NAND devices */ -#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */ #define CONFIG_AUTO_COMPLETE -- cgit v1.1 From e0820ccc38315d88192c19e98ea9b59d3ec7d4c8 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 8 May 2012 07:29:31 +0000 Subject: ARM: omap3: Set SPL stack size to 8KB, image to 54KB. With older toolchains it is possible to not fit entirely into the 45KB that we had assigned to SPL. Adjust to allow for 8KB of stack (which should be more than required) and 54KB of text/data. Cc: Vaibhav Hiremath Cc: Nagendra T S Cc: Thomas Weber Cc: Ilya Yanok Cc: Steve Sakoman Cc: Stefano Babic Signed-off-by: Tom Rini Acked-by: Stefano Babic Acked-by: Vaibhav Hiremath --- include/configs/tam3517-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/configs/tam3517-common.h') diff --git a/include/configs/tam3517-common.h b/include/configs/tam3517-common.h index 37eb87b..3fc2c44 100644 --- a/include/configs/tam3517-common.h +++ b/include/configs/tam3517-common.h @@ -257,7 +257,7 @@ #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds" #define CONFIG_SPL_TEXT_BASE 0x40200000 /*CONFIG_SYS_SRAM_START*/ -#define CONFIG_SPL_MAX_SIZE (45 << 10) /* 45 K */ +#define CONFIG_SPL_MAX_SIZE (54 * 1024) /* 8 KB for stack */ #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK #define CONFIG_SYS_SPL_MALLOC_START 0x8f000000 -- cgit v1.1