aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/rush/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/rush/romstage.c')
-rw-r--r--src/mainboard/google/rush/romstage.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/google/rush/romstage.c b/src/mainboard/google/rush/romstage.c
index e2b75f6842..f0de9c0dfb 100644
--- a/src/mainboard/google/rush/romstage.c
+++ b/src/mainboard/google/rush/romstage.c
@@ -20,11 +20,19 @@
#include <arch/stages.h>
#include <cbfs.h>
#include <console/console.h>
+#include <arch/exception.h>
void main(void)
{
void *entry;
+ console_init();
+ exception_init();
+
+ printk(BIOS_INFO, "T132: romstage here\n");
+
+ while (1);
+
entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage");
stage_exit(entry);
}