From: Graeme Smecher Date: Mon, 7 Dec 2009 16:09:57 +0000 (-0800) Subject: microblaze: Stop stack clobbering in microblaze-generic. X-Git-Tag: v2009.11~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8fe7b29f9811322931f0192a56431edcf819d6b9;p=oweals%2Fu-boot.git microblaze: Stop stack clobbering in microblaze-generic. A typo caused the stack and malloc regions to overlap, which prevented mem_malloc_init() from returning. This commit makes the memory layout match the example described in include/configs/microblaze-generic.h Signed-off-by: Graeme Smecher Signed-off-by: Michal Simek --- diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index b486c7753c..9b1569a6d4 100644 --- a/include/configs/microblaze-generic.h +++ b/include/configs/microblaze-generic.h @@ -146,7 +146,7 @@ #define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - CONFIG_SYS_MALLOC_LEN) /* stack */ -#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_MONITOR_BASE +#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_MALLOC_BASE /*#define RAMENV */ #define FLASH