aboutsummaryrefslogtreecommitdiff
path: root/src/include/boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/boot')
-rw-r--r--src/include/boot/elf.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/boot/elf.h b/src/include/boot/elf.h
index 36ad670d4c..98818aee79 100644
--- a/src/include/boot/elf.h
+++ b/src/include/boot/elf.h
@@ -389,10 +389,12 @@ typedef Elf64_Ehdr Elf_ehdr;
typedef Elf64_Phdr Elf_phdr;
#endif
-extern int elf_check_arch(Elf_ehdr *ehdr);
-extern void jmp_to_elf_entry(void *entry, unsigned long buffer);
+int elf_check_arch(Elf_ehdr *ehdr);
+void jmp_to_elf_entry(void *entry, unsigned long buffer);
struct lb_memory;
-extern int elfboot(struct lb_memory *mem);
+int elfboot(struct lb_memory *mem);
+/* Temporary compile fix, FILO should be dropped from coreboot */
+int filo(struct lb_memory *mem);
#define FIRMWARE_TYPE "coreboot"
#define BOOTLOADER "elfboot"