aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-08-02 21:11:11 +0000
committerwdenk <wdenk>2004-08-02 21:11:11 +0000
commit68ceb29e7133a0f972f53d3d61fd61207374baec (patch)
treeaea2bf247ffeabcab9e908c152b316e269e2e5ee /common
parent9aea95307fdb0ffe0d3a98a17ac73e5040c9756a (diff)
Add support for console over UDP (compatible to Ingo Molnar's
netconsole patch under Linux)
Diffstat (limited to 'common')
-rw-r--r--common/devices.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/devices.c b/common/devices.c
index b37c99a69..bd4dfa024 100644
--- a/common/devices.c
+++ b/common/devices.c
@@ -201,6 +201,9 @@ int devices_init (void)
#ifdef CONFIG_USB_TTY
drv_usbtty_init ();
#endif
+#ifdef CONFIG_NETCONSOLE
+ drv_nc_init ();
+#endif
return (0);
}