aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/storm/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/storm/romstage.c')
-rw-r--r--src/mainboard/google/storm/romstage.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainboard/google/storm/romstage.c b/src/mainboard/google/storm/romstage.c
index cf78e44225..10632d8d5f 100644
--- a/src/mainboard/google/storm/romstage.c
+++ b/src/mainboard/google/storm/romstage.c
@@ -19,12 +19,15 @@
#include <arch/stages.h>
#include <cbfs.h>
+#include <cbmem.h>
#include <console/console.h>
void main(void)
{
void *entry;
+ cbmem_initialize_empty();
+
entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/coreboot_ram");
stage_exit(entry);
}