diff options
author | Tom Rini <trini@konsulko.com> | 2019-08-24 08:32:22 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-24 08:32:22 -0400 |
commit | 3d8fab1e9e1ccaf609d63df85bd651458f05d436 (patch) | |
tree | 6a34a436e153ec4024eb84e800d008a8e79dc674 /Kconfig | |
parent | b242d1b13e43906af288d8a8bdf396ba2cfbf2d1 (diff) | |
parent | 78f28773a55db9ed434e7b1920b94bb95167844f (diff) |
Merge branch '2019-08-23-master-imports'
- Migrate CONFIG_MX_CYCLIC, CONFIG_FSL_USDHC and CONFIG_MXS_GPIO to
Kconfig
- Fix some SPL/TPL and ARM64 dependencies
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -163,7 +163,7 @@ config SYS_MALLOC_LEN config SPL_SYS_MALLOC_F_LEN hex "Size of malloc() pool in SPL before relocation" - depends on SYS_MALLOC_F + depends on SYS_MALLOC_F && SPL default 0x2800 if RCAR_GEN3 default SYS_MALLOC_F_LEN help @@ -174,7 +174,7 @@ config SPL_SYS_MALLOC_F_LEN config TPL_SYS_MALLOC_F_LEN hex "Size of malloc() pool in TPL before relocation" - depends on SYS_MALLOC_F + depends on SYS_MALLOC_F && TPL default SYS_MALLOC_F_LEN help Before relocation, memory is very limited on many platforms. Still, @@ -238,6 +238,7 @@ config SPL_IMAGE string "SPL image used in the combined SPL+U-Boot image" default "spl/boot.bin" if ARCH_AT91 && SPL_NAND_SUPPORT default "spl/u-boot-spl.bin" + depends on SPL help Select the SPL build target that shall be generated by the SPL build process (default spl/u-boot-spl.bin). This image will be |