diff options
author | Tom Rini | 2022-07-26 10:26:00 -0400 |
---|---|---|
committer | Tom Rini | 2022-07-26 10:26:00 -0400 |
commit | 86feeab3dc71977afb70f595e42060ce324086d0 (patch) | |
tree | 687b9f2251d55f33eaab2d9d8805071eddf7ca6c /common | |
parent | e5f6fecda4a606acd2417fb537f331e37c757fa5 (diff) | |
parent | e29303993bad6c94954da7d5cd92b1d36cf2c80b (diff) |
Merge tag 'u-boot-imx-20220726' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
u-boot-imx-20220726
-------------------
i.MX for 2022.10
- Added i.MX93 architecture
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/12891
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index cb85ee415cb..ee98810e9e9 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -83,6 +83,7 @@ config SPL_MAX_SIZE default 0x7000 if RCAR_GEN3 default 0x5fa0 if SUNXI_SRAM_ADDRESS = 0x0 default 0x10000 if ASPEED_AST2600 + default 0x27000 if IMX8MM && SPL_TEXT_BASE = 0x7E1000 default 0x0 help Maximum size of the SPL image (text, data, rodata, and linker lists @@ -567,7 +568,7 @@ config SPL_FIT_IMAGE_TINY bool "Remove functionality from SPL FIT loading to reduce size" depends on SPL_FIT default y if MACH_SUN50I || MACH_SUN50I_H5 || SUN50I_GEN_H6 - default y if ARCH_IMX8M + default y if ARCH_IMX8M || ARCH_IMX9 help Enable this to reduce the size of the FIT image loading code in SPL, if space for the SPL binary is very tight. |