diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2024-07-28 22:24:57 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-06 18:32:45 -0600 |
commit | 0844ed321981a9df4c9f6843455467012ddb01e8 (patch) | |
tree | 48540be4aa41fa8f1686bbed3282c1ca972a509f /Kconfig | |
parent | 2bedbf56a12a0c3f0d54328a7daca7b8fc0c5014 (diff) | |
download | u-boot-0844ed321981a9df4c9f6843455467012ddb01e8.tar.gz |
omap3: Define maximum U-Boot size in Kconfig instead of defconfigs
The maximum U-Boot 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 <contact@paulk.fr>
Reviewed-by: Tom Rini <trini@konsulko.com>
Tested-by: Derald D. Woods <woods.technical@gmail.com>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -620,6 +620,7 @@ config SYS_SRAM_SIZE config SYS_MONITOR_LEN int "Maximum size in bytes reserved for U-Boot in memory" default 1048576 if X86 + default 262144 if OMAP34XX default 786432 if ARCH_SUNXI default 0 help |