[LinuxBIOS] r488 - LinuxBIOSv3/arch/x86

svn at openbios.org svn at openbios.org
Wed Sep 5 03:47:21 CEST 2007


Author: stepan
Date: 2007-09-05 03:47:21 +0200 (Wed, 05 Sep 2007)
New Revision: 488

Modified:
   LinuxBIOSv3/arch/x86/stage1.c
Log:
the new multi-segment lar handling has an off-by-one error in the                                                                         
printk. 

Signed-off-by: Alex Beregszaszi <alex at rtfs.hu>                                                             
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: LinuxBIOSv3/arch/x86/stage1.c
===================================================================
--- LinuxBIOSv3/arch/x86/stage1.c	2007-09-05 01:41:52 UTC (rev 487)
+++ LinuxBIOSv3/arch/x86/stage1.c	2007-09-05 01:47:21 UTC (rev 488)
@@ -182,7 +182,7 @@
 		archive.len = *(u32 *)0xfffffff4;
 		archive.start =(void *)(0UL-archive.len);
 		newentry = load_file(&archive, filename);
-		printk("newentry is %p\n", newentry);
+		printk(BIOS_SPEW, "newentry is %p\n", newentry);
 		if (newentry == (void *)-1)
 			break;
 		if (! entry)





More information about the coreboot mailing list