diff options
author | Jon Murphy <jpmurphy@google.com> | 2022-09-27 17:48:00 -0600 |
---|---|---|
committer | Karthik Ramasubramanian <kramasub@google.com> | 2022-10-04 15:13:10 +0000 |
commit | 49332fe85696575c4f9b6ee52508e61f7159bb4c (patch) | |
tree | 95a56dcbafb31023c4ce7416ad72e60941615801 | |
parent | c6ee1509da9490832af2ceee835fa23514d9bc85 (diff) |
mb/google/skyrim: Update Kconfig to point to SPL
ChromeOS requires a custom SPL table. Update Kconfig to point to the
ChromeOS version of the SPL resident in the blobs directory.
Bug=b:245727030
Test=Boots
Signed-off-by: Jon Murphy <jpmurphy@google.com>
Change-Id: I70dcb19983c970283ee887b78a18c0668e83d4b0
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67928
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/mainboard/google/skyrim/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/google/skyrim/Kconfig b/src/mainboard/google/skyrim/Kconfig index cf2e136626..72079e86ed 100644 --- a/src/mainboard/google/skyrim/Kconfig +++ b/src/mainboard/google/skyrim/Kconfig @@ -55,6 +55,15 @@ config DRIVER_TPM_I2C_ADDR hex default 0x50 +config HAVE_SPL_FILE + bool + default y + +config SPL_TABLE_FILE + string + depends on HAVE_SPL_FILE + default "3rdparty/blobs/mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME.sbin" + config FMDFILE default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/chromeos.fmd" |