aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/lib
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-12-23 02:03:34 +0100
committerTom Rini <trini@konsulko.com>2024-01-16 17:05:29 -0500
commit1c5aab803c0b0f07be1d3b0029f4031463497acf (patch)
treef7eadcb44aa89ba17bf9376d91f4f1e676a947b1 /arch/x86/lib
parent481ffca4857d08f31e4ee179c5a0e609957869b1 (diff)
downloadu-boot-1c5aab803c0b0f07be1d3b0029f4031463497acf.zip
u-boot-1c5aab803c0b0f07be1d3b0029f4031463497acf.tar.gz
u-boot-1c5aab803c0b0f07be1d3b0029f4031463497acf.tar.bz2
smbios: copy QEMU tables
QEMU provides SMBIOS tables with detailed information. We should not try to replicate them in U-Boot. If we want to inform about U-Boot, we can add a Firmware Inventory Information (type 45) table in future. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/lib')
-rw-r--r--arch/x86/lib/tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/tables.c b/arch/x86/lib/tables.c
index d43e77d..12eae17 100644
--- a/arch/x86/lib/tables.c
+++ b/arch/x86/lib/tables.c
@@ -62,7 +62,7 @@ static struct table_info table_list[] = {
#ifdef CONFIG_GENERATE_ACPI_TABLE
{ "acpi", write_acpi_tables, BLOBLISTT_ACPI_TABLES, 0x10000, 0x1000},
#endif
-#ifdef CONFIG_GENERATE_SMBIOS_TABLE
+#if defined(CONFIG_GENERATE_SMBIOS_TABLE) && !defined(CONFIG_QFW_SMBIOS)
{ "smbios", write_smbios_table, BLOBLISTT_SMBIOS_TABLES, 0x1000, 0x100},
#endif
};