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/command.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/command.c')
| -rw-r--r-- | common/command.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/common/command.c b/common/command.c index 2f50e6d1f..db39b41fa 100644 --- a/common/command.c +++ b/common/command.c @@ -68,6 +68,7 @@  #include <cmd_dtt.h>  #include <cmd_vfd.h>		/* load a bitmap to the VFDs on TRAB */ +#include <cmd_log.h>  /*   * HELP command @@ -280,6 +281,7 @@ cmd_tbl_t cmd_tbl[] = {  	CMD_TBL_KGDB  	CMD_TBL_LOADB  	CMD_TBL_LOADS +	CMD_TBL_LOG  	CMD_TBL_LOOP  	CMD_TBL_JFFS2_LS  	CMD_TBL_MCCINFO |