This is a backport of u-boot commit fb5b1678 (fb5b167843);
it fixes "alloc space exhausted" errors during SPL boot
14 lines
479 B
Diff
14 lines
479 B
Diff
diff --git a/Kconfig b/Kconfig
|
|
index 883e3f71..e872c640 100644
|
|
--- a/Kconfig
|
|
+++ b/Kconfig
|
|
@@ -200,7 +200,7 @@ config SYS_MALLOC_F_LEN
|
|
default 0x2000 if (ARCH_IMX8 || ARCH_IMX8M || ARCH_MX7 || \
|
|
ARCH_MX7ULP || ARCH_MX6 || ARCH_MX5 || \
|
|
ARCH_LS1012A || ARCH_LS1021A || ARCH_LS1043A || \
|
|
- ARCH_LS1046A || ARCH_QEMU)
|
|
+ ARCH_LS1046A || ARCH_QEMU || ARCH_SUNXI)
|
|
default 0x400
|
|
help
|
|
Before relocation, memory is very limited on many platforms. Still,
|