aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2015-05-21 10:00:47 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2015-05-21 11:44:57 +0200
commit3d284aa77f35b743679cd2be9b78b592b36c425f (patch)
tree81d141f2a5a2765fb6b3c74c0d9834cae08ddc2f /include
parentb39bb6c7a55584e7e13e1f855b684ddad7975e63 (diff)
downloadqboot-3d284aa77f35b743679cd2be9b78b592b36c425f.zip
qboot-3d284aa77f35b743679cd2be9b78b592b36c425f.tar.gz
qboot-3d284aa77f35b743679cd2be9b78b592b36c425f.tar.bz2
parse vmlinuz inside firmware
This will make it possible to load the vmlinuz from CBFS. We need some contortions because QEMU splits the real mode and protected mode parts of vmlinuz in different fw_cfg files. The parsing code is lifted from QEMU. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/bios.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bios.h b/include/bios.h
index dfc20af..93c4c96 100644
--- a/include/bios.h
+++ b/include/bios.h
@@ -36,7 +36,7 @@ extern void bios_irq(void);
extern void bios_int10(void);
extern void bios_int15(void);
-extern void boot_linux(void);
+extern void boot_from_fwcfg(void);
extern struct e820map e820;