aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2014-04-07 16:35:18 -0400
committerKevin O'Connor <kevin@koconnor.net>2014-04-07 16:37:52 -0400
commit3bd2dc6d5c2a3cec5a28e660b0ece699a0e94c0b (patch)
tree0fe0caf86869d1d8526a7692a8a9aeddf7be6b0c /src/util.h
parent19646a4b51d41e44df17db6807cb7206c70629e3 (diff)
downloadseabios-3bd2dc6d5c2a3cec5a28e660b0ece699a0e94c0b.tar.gz
Use biostables.c for copying bios tables even when generating them.
Use the biostables.c copy_pir(), copy_smbios(), copy_acpi_rsdp(), and copy_mptable() code even when using the legacy bios table generation code. This unifies the final bios table deployment code between qemu, coreboot, and csm. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 223d5c03..dd0ec6ae 100644
--- a/src/util.h
+++ b/src/util.h
@@ -64,7 +64,10 @@ void handle_1586(struct bregs *regs);
void acpi_setup(void);
// fw/biostable.c
+void copy_pir(void *pos);
+void copy_mptable(void *pos);
extern struct pir_header *PirAddr;
+void copy_acpi_rsdp(void *pos);
extern struct rsdp_descriptor *RsdpAddr;
extern u32 acpi_pm1a_cnt;
void *find_acpi_rsdp(void);