From: Tom Rini Date: Tue, 18 Oct 2011 17:47:22 +0000 (-0700) Subject: devkit8000: Add malloc space X-Git-Tag: v2011.12-rc1~343^2~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ba75a81a7ab8a9be21cfcf4a78306d831465913f;p=oweals%2Fu-boot.git devkit8000: Add malloc space With malloc support being a new requirement for all ARM SPL implementations, define a small area for use on devkit8000. Cc: Frederik Kriewitz Signed-off-by: Tom Rini Signed-off-by: Sandeep Paulraj --- diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h index eed1b0653d..6c51a27475 100644 --- a/include/configs/devkit8000.h +++ b/include/configs/devkit8000.h @@ -358,4 +358,7 @@ #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x200000 +#define CONFIG_SYS_SPL_MALLOC_START 0x80108000 +#define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 /* 1 MB */ + #endif /* __CONFIG_H */