diff options
author | wdenk <wdenk> | 2004-07-12 14:37:59 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-07-12 14:37:59 +0000 |
commit | 07cba3514b260aad26409fab2dfadbd9d2e467dc (patch) | |
tree | c7c1c0fc8e72fec7653d683eb79102135506d66b /cpu | |
parent | b8c83181604895f55b84f394055b94b67e41458b (diff) | |
download | u-boot-imx-07cba3514b260aad26409fab2dfadbd9d2e467dc.zip u-boot-imx-07cba3514b260aad26409fab2dfadbd9d2e467dc.tar.gz u-boot-imx-07cba3514b260aad26409fab2dfadbd9d2e467dc.tar.bz2 |
Patch by Mark Jonas, 02 Jul 2004:
Fix lowboot (again) on MPC5xxx
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc5xxx/start.S | 12 | ||||
-rw-r--r-- | cpu/mpc8xx/lcd.c | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/cpu/mpc5xxx/start.S b/cpu/mpc5xxx/start.S index a2ac999..3936b55 100644 --- a/cpu/mpc5xxx/start.S +++ b/cpu/mpc5xxx/start.S @@ -107,12 +107,12 @@ boot_warm: /*--------------------------------------------------------------*/ #if defined(CFG_LOWBOOT) -#if defined(CFG_RAMBOOT) -#error CFG_LOWBOOT is incompatible with CFG_RAMBOOT -#endif /* CFG_RAMBOOT */ -#if defined(CFG_LOWBOOT) -#error CFG_LOWBOOT is incompatible with MGT5100 -#endif /* CFG_LOWBOOT */ +# if defined(CFG_RAMBOOT) +# error CFG_LOWBOOT is incompatible with CFG_RAMBOOT +# endif /* CFG_RAMBOOT */ +# if defined(CONFIG_MGT5100) +# error CFG_LOWBOOT is incompatible with MGT5100 +# endif /* CONFIG_MGT5100 */ lis r4, CFG_DEFAULT_MBAR@h lis r3, START_REG(CFG_BOOTCS_START)@h ori r3, r3, START_REG(CFG_BOOTCS_START)@l diff --git a/cpu/mpc8xx/lcd.c b/cpu/mpc8xx/lcd.c index 882a146..cce0cc2 100644 --- a/cpu/mpc8xx/lcd.c +++ b/cpu/mpc8xx/lcd.c @@ -1354,7 +1354,7 @@ static void *lcd_logo (void) sprintf (info, "%s (%s - %s) ", U_BOOT_VERSION, __DATE__, __TIME__); lcd_drawchars (LCD_INFO_X, LCD_INFO_Y, info, strlen(info)); - sprintf (info, "(C) 2003 DENX Software Engineering"); + sprintf (info, "(C) 2004 DENX Software Engineering"); lcd_drawchars (LCD_INFO_X, LCD_INFO_Y + VIDEO_FONT_HEIGHT, info, strlen(info)); |