diff options
| author | wdenk <wdenk> | 2004-08-02 21:11:11 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-08-02 21:11:11 +0000 | 
| commit | 68ceb29e7133a0f972f53d3d61fd61207374baec (patch) | |
| tree | aea2bf247ffeabcab9e908c152b316e269e2e5ee /include/devices.h | |
| parent | 9aea95307fdb0ffe0d3a98a17ac73e5040c9756a (diff) | |
| download | olio-uboot-2014.01-68ceb29e7133a0f972f53d3d61fd61207374baec.tar.xz olio-uboot-2014.01-68ceb29e7133a0f972f53d3d61fd61207374baec.zip | |
Add support for console over UDP (compatible to Ingo Molnar's
netconsole patch under Linux)
Diffstat (limited to 'include/devices.h')
| -rw-r--r-- | include/devices.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/devices.h b/include/devices.h index 09c2c5f51..2d9e282e3 100644 --- a/include/devices.h +++ b/include/devices.h @@ -108,5 +108,8 @@ int	drv_keyboard_init (void);  #ifdef CONFIG_USB_TTY  int	drv_usbtty_init (void);  #endif +#ifdef CONFIG_NETCONSOLE +int	drv_nc_init (void); +#endif  #endif	/* _DEVICES_H_ */ |