diff options
author | Heinrich Schuchardt | 2020-06-07 11:54:00 +0200 |
---|---|---|
committer | Tom Rini | 2020-06-15 11:24:36 -0400 |
commit | 5b60326b6e52a59c13e3a8f94622cb5ebbecb54c (patch) | |
tree | 91b699499468bd5c983231feab4985139c1526c3 /Kconfig | |
parent | 1fae74125b644bb7f21e4afef3b9084c58e7863a (diff) |
config: qemu: increase SYS_MALLOC_F_LEN
Several configutation options require additional memory before relocation:
* CONSOLE_RECORD
* LOG
* RSA
The current default of 0x400 is too small to encompass them all. Increase
the value of SYS_MALLOC_F_LEN to 0x2000 for ARCH_QEMU.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,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_LS1046A || ARCH_QEMU) default 0x400 help Before relocation, memory is very limited on many platforms. Still, |