diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2022-07-25 13:45:47 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-08-03 23:15:14 +0000 |
commit | 77b2d45c9e4374320e802749e144bf40cb4a3f87 (patch) | |
tree | f085eb3b4bf08c3e70cd5feb2ebd3f51cacbc270 /src | |
parent | cfb90fd204ac616cf55a0c28272b65c118b3f09f (diff) |
mb/google/skyrim: Enable PSP verstage
Enabling required config items to execute verstage in PSP.
BUG=b:217414563
TEST=Build and boot to OS in Skyrim with PSP verstage.
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Change-Id: Iee14dc80cb6691acb5cb59a21da5a3dff69f7dd2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66135
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/skyrim/Kconfig | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mainboard/google/skyrim/Kconfig b/src/mainboard/google/skyrim/Kconfig index 379fd43386..f00775824f 100644 --- a/src/mainboard/google/skyrim/Kconfig +++ b/src/mainboard/google/skyrim/Kconfig @@ -78,7 +78,14 @@ config VARIANT_DIR config VBOOT select VBOOT_LID_SWITCH select VBOOT_SEPARATE_VERSTAGE - select VBOOT_STARTS_IN_BOOTBLOCK + +config VBOOT_STARTS_BEFORE_BOOTBLOCK + bool "Enable PSP_verstage" + default y if VBOOT + +config VBOOT_STARTS_IN_BOOTBLOCK + bool + default y if VBOOT && !VBOOT_STARTS_BEFORE_BOOTBLOCK # TODO: Remove once CBFS verification on AMD has been fixed. config VBOOT_GSCVD |