diff options
author | Tom Rini <trini@konsulko.com> | 2020-03-04 19:21:00 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-03-04 19:21:00 -0500 |
commit | d16e18ca6c4d81ac142acd529b1acb55b0c96dfc (patch) | |
tree | d0a9e1d954c1f9dc93c64faae5562722c91d107d | |
parent | c12ee850d6a209a08edb21adbedfdeb4b251e674 (diff) | |
parent | 7ca08e335b1274c5eb88c58aacaa389c63907d40 (diff) | |
download | u-boot-d16e18ca6c4d81ac142acd529b1acb55b0c96dfc.tar.gz |
Merge branch 'master' of git://git.denx.de/u-boot-sh
- Limit bootloader size to 1 MiB on R-Car Gen3
-rw-r--r-- | include/configs/rcar-gen3-common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/configs/rcar-gen3-common.h b/include/configs/rcar-gen3-common.h index 520da5027e..6528f1fa62 100644 --- a/include/configs/rcar-gen3-common.h +++ b/include/configs/rcar-gen3-common.h @@ -46,10 +46,13 @@ #define CONFIG_MAX_MEM_MAPPED (0x80000000u - DRAM_RSV_SIZE) #define CONFIG_SYS_MONITOR_BASE 0x00000000 -#define CONFIG_SYS_MONITOR_LEN (256 * 1024) +#define CONFIG_SYS_MONITOR_LEN (1 * 1024 * 1024) #define CONFIG_SYS_MALLOC_LEN (1 * 1024 * 1024) #define CONFIG_SYS_BOOTM_LEN (64 << 20) +/* The HF/QSPI layout permits up to 1 MiB large bootloader blob */ +#define CONFIG_BOARD_SIZE_LIMIT 1048576 + /* ENV setting */ #define CONFIG_ENV_OVERWRITE |