Skip to content
Snippets Groups Projects
Commit ae9f4899 authored by Michal Simek's avatar Michal Simek
Browse files

zynq: Extend kernel image size to 20MB


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: default avatarMichal Simek <michal.simek@xilinx.com>
parent c74a9441
No related branches found
No related tags found
No related merge requests found
...@@ -221,6 +221,9 @@ ...@@ -221,6 +221,9 @@
#define CONFIG_FIT_SIGNATURE #define CONFIG_FIT_SIGNATURE
#define CONFIG_RSA #define CONFIG_RSA
/* Extend size of kernel image for uncompression */
#define CONFIG_SYS_BOOTM_LEN (20 * 1024 * 1024)
/* Boot FreeBSD/vxWorks from an ELF image */ /* Boot FreeBSD/vxWorks from an ELF image */
#if defined(CONFIG_ZYNQ_BOOT_FREEBSD) #if defined(CONFIG_ZYNQ_BOOT_FREEBSD)
# define CONFIG_API # define CONFIG_API
......
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