diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-05 20:43:38 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-05 20:43:38 -0500 |
commit | 3d029417164e9a6dffee491fb061de3de6d85595 (patch) | |
tree | a61dab420f5b377e3c409c13ff3f2dd1da128eed /src/system.c | |
parent | 95b2f78f97a83787c5f669f349b0ea4f682d2674 (diff) | |
download | seabios-3d029417164e9a6dffee491fb061de3de6d85595.tar.gz |
This patch adds the BIOS support for SMP, ACPI, PCI, SMM, SMBIOS.
Signed-off-by: Nguyen Anh Quynh
Several compile fixes provided by Kevin O'Connor
Diffstat (limited to 'src/system.c')
-rw-r--r-- | src/system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/system.c b/src/system.c index 29f00527..6f581ef8 100644 --- a/src/system.c +++ b/src/system.c @@ -5,6 +5,7 @@ // // This file may be distributed under the terms of the GNU GPLv3 license. +#include "acpi.h" #include "util.h" // irq_restore #include "biosvar.h" // CONFIG_BIOS_TABLE #include "ioport.h" // inb @@ -282,8 +283,6 @@ handle_15e801(struct bregs *regs) set_cf(regs, 0); } -#define ACPI_DATA_SIZE 0x00010000L - static void set_e820_range(u16 DI, u32 start, u32 end, u16 type) { |