diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-19 13:50:38 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-19 13:50:38 +0200 | 
| commit | b87dfd2854809ddcf4be54d772752e7ed137386f (patch) | |
| tree | d10a0446c375a2961223f12f553a51422bff553a /board/tqm5200/tqm5200.c | |
| parent | f3e06df7e89a1b6ff6701d523b4beea6e3fa5159 (diff) | |
| download | olio-uboot-2014.01-b87dfd2854809ddcf4be54d772752e7ed137386f.tar.xz olio-uboot-2014.01-b87dfd2854809ddcf4be54d772752e7ed137386f.zip | |
Add support for TB5200 board
The TB5200 ("Tinybox") is a small baseboard for the TQM5200 module
integrated in a little aluminium case.
Patch by Martin Krause, 8 Jun 2006
Some code cleanup
Diffstat (limited to 'board/tqm5200/tqm5200.c')
| -rw-r--r-- | board/tqm5200/tqm5200.c | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/board/tqm5200/tqm5200.c b/board/tqm5200/tqm5200.c index 310abd2b8..c6309e321 100644 --- a/board/tqm5200/tqm5200.c +++ b/board/tqm5200/tqm5200.c @@ -260,6 +260,9 @@ int checkboard (void)  #if defined (CONFIG_STK52XX)  	puts ("       on a STK52XX baseboard\n");  #endif +#if defined (CONFIG_TB5200) +	puts ("       on a TB5200 baseboard\n"); +#endif  	return 0;  } @@ -567,10 +570,15 @@ void video_get_info_str (int line_number, char *info)  {  	if (line_number == 1) {  	strcpy (info, " Board: TQM5200 (TQ-Components GmbH)"); -#if defined (CONFIG_STK52XX) +#if defined (CONFIG_STK52XX) || defined (CONFIG_TB5200)  	} else if (line_number == 2) { +#if defined (CONFIG_STK52XX)  		strcpy (info, "        on a STK52XX baseboard");  #endif +#if defined (CONFIG_TB5200) +		strcpy (info, "        on a TB5200 baseboard"); +#endif +#endif  	}  	else {  		info [0] = '\0'; |