]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ARM: uniphier: increase CONFIG_SYS_BOOTM_LEN to 32MB
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 19 Oct 2017 10:17:51 +0000 (19:17 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Sun, 22 Oct 2017 16:02:05 +0000 (01:02 +0900)
The default value of CONFIG_SYS_BOOTM_LEN, 0x800000, causes error
when uncompressing Image.gz out of FIT image.

   Uncompressing Kernel Image ... Error: inflate() returned -5
Image too large: increase CONFIG_SYS_BOOTM_LEN

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
include/configs/uniphier.h

index 515024c98e2df499d15dc1acf8b52c7f401b5906..5014828f8c5666a48c783042bfc3ecb0746ac807 100644 (file)
@@ -97,6 +97,7 @@
 
 #define CONFIG_LOADADDR                        0x84000000
 #define CONFIG_SYS_LOAD_ADDR           CONFIG_LOADADDR
+#define CONFIG_SYS_BOOTM_LEN           (32 << 20)
 
 #define CONFIG_CMDLINE_EDITING         /* add command line history     */