diff options
author | Daisuke Nojiri <dnojiri@chromium.org> | 2020-04-14 17:33:40 -0700 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2020-04-23 01:20:55 +0000 |
commit | 5feef37de8fa2da9ca0b5df48bdf470c248cc0cb (patch) | |
tree | 899ceedfc7bb182bb9a32434a555f2b6244990eb /src/mainboard/google/hatch/Kconfig | |
parent | 16a29e53ff63ac2b6431e85552004c49386d50db (diff) | |
download | coreboot-5feef37de8fa2da9ca0b5df48bdf470c248cc0cb.tar.xz |
Puff: Enable VBOOT_EARLY_EC_SYNC
Romstage is now where software sync is performed for chromebooks.
EFS2 has been ported to romstage from Depthcharge. Puff should
follow.
This patch enables CONFIG_EARLY_EC_SYNC and disables
CONFIG_VBOOT_EC_EFS. EFS2 will be done in romstage.
BUG=b:147298634, chromium:1045217
BRANCH=none
TEST=Verify software sync succeeds on Puff.
Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Change-Id: I8d7c25f8281496c7adb282f5d4e0fc192d746e3e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40390
Reviewed-by: Julius Werner <jwerner@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/hatch/Kconfig')
-rw-r--r-- | src/mainboard/google/hatch/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/hatch/Kconfig b/src/mainboard/google/hatch/Kconfig index b284ffecdb..11137bde6e 100644 --- a/src/mainboard/google/hatch/Kconfig +++ b/src/mainboard/google/hatch/Kconfig @@ -141,13 +141,13 @@ config VARIANT_DIR config VBOOT select HAS_RECOVERY_MRC_CACHE select MRC_CLEAR_NORMAL_CACHE_ON_RECOVERY_RETRAIN + select VBOOT_EARLY_EC_SYNC endif # BOARD_GOOGLE_BASEBOARD_HATCH if BOARD_GOOGLE_BASEBOARD_HATCH_LAPTOP config VBOOT - select VBOOT_EARLY_EC_SYNC select VBOOT_LID_SWITCH endif # BOARD_GOOGLE_BASEBOARD_HATCH_LAPTOP |