diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-06-12 22:12:48 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-06-12 22:12:48 -0400 |
commit | d8a1811d26589f03c01d169dadc1967c59625f8d (patch) | |
tree | 3604ee64952f21413a660ca548022491b2c211a1 /src/config.h | |
parent | 276d4a916517fc8ebf05b05f0226e80787f90309 (diff) | |
download | seabios-d8a1811d26589f03c01d169dadc1967c59625f8d.tar.gz |
Add config option CONFIG_ACPI for turning off ACPI table generation.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index de26919e..1f2a6b5f 100644 --- a/src/config.h +++ b/src/config.h @@ -28,8 +28,10 @@ #define CONFIG_KBD_CALL_INT15_4F 1 #define CONFIG_CDROM_BOOT 1 #define CONFIG_CDROM_EMU 1 -// Support built-in PIR table in 0xf000 segment +// Support generation of a PIR table in 0xf000 segment (for emulators) #define CONFIG_PIRTABLE 1 +// Support generation of ACPI PIR tables (for emulators) +#define CONFIG_ACPI 1 // Support int 1a/b1 PCI BIOS calls #define CONFIG_PCIBIOS 1 // Support int 15/53 APM BIOS calls |