diff options
author | Soeren Moch <smoch@web.de> | 2016-09-21 13:16:21 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2016-10-04 12:01:14 +0200 |
commit | 29138c6ff80d6e736640050f5e9643637c44abad (patch) | |
tree | 8dd89c5a57c91613a4b3618a8ec6d9543ada5edb /include/configs/tbs2910.h | |
parent | 3b30eece271cfc4096c2d20048c89e8bed0bbbfd (diff) |
board: tbs2910: Fix BOOTMAPSZ
The linux kernel imx_v6_v7_defconfig sets the user/kernel memory split
to 3G/1G now (was 2G/2G before). We have to adapt the BOOTMAPSZ so that
the decompressor finds zImage and dtb in lowmem.
Signed-off-by: Soeren Moch <smoch@web.de>
Diffstat (limited to 'include/configs/tbs2910.h')
-rw-r--r-- | include/configs/tbs2910.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h index 85501bca0f..facd9cf0df 100644 --- a/include/configs/tbs2910.h +++ b/include/configs/tbs2910.h @@ -39,7 +39,7 @@ #define CONFIG_SYS_MEMTEST_END \ (CONFIG_SYS_MEMTEST_START + 500 * 1024 * 1024) -#define CONFIG_SYS_BOOTMAPSZ 0x6C000000 +#define CONFIG_SYS_BOOTMAPSZ 0x10000000 /* Serial console */ #define CONFIG_MXC_UART |