diff options
author | Paul Burton <paul.burton@imgtec.com> | 2013-11-26 17:45:28 +0000 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2013-11-26 21:49:42 +0100 |
commit | 67d4752d1dae768c7ff381272880d4aceeb62085 (patch) | |
tree | 81af9b013bc27678886e4666e74499897cc21827 | |
parent | bea12b782337105feeb3aeb0875d110eed007803 (diff) | |
download | u-boot-imx-67d4752d1dae768c7ff381272880d4aceeb62085.zip u-boot-imx-67d4752d1dae768c7ff381272880d4aceeb62085.tar.gz u-boot-imx-67d4752d1dae768c7ff381272880d4aceeb62085.tar.bz2 |
malta: set CONFIG_SYS_BOOTM_LEN to 64MB
Allow a larger kernel binary to be decompressed - the default 8MB can
become limiting on a Malta.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
-rw-r--r-- | include/configs/malta.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/malta.h b/include/configs/malta.h index 666cca9..cc574ed 100644 --- a/include/configs/malta.h +++ b/include/configs/malta.h @@ -54,6 +54,7 @@ #define CONFIG_SYS_MALLOC_LEN (128 * 1024) #define CONFIG_SYS_BOOTPARAMS_LEN (128 * 1024) +#define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024) /* * Console configuration |