diff options
author | Michal Simek <michal.simek@xilinx.com> | 2014-01-20 10:29:06 (GMT) |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2014-05-14 05:43:34 (GMT) |
commit | 3d456eec43c13778738a5b5246a4109282d207a3 (patch) | |
tree | ee85af17f4c32566dc1693db61c02612aff71721 | |
parent | 0b680206ccf5a4ae6adf759339ba7dc7ce06d284 (diff) | |
download | u-boot-3d456eec43c13778738a5b5246a4109282d207a3.tar.xz |
ARM: zynq: Extend kernel image size to 60MB
Extend max kernel image size. Gunzip is checking
this value. If kernel is larger, message below is shown.
Uncompressing Kernel Image ... Error: inflate() returned -5
GUNZIP: uncompress, out-of-mem or overwrite error -
must RESET board to recover
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | include/configs/zynq-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 2080a61..8ee78e4 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -209,7 +209,7 @@ #define CONFIG_RSA /* Extend size of kernel image for uncompression */ -#define CONFIG_SYS_BOOTM_LEN (20 * 1024 * 1024) +#define CONFIG_SYS_BOOTM_LEN (60 * 1024 * 1024) /* Boot FreeBSD/vxWorks from an ELF image */ #if defined(CONFIG_ZYNQ_BOOT_FREEBSD) |