diff options
author | Stefan Roese <sr@denx.de> | 2020-08-25 08:53:30 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2020-08-25 11:37:57 +0200 |
commit | 6944937f9c4d21f39dd257bce7b677a0f6849cea (patch) | |
tree | 97a18c6a0a6921de227af46d7b03943fd0c76a0a /configs | |
parent | 0a668f6d38a2a631eb872f4f1107399db46b1c15 (diff) |
x86: qemu-x86_defconfig: Increase CONFIG_SYS_MALLOC_F_LEN
With the upcoming increase of the malloc area in U-Boot
("pci: pci-uclass: Dynamically allocate the PCI regions"), the CI QEMU
x86 test fails:
U-Boot 2020.10-rc2-g0a668f6d38 (Aug 25 2020 - 06:12:51 +0000)
alloc space exhausted
Error binding driver 'cpu_qemu': -12
Some drivers failed to bind
alloc space exhausted
initcall sequence fff6a760 failed at call fff13b3d (err=-19)
This patch now increases CONFIG_SYS_MALLOC_F_LEN to 0x1000, which is
already used on qemu-x86_64_defconfig.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Tom Rini <trini@konsulko.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/qemu-x86_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/qemu-x86_defconfig b/configs/qemu-x86_defconfig index 6493fef835..218026b739 100644 --- a/configs/qemu-x86_defconfig +++ b/configs/qemu-x86_defconfig @@ -1,5 +1,6 @@ CONFIG_X86=y CONFIG_SYS_TEXT_BASE=0xFFF00000 +CONFIG_SYS_MALLOC_F_LEN=0x1000 CONFIG_NR_DRAM_BANKS=8 CONFIG_ENV_SIZE=0x40000 CONFIG_MAX_CPUS=2 |