From: Masahiro Yamada Date: Sun, 22 Mar 2015 15:07:27 +0000 (+0900) Subject: ARM: UniPhier: add CONFIG_SPL_MAX_FOOTPRINT X-Git-Tag: v2015.04-rc5~60^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6a3cffe8e189ca7ebd5bb801db7ec28b35ed9797;p=u-boot ARM: UniPhier: add CONFIG_SPL_MAX_FOOTPRINT The Boot ROM of UniPhier platform only loads 64KB image. We should always make sure that SPL memory footprint is less than that. Signed-off-by: Masahiro Yamada --- diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h index db1e08f81a..d2d88dd29e 100644 --- a/include/configs/uniphier.h +++ b/include/configs/uniphier.h @@ -296,4 +296,6 @@ #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x10000 +#define CONFIG_SPL_MAX_FOOTPRINT 0x10000 + #endif /* __CONFIG_UNIPHIER_COMMON_H__ */