diff mbox

[v3,03/10] vexpress64: Kconfig: add CONFIG_SYS_BOOTM_LEN

Message ID 1443721416-725-4-git-send-email-ryan.harkin@linaro.org
State New
Headers show

Commit Message

Ryan Harkin Oct. 1, 2015, 5:43 p.m. UTC
vexpress64 kernels are usually over 8 MBytes in length, so setting the
max uImage length to 0x4000000 (64 Mbytes) should give us plenty of
scope for expansion.

I mostly chose this length to match other board configs that use
"(64 << 20)", however, Kconfig doesn't allow arithmetic operations.

Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
CC: Masahiro Yamada <yamada.m@jp.panasonic.com
CC: Linus Walleij <linus.walleij@linaro.org>
---
 board/armltd/vexpress64/Kconfig | 3 +++
 1 file changed, 3 insertions(+)
diff mbox

Patch

diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig
index 8da3bec..72679be 100644
--- a/board/armltd/vexpress64/Kconfig
+++ b/board/armltd/vexpress64/Kconfig
@@ -1,3 +1,6 @@ 
+config CONFIG_SYS_BOOTM_LEN
+	default 0x4000000
+
 config SYS_BOARD
 	default "vexpress64"