Author: rminnich
Date: 2008-12-23 07:59:04 +0100 (Tue, 23 Dec 2008)
New Revision: 1083

Modified:
   coreboot-v3/mainboard/kontron/986lcd-m/initram.c
Log:
Quick emergency fix for unitialized variable. A number of recent changes 
have resulted in breaking the kontron port. I am trying to fix them. 

In case there is any concern about the initialization: 
this is a scalar auto being initialized. 
The initialization is done in code. I have verified this both by checking
the object code and actually running it; this fix resolves a break introduced
at some point. 

Other breakage remains: kontron now hangs here: 
run_file returns with 0
Done RAM init code
Done printk() buffer move
disable_car entry
disable_car global_vars copy done
disable_car global_vars pointer adjusted
entering asm code now


Signed-off-by: Ronald G. Minnich <[email protected]>
Acked-by: Ronald G. Minnich <[email protected]>


Modified: coreboot-v3/mainboard/kontron/986lcd-m/initram.c
===================================================================
--- coreboot-v3/mainboard/kontron/986lcd-m/initram.c    2008-12-22 17:36:06 UTC 
(rev 1082)
+++ coreboot-v3/mainboard/kontron/986lcd-m/initram.c    2008-12-23 06:59:04 UTC 
(rev 1083)
@@ -157,7 +157,7 @@
  */
 int main(void)
 {
-       int boot_mode;
+       int boot_mode = 0;
        void i945_early_initialization(void);
        void enable_smbus(void);
        int fixup_i945_errata(void);


--
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to