Skip to content
Snippets Groups Projects
Commit e628f008 authored by Jagan Teki's avatar Jagan Teki Committed by Jagan Teki
Browse files

sunxi: arm64: Increase CONFIG_SYS_BOOTM_LEN to 32MB


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

and loading Image out of FIT image.
   Loading Kernel Image ... Image too large: increase CONFIG_SYS_BOOTM_LEN
Must RESET board to recover

Signed-off-by: default avatarJagan Teki <jagan@amarulasolutions.com>
Acked-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
parent 03eb76b9
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#ifdef CONFIG_ARM64 #ifdef CONFIG_ARM64
#define CONFIG_BUILD_TARGET "u-boot.itb" #define CONFIG_BUILD_TARGET "u-boot.itb"
#define CONFIG_SYS_BOOTM_LEN (32 << 20)
#endif #endif
/* Serial & console */ /* Serial & console */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment