diff options
author | Martin Roth <martinroth@chromium.org> | 2018-09-17 13:30:51 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-09-21 07:07:52 +0000 |
commit | 4ae44fce56e7d13ff2a4246b1ab229cf603a1423 (patch) | |
tree | 3223f9c3c6baf7b358f471429e47fac17927342c /src/mainboard/google/kahlee/Kconfig | |
parent | 06c14d096200fcd2fb595732225a5a8272b09617 (diff) | |
download | coreboot-4ae44fce56e7d13ff2a4246b1ab229cf603a1423.tar.xz |
mainboard/google/kahlee: allow oem.bin file to update smbios
Grunt variants need a way to customize the mainboard vendor based on the
platform. For future boards, this can probably be done via CBI, but
grunt doesn't support that method.
BUG=b:79874904
TEST=Build, boot, see updated mainboard vendor
Change-Id: I997dc39c7f36f70cf4320ef335831245889eb475
Signed-off-by: Martin Roth <martinroth@chromium.org>
Reviewed-on: https://review.coreboot.org/28651
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@google.com>
Diffstat (limited to 'src/mainboard/google/kahlee/Kconfig')
-rw-r--r-- | src/mainboard/google/kahlee/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mainboard/google/kahlee/Kconfig b/src/mainboard/google/kahlee/Kconfig index 91809066c6..ce6227cef8 100644 --- a/src/mainboard/google/kahlee/Kconfig +++ b/src/mainboard/google/kahlee/Kconfig @@ -128,4 +128,15 @@ config DRIVER_TPM_I2C_ADDR hex default 0x50 +config USE_OEM_BIN + bool "Add an oem.bin file" + help + Add an oem.bin file to identify the manufacturer in SMBIOS, overriding the + CONFIG_MAINBOARD_SMBIOS_MANUFACTURER value. + +config OEM_BIN_FILE + string "OEM ID table" + depends on USE_OEM_BIN + default "" + endif # BOARD_GOOGLE_BASEBOARD_KAHLEE |