diff options
author | Paul Burton <paul.burton@imgtec.com> | 2017-04-30 21:22:43 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2017-05-12 13:29:50 +0200 |
commit | dc55db496597539cef9c45776d1d8d45f9b5932c (patch) | |
tree | 04c5402aa328de2bd54af0c236927c9ba2fe1bc0 | |
parent | d2b12a5767ec762f92a7c308a562472e23b5347e (diff) |
boston: Bump CONFIG_SYS_BOOTM_LEN to 64MiB
The default value of CONFIG_SYS_BOOTM_LEN is too small for typical
boston Linux kernels. Increase the limit to 64MB, which covers current
kernels with plenty of breathing room.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/configs/boston.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/boston.h b/include/configs/boston.h index 1915ad5249..50aaa7be8c 100644 --- a/include/configs/boston.h +++ b/include/configs/boston.h @@ -8,6 +8,11 @@ #define __CONFIGS_BOSTON_H__ /* + * General board configuration + */ +#define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024) + +/* * CPU */ #define CONFIG_SYS_MIPS_TIMER_FREQ 30000000 |