aboutsummaryrefslogtreecommitdiff
path: root/src/console/console.c
diff options
context:
space:
mode:
authorRudolf Marek <r.marek@assembler.cz>2010-07-16 20:02:09 +0000
committerRudolf Marek <r.marek@assembler.cz>2010-07-16 20:02:09 +0000
commit4aa93ccd3302d7db0eef00f5963bc991f3f233ff (patch)
tree20c2eafd1c6178df70682a6565e357314236d082 /src/console/console.c
parent7fc9e291d7581845461efbdd74b56a8e0360f1e0 (diff)
Add support for the console over Ethernet (through PCI NE2000).
Signed-off-by: Rudolf Marek <r.marek@assembler.cz> Acked-by: Cristian Magherusan-Stanciu <cristi.magherusan@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5666 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/console.c')
-rw-r--r--src/console/console.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/console/console.c b/src/console/console.c
index ee7fffe6df..833d287c6c 100644
--- a/src/console/console.c
+++ b/src/console/console.c
@@ -7,11 +7,14 @@
#include <arch/hlt.h>
#include <arch/io.h>
+#if CONFIG_CONSOLE_NE2K
+#include <console/ne2k.h>
+#endif
+
#ifndef __PRE_RAM__
#include <string.h>
#include <pc80/mc146818rtc.h>
-
/* initialize the console */
void console_init(void)
{
@@ -99,6 +102,10 @@ void __attribute__((noreturn)) die(const char *msg)
void console_init(void)
{
+
+#if CONFIG_CONSOLE_NE2K
+ ne2k_init(CONFIG_CONSOLE_NE2K_IO_PORT);
+#endif
static const char console_test[] =
"\n\ncoreboot-"
COREBOOT_VERSION