diff options
author | wdenk | 2002-11-05 16:35:14 +0000 |
---|---|---|
committer | wdenk | 2002-11-05 16:35:14 +0000 |
commit | 56f94be3ef63732384063e110277ed89701b6471 (patch) | |
tree | 6c7acdd32964b741cb69a8f0b03d5b9891587458 /common/devices.c | |
parent | 384ae02506f0673070a3516b1858f058a07f85f3 (diff) |
* Add support for log buffer which can be passed to Linux kernel's
syslog mechanism; used especially for POST results.
* Patch by Klaus Heydeck, 31 Oct 2002:
Add initial support for kup4k board
Diffstat (limited to 'common/devices.c')
-rw-r--r-- | common/devices.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/devices.c b/common/devices.c index 2d0b04614f3..8207f834fee 100644 --- a/common/devices.c +++ b/common/devices.c @@ -178,6 +178,9 @@ int devices_init (void) #ifdef CONFIG_WL_4PPM_KEYBOARD drv_wlkbd_init (); #endif +#ifdef CONFIG_LOGBUFFER + drv_logbuff_init (); +#endif drv_system_init (); gd-> flags |= GD_FLG_DEVINIT; /* device initialization done */ |