[OpenBIOS] [commit] r834 - trunk/openbios-devel/arch/x86

repository service svn at openbios.org
Fri Aug 6 18:35:44 CEST 2010


Author: blueswirl
Date: Fri Aug  6 18:35:44 2010
New Revision: 834
URL: http://tracker.coreboot.org/trac/openbios/changeset/834

Log:
Fix x86 build

CC    target/arch/x86/boot.o
../arch/x86/boot.c: In function 'go':
../arch/x86/boot.c:35: error: 'boot_notes' undeclared (first use in this function)

Signed-off-by: Blue Swirl <blauwirbel at gmail.com>

Modified:
   trunk/openbios-devel/arch/x86/boot.c

Modified: trunk/openbios-devel/arch/x86/boot.c
==============================================================================
--- trunk/openbios-devel/arch/x86/boot.c	Wed Aug  4 22:53:22 2010	(r833)
+++ trunk/openbios-devel/arch/x86/boot.c	Fri Aug  6 18:35:44 2010	(r834)
@@ -32,7 +32,7 @@
 	switch (type) {
 		case 0x0:
 			/* Start ELF boot image */
-			image_retval = start_elf(address, (uint32_t)&boot_notes);
+			image_retval = start_elf(address, (uint32_t)&elf_boot_notes);
 			break;
 
 		case 0x1:



More information about the OpenBIOS mailing list