diff options
| author | Paul Kocialkowski <[email protected]> | 2024-07-28 22:24:58 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-06 18:32:45 -0600 |
| commit | 90312be17e75d1ca34b2340730afbf50c4384e73 (patch) | |
| tree | 32999e52a59b337cba415ac915ed5ccfcd37e457 /common | |
| parent | 0844ed321981a9df4c9f6843455467012ddb01e8 (diff) | |
omap3: Define maximum SPL size in Kconfig instead of defconfigs
The maximum SPL size was defined to the same value in each OMAP3
board defconfig. Move the common definition to the Kconfig option
declaration instead.
Signed-off-by: Paul Kocialkowski <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Tested-by: Derald D. Woods <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 6fc97f4ccbd..3fd113d776b 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -78,6 +78,7 @@ config SPL_MAX_SIZE hex "Maximum size of the SPL image, excluding BSS" default 0x30000 if ARCH_MX6 && MX6_OCRAM_256KB default 0x1b000 if AM33XX && !TI_SECURE_DEVICE + default 0xec00 if OMAP34XX default 0x10000 if ARCH_MX6 && !MX6_OCRAM_256KB default 0x7fa0 if SUNXI_SRAM_ADDRESS = 0x10000 default 0x7fa0 if SUNXI_SRAM_ADDRESS = 0x20000 && !MACH_SUN50I_H616 |
