summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorUdit Kumar <[email protected]>2025-06-14 15:07:16 +0530
committerTom Rini <[email protected]>2025-06-26 13:53:55 -0600
commite53d46393eacf6cef51f8bfe9ed730568b02583e (patch)
treedf6ebeacdc83c1af17bc900eb7e15b2d5399b0ab /Kconfig
parentd7c449c3d83a986d61e38d1762433c0607caf5c5 (diff)
Kconfig: Add default malloc size of K3 ARCH
Many boards of K3 overwrites default malloc size, instead of doing at almost each board level, Add default size at Kconfig. Signed-off-by: Udit Kumar <[email protected]> Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kconfig b/Kconfig
index 51358633762..05b7f410fa5 100644
--- a/Kconfig
+++ b/Kconfig
@@ -309,7 +309,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