diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2022-12-15 11:12:34 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-12-17 01:18:59 +0000 |
commit | 1c3da3f236c0aac1957a93882674a1f80d279f65 (patch) | |
tree | 84af5791ae648051228b2b2293e9f9e044278556 /src/mainboard/google | |
parent | c57a0663abe1db2bec83162ab2b7483a7a7400a0 (diff) |
mb/google/skyrim: Configure RO and RW SPL files
This will help to integrate RO SPL table in RO partitions such that it
is used before PSP verstage is loaded. After PSP verstage, SPL table in
RW partition gets used.
BUG=b:243470283
TEST=Build Skyrim BIOS image and boot to OS.
Change-Id: Ic2061f66381d7e9a8018e6f28aa0bc2ca6010f6f
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70777
Reviewed-by: Jon Murphy <jpmurphy@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-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 53cdce2a6f..f171b9ff24 100644 --- a/src/mainboard/google/skyrim/Kconfig +++ b/src/mainboard/google/skyrim/Kconfig @@ -64,6 +64,15 @@ config HAVE_SPL_FILE config SPL_TABLE_FILE string depends on HAVE_SPL_FILE + default "3rdparty/blobs/mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME_RO.sbin" + +config HAVE_SPL_RW_AB_FILE + bool + default y + +config SPL_RW_AB_TABLE_FILE + string + depends on HAVE_SPL_RW_AB_FILE default "3rdparty/blobs/mainboard/google/skyrim/TypeId0x55_SplTableBl_MDN_CHROME.sbin" config FMDFILE |