]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Patch by Mark Jonas, 02 Jul 2004:
authorwdenk <wdenk>
Mon, 12 Jul 2004 14:37:59 +0000 (14:37 +0000)
committerwdenk <wdenk>
Mon, 12 Jul 2004 14:37:59 +0000 (14:37 +0000)
Fix lowboot (again) on MPC5xxx

CHANGELOG
cpu/mpc5xxx/start.S
cpu/mpc8xx/lcd.c

index 03b08ca238754467fcfadc892865b6d7f731d131..244f1392b49507030c0d4be46b6b48bc18eecb38 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes since U-Boot 1.1.1:
 ======================================================================
 
+* Patch by Mark Jonas, 02 Jul 2004:
+  Fix lowboot (again) on MPC5xxx
+
 * Patch by Curt Brune, 07 Jul 2004:
   relocate exception vectors on arm720t if needed
 
index a2ac99958a53763e5e15a56a0960363ad1e90178..3936b5551f3c11d33437c755083dfccd4a6fc82a 100644 (file)
@@ -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
index 882a146652a0394d0349cde0922151f53ebe2f78..cce0cc2b86d434a3d06704c047e8803459b5c487 100644 (file)
@@ -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));