diff options
author | Wolfgang Denk <wd@denx.de> | 2008-07-07 01:22:29 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-08-08 16:43:01 +0200 |
commit | 21f971ec265f6042ec21636d55d06a6bc0751077 (patch) | |
tree | 3ce391e7c897affaac06bb37c1fe25e02c901d3d | |
parent | 3b8d17f0f082073346c0df017c9dfd6acdb40d6d (diff) | |
download | u-boot-imx-21f971ec265f6042ec21636d55d06a6bc0751077.zip u-boot-imx-21f971ec265f6042ec21636d55d06a6bc0751077.tar.gz u-boot-imx-21f971ec265f6042ec21636d55d06a6bc0751077.tar.bz2 |
TQM823L: re-enable logo support; update LCD_INFO text
Signed-off-by: Wolfgang Denk <wd@denx.de>
-rw-r--r-- | common/lcd.c | 2 | ||||
-rw-r--r-- | include/configs/TQM823L.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/common/lcd.c b/common/lcd.c index e3347ec..8d770f3 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -793,7 +793,7 @@ static void *lcd_logo (void) sprintf (info, "%s (%s - %s) ", U_BOOT_VERSION, __DATE__, __TIME__); lcd_drawchars (LCD_INFO_X, LCD_INFO_Y, (uchar *)info, strlen(info)); - sprintf (info, "(C) 2004 DENX Software Engineering"); + sprintf (info, "(C) 2008 DENX Software Engineering GmbH"); lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT, (uchar *)info, strlen(info)); diff --git a/include/configs/TQM823L.h b/include/configs/TQM823L.h index 3871722..d5a3c54 100644 --- a/include/configs/TQM823L.h +++ b/include/configs/TQM823L.h @@ -37,6 +37,8 @@ #define CONFIG_TQM823L 1 /* ...on a TQM8xxL module */ #ifdef CONFIG_LCD /* with LCD controller ? */ +#define CONFIG_LCD_LOGO 1 /* print our logo on the LCD */ +#define CONFIG_LCD_INFO 1 /* ... and some board info */ #define CONFIG_SPLASH_SCREEN /* ... with splashscreen support*/ #endif |