From: Michal Simek Date: Thu, 22 May 2014 10:54:55 +0000 (+0200) Subject: ARM: ultrascale: Extend bootm size to keep uncompressor happy X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb47f1aa377fc34b36d69580c222289dfc0c5474;p=thirdparty%2Fu-boot.git ARM: ultrascale: Extend bootm size to keep uncompressor happy Uncompressor is checking max size which can be used for uncompressing. Let's use 60MB for start to ensure that kernel + rootfs fits to this size. Signed-off-by: Michal Simek --- diff --git a/include/configs/xilinx_ultrascale.h b/include/configs/xilinx_ultrascale.h index fc332430733..6d7405ca209 100644 --- a/include/configs/xilinx_ultrascale.h +++ b/include/configs/xilinx_ultrascale.h @@ -146,4 +146,6 @@ #define CONFIG_FIT #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ +#define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) + #endif /* __XILINX_ULTRASCALE_H */