aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/lib/romcc_console.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/arch/x86/lib/romcc_console.c b/src/arch/x86/lib/romcc_console.c
index 62490fcb9d..9e0c3c93fc 100644
--- a/src/arch/x86/lib/romcc_console.c
+++ b/src/arch/x86/lib/romcc_console.c
@@ -17,6 +17,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <build.h>
#include <console/streams.h>
#include <console/early_print.h>
@@ -60,6 +61,20 @@ void console_tx_flush(void)
}
#include <console/early_print.c>
-#include <console/init.c>
#include <console/post.c>
#include <console/die.c>
+
+void console_init(void)
+{
+ static const char console_test[] =
+ "\n\ncoreboot-"
+ COREBOOT_VERSION
+ COREBOOT_EXTRA_VERSION
+ " "
+ COREBOOT_BUILD
+ " starting...\n";
+
+ console_hw_init();
+
+ print_info(console_test);
+}