[U-Boot] [PATCH] ARM: uniphier: make u-boot-with-spl.bin really available
Masahiro Yamada
yamada.masahiro at socionext.com
Thu Mar 24 14:22:23 CET 2016
Commit d085ecd61b99 ("ARM: uniphier: switch to raw U-Boot image")
claimed that u-boot-with-spl.bin would be useful in its commit log,
but it was not available because the commit missed to define
CONFIG_SPL_MAX_SIZE. Without it, CONFIG_SPL_PAD_TO is not defined
either (see include/config_fallbacks.h). So, the SPL image is not
padded correctly.
Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
---
include/configs/uniphier.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h
index 5f3d6b8..da80c00 100644
--- a/include/configs/uniphier.h
+++ b/include/configs/uniphier.h
@@ -279,5 +279,6 @@
#define CONFIG_SPL_TARGET "u-boot-with-spl.bin"
#define CONFIG_SPL_MAX_FOOTPRINT 0x10000
+#define CONFIG_SPL_MAX_SIZE 0x10000
#endif /* __CONFIG_UNIPHIER_COMMON_H__ */
--
1.9.1
More information about the U-Boot
mailing list