Early versions of coreboot did not create an SMBIOS table (which Linux
needs in order to use the ACPI tables), so SeaBIOS had a hack to
generate an SMBIOS table. However, recent versions of coreboot can
generate an SMBIOS table, so there is no longer a reason to support
this hack.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
endmenu
menu "BIOS Tables"
+ depends on !COREBOOT
config PIRTABLE
- depends on !COREBOOT
bool "PIR table"
default y
help
Support generation of a PIR table in 0xf000 segment.
config MPTABLE
- depends on !COREBOOT
bool "MPTable"
default y
help
Support generation of SM BIOS tables. This is also
sometimes called DMI.
config ACPI
- depends on !COREBOOT
bool "ACPI"
default y
help
if (m->type == CB_MEM_TABLE)
scan_tables(m->start, m->size);
}
-
- // XXX - create a dummy smbios table for now.
- if (!SMBiosAddr)
- smbios_init();
}