]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spl: Enable CONFIG_SPL_SYS_MALLOC_F where needed
authorSimon Glass <sjg@chromium.org>
Tue, 26 Sep 2023 14:14:25 +0000 (08:14 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 6 Oct 2023 18:38:12 +0000 (14:38 -0400)
Enable CONFIG_SPL_SYS_MALLOC_F for boards which have a non-zero value
for CONFIG_SPL_SYS_MALLOC_F_LEN

Note that the default is yes in most cases, so no changes are needed to
board defconfig options.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/arm/mach-snapdragon/Kconfig
arch/arm/mach-socfpga/Kconfig

index 914f4d9605345cd945dadc45b213517ff4209e19..0e073045be54f892d7c327afeaeb5251d805cd94 100644 (file)
@@ -6,6 +6,9 @@ config SYS_SOC
 config SYS_MALLOC_F_LEN
        default 0x2000
 
+config SPL_SYS_MALLOC_F
+       default y
+
 config SPL_SYS_MALLOC_F_LEN
        default 0x2000
 
index 503c82d388ce94ba98c7b5bf5beec29caea16b53..114d243812940655e93601a32cc9955319a26c00 100644 (file)
@@ -30,6 +30,9 @@ config SPL_SIZE_LIMIT_PROVIDE_STACK
 config SPL_STACK_R_ADDR
        default 0x00800000 if TARGET_SOCFPGA_GEN5
 
+config SPL_SYS_MALLOC_F
+       default y if TARGET_SOCFPGA_GEN5
+
 config SPL_SYS_MALLOC_F_LEN
        default 0x800 if TARGET_SOCFPGA_GEN5