summaryrefslogtreecommitdiff
path: root/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc
diff options
context:
space:
mode:
authorMartin Roth <martinroth@chromium.org>2018-09-17 13:30:51 -0600
committerPatrick Georgi <pgeorgi@google.com>2018-09-21 07:07:52 +0000
commit4ae44fce56e7d13ff2a4246b1ab229cf603a1423 (patch)
tree3223f9c3c6baf7b358f471429e47fac17927342c /src/mainboard/google/kahlee/variants/baseboard/Makefile.inc
parent06c14d096200fcd2fb595732225a5a8272b09617 (diff)
downloadcoreboot-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/variants/baseboard/Makefile.inc')
-rw-r--r--src/mainboard/google/kahlee/variants/baseboard/Makefile.inc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc b/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc
index 1f6d8ce792..6ffbf5373b 100644
--- a/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc
+++ b/src/mainboard/google/kahlee/variants/baseboard/Makefile.inc
@@ -25,3 +25,10 @@ romstage-y += tpm_tis.c
ramstage-y += gpio.c
ramstage-y += tpm_tis.c
+
+# Add OEM ID table
+ifeq ($(CONFIG_USE_OEM_BIN),y)
+cbfs-files-y += oem.bin
+oem.bin-file := $(call strip_quotes,$(CONFIG_OEM_BIN_FILE))
+oem.bin-type := raw
+endif #($(CONFIG_USE_OEM_BIN),y)