diff options
author | Marek Vasut <marek.vasut+renesas@gmail.com> | 2018-04-10 16:06:40 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-04-11 23:19:52 +0200 |
commit | 97ed677831e45b789fc19bd807273ff34486efb8 (patch) | |
tree | ccc102dff3856a825c2d4e0eab727cbd80b92a21 /include/configs/rcar-gen3-common.h | |
parent | 7beccc52a1e3482d28bdfa52053583956d4d19e8 (diff) |
ARM: rmobile: Set maximum kernel size to 64 MiB on Gen3
The Gen3 kernel images are often above 8 MiB, increase the
maximum kernel size to 64 MiB to future-proof it, just like
many other ARM64 boards do.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'include/configs/rcar-gen3-common.h')
-rw-r--r-- | include/configs/rcar-gen3-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/rcar-gen3-common.h b/include/configs/rcar-gen3-common.h index bbaab80e23..da82e4442a 100644 --- a/include/configs/rcar-gen3-common.h +++ b/include/configs/rcar-gen3-common.h @@ -51,6 +51,7 @@ #define CONFIG_SYS_MONITOR_LEN (256 * 1024) #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024) +#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* ENV setting */ #define CONFIG_ENV_OVERWRITE |