mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
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@gmail.com> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@834 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
@@ -32,7 +32,7 @@ void go(void)
|
||||
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:
|
||||
|
||||
Reference in New Issue
Block a user