diff options
author | Simon Glass <sjg@chromium.org> | 2020-11-05 06:32:11 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-11-06 10:18:20 +0800 |
commit | 44c74bdd5828c885b97a1518b9d85239a1020c6c (patch) | |
tree | 93c7b4344741ebde63b5e143dbc10ee75d4dba35 /lib | |
parent | f96965315489fcb7fc9df8fe4da0137150bb3826 (diff) | |
download | u-boot-44c74bdd5828c885b97a1518b9d85239a1020c6c.zip u-boot-44c74bdd5828c885b97a1518b9d85239a1020c6c.tar.gz u-boot-44c74bdd5828c885b97a1518b9d85239a1020c6c.tar.bz2 |
sysinfo: Provide a default driver to set SMBIOS values
Some boards want to specify the manufacturer or product name but do not
need to have their own sysinfo driver.
Add a default driver which provides a way to specify this SMBIOS
information in the devicetree, without needing any board-specific
functionality.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 8f48753..fdc35a9 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -658,6 +658,9 @@ config GENERATE_SMBIOS_TABLE Check http://www.dmtf.org/standards/smbios for details. + See also SMBIOS_SYSINFO which allows SMBIOS values to be provided in + the devicetree. + config SMBIOS_MANUFACTURER string "SMBIOS Manufacturer" depends on GENERATE_SMBIOS_TABLE |