smbios: Support SMBIOS 3.0 entry point at copy_table()

This will make coreboot code (scan_tables()) and xen code
(xen_biostable_setup()) copy SMBIOS 3.0 entry points if
found.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
Eduardo Habkost 2020-12-10 15:19:30 -05:00 committed by Kevin O'Connor
parent eafea937e4
commit 401d3132fd
1 changed files with 1 additions and 0 deletions

View File

@ -618,4 +618,5 @@ copy_table(void *pos)
copy_mptable(pos);
copy_acpi_rsdp(pos);
copy_smbios_21(pos);
copy_smbios_30(pos);
}