Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63421 )
Change subject: mb/qemu-armv7: Initialize cbmem ......................................................................
mb/qemu-armv7: Initialize cbmem
Change-Id: I607205a0d44c71eb26031ced7a8af303efacd6f2 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/mainboard/emulation/qemu-armv7/romstage.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/21/63421/1
diff --git a/src/mainboard/emulation/qemu-armv7/romstage.c b/src/mainboard/emulation/qemu-armv7/romstage.c index 4aadcce..3050e0c 100644 --- a/src/mainboard/emulation/qemu-armv7/romstage.c +++ b/src/mainboard/emulation/qemu-armv7/romstage.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */
+#include <cbmem.h> #include <console/console.h> #include <program_loading.h> #include <romstage_common.h> @@ -14,6 +15,7 @@
void __noreturn romstage_main(void) { + cbmem_initialize_empty(); run_ramstage(); die("failed to load ramstage\n"); }