diff options
author | Dhananjay Phadke | 2020-01-14 17:41:41 -0800 |
---|---|---|
committer | Tom Rini | 2020-01-23 07:29:58 -0500 |
commit | c7c0233235542db090bbe0b75ee6ae0dbcc43bac (patch) | |
tree | 76fd3b5ed90a2ebbdbbeb01f794de9cb9e172d8e /include/configs/qemu-arm.h | |
parent | b0405e08f4a448d82088c94d15dde40935e01b15 (diff) |
qemu-arm: set CONFIG_SYS_BOOTM_LEN to SZ_64M
FIT image contents can be larger than default bootm limit 8M
with initrd. Raise limit to 64MB which is commonly used
elsewhere.
Signed-off-by: Dhananjay Phadke <dphadke@linux.microsoft.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/configs/qemu-arm.h')
-rw-r--r-- | include/configs/qemu-arm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h index fb599c95102..1ef75a87836 100644 --- a/include/configs/qemu-arm.h +++ b/include/configs/qemu-arm.h @@ -17,6 +17,8 @@ #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M) #define CONFIG_SYS_MALLOC_LEN SZ_16M +#define CONFIG_SYS_BOOTM_LEN SZ_64M + /* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */ #define CONFIG_SYS_HZ 1000 |