aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/cubietech/cubieboard/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/cubietech/cubieboard/romstage.c')
-rw-r--r--src/mainboard/cubietech/cubieboard/romstage.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mainboard/cubietech/cubieboard/romstage.c b/src/mainboard/cubietech/cubieboard/romstage.c
new file mode 100644
index 0000000000..19192cdc40
--- /dev/null
+++ b/src/mainboard/cubietech/cubieboard/romstage.c
@@ -0,0 +1,14 @@
+/*
+ * Placeholder for Cubieboard romstage
+ *
+ * Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
+ * Subject to the GNU GPL v2, or (at your option) any later version.
+ */
+
+#include <console/console.h>
+
+void main(void)
+{
+ console_init();
+ printk(BIOS_INFO, "You have managed to succesfully load romstage.\n");
+}