diff options
author | Heinrich Schuchardt | 2023-12-23 02:03:34 +0100 |
---|---|---|
committer | Tom Rini | 2024-01-16 17:05:29 -0500 |
commit | 1c5aab803c0b0f07be1d3b0029f4031463497acf (patch) | |
tree | f7eadcb44aa89ba17bf9376d91f4f1e676a947b1 /drivers/misc/Kconfig | |
parent | 481ffca4857d08f31e4ee179c5a0e609957869b1 (diff) |
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 'drivers/misc/Kconfig')
-rw-r--r-- | drivers/misc/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index e85a0dd51ca..f11ce72525f 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -554,6 +554,13 @@ config QFW_MMIO Hidden option to enable MMIO QEMU fw_cfg interface. This will be selected by the appropriate QEMU board. +config QFW_SMBIOS + bool + default y + depends on QFW && SMBIOS && !SANDBOX + help + Hidden option to read SMBIOS tables from QEMU. + config I2C_EEPROM bool "Enable driver for generic I2C-attached EEPROMs" depends on MISC |