diff options
| author | wdenk <wdenk> | 2002-11-05 16:35:14 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2002-11-05 16:35:14 +0000 | 
| commit | 56f94be3ef63732384063e110277ed89701b6471 (patch) | |
| tree | 6c7acdd32964b741cb69a8f0b03d5b9891587458 /common/devices.c | |
| parent | 384ae02506f0673070a3516b1858f058a07f85f3 (diff) | |
| download | olio-uboot-2014.01-56f94be3ef63732384063e110277ed89701b6471.tar.xz olio-uboot-2014.01-56f94be3ef63732384063e110277ed89701b6471.zip | |
* Add support for log buffer which can be passed to Linux kernel'sLABEL_2002_11_05_1735
  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 2d0b04614..8207f834f 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 */ |