Skip to content
Snippets Groups Projects
Commit 5ce378cf authored by Bin Meng's avatar Bin Meng
Browse files

x86: kconfig: Add two options for SMBIOS manufacturer and product name


This introduces two Kconfig options to be used by SMBIOS tables:
board manufacturer and product name.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 84c29994
No related branches found
No related tags found
No related merge requests found
...@@ -464,6 +464,22 @@ config GENERATE_SMBIOS_TABLE ...@@ -464,6 +464,22 @@ config GENERATE_SMBIOS_TABLE
Check http://www.dmtf.org/standards/smbios for details. Check http://www.dmtf.org/standards/smbios for details.
config SMBIOS_MANUFACTURER
string "SMBIOS Manufacturer"
depends on GENERATE_SMBIOS_TABLE
default SYS_VENDOR
help
The board manufacturer to store in SMBIOS structures.
Change this to override the default one (CONFIG_SYS_VENDOR).
config SMBIOS_PRODUCT_NAME
string "SMBIOS Product Name"
depends on GENERATE_SMBIOS_TABLE
default SYS_BOARD
help
The product name to store in SMBIOS structures.
Change this to override the default one (CONFIG_SYS_BOARD).
endmenu endmenu
config MAX_PIRQ_LINKS config MAX_PIRQ_LINKS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment