summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorVignesh Raghavendra <vigneshr@ti.com>2023-06-22 10:25:32 +0530
committerUdit Kumar <u-kumar1@ti.com>2023-06-22 12:56:22 +0530
commit0c7ed3100ee9886331465f22a2a9ccffb86ffacf (patch)
tree5e8218ebb4b713b4e279476ceb3bb423cdfe6b10 /Kconfig
parent20bb8daa8a5a77b874a43a4faffc870e3c1bca45 (diff)
Kconfig: Default malloc size to 32MB for ARCH_K3
This allows us to download large images like linux kernel and flash it to boot media. Drop from defconfigs so that its common across platform. Note the some *_r5_*defconfigs set this to even higher value but thats useless as ARCH_K3 doesn't use u-boot.img for R5. Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kconfig b/Kconfig
index b8f65589f4..d6d905c1a7 100644
--- a/Kconfig
+++ b/Kconfig
@@ -283,7 +283,7 @@ config SYS_MALLOC_F_LEN
config SYS_MALLOC_LEN
hex "Define memory for Dynamic allocation"
default 0x4000000 if SANDBOX
- default 0x2000000 if ARCH_ROCKCHIP || ARCH_OMAP2PLUS || ARCH_MESON
+ default 0x2000000 if ARCH_ROCKCHIP || ARCH_OMAP2PLUS || ARCH_MESON || ARCH_K3
default 0x200000 if ARCH_BMIPS || X86
default 0x4020000 if SUNXI_MINIMUM_DRAM_MB >= 256
default 0x220000 if SUNXI_MINIMUM_DRAM_MB >= 64