diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-04-07 16:35:18 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-04-07 16:37:52 -0400 |
commit | 3bd2dc6d5c2a3cec5a28e660b0ece699a0e94c0b (patch) | |
tree | 0fe0caf86869d1d8526a7692a8a9aeddf7be6b0c /src/util.h | |
parent | 19646a4b51d41e44df17db6807cb7206c70629e3 (diff) | |
download | seabios-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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); |