Joel Kitching has uploaded this change for review.

View Change

vboot: remove VBOOT_EC_EFS Kconfig option

This option has been relocated to depthcharge:
https://crrev.com/c/1523248

BUG=b:124141368, b:124192753
TEST=Build and deploy to eve
TEST=util/lint/checkpatch.pl -g origin/master..HEAD
TEST=util/abuild/abuild -B -e -y -c 50 -p none -x
TEST=make clean && make test-abuild
CQ-DEPEND=CL:1523248
BRANCH=none

Change-Id: I8b3740c8301f9a193f4fce2c6492d9382730faa1
Signed-off-by: Joel Kitching <kitching@google.com>
---
M src/mainboard/google/fizz/Kconfig
M src/security/vboot/Kconfig
M src/security/vboot/vboot_handoff.c
3 files changed, 0 insertions(+), 12 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/31897/1
diff --git a/src/mainboard/google/fizz/Kconfig b/src/mainboard/google/fizz/Kconfig
index 6f05c24..3c8215b 100644
--- a/src/mainboard/google/fizz/Kconfig
+++ b/src/mainboard/google/fizz/Kconfig
@@ -39,7 +39,6 @@

config VBOOT
select EC_GOOGLE_CHROMEEC_SWITCHES
- select VBOOT_EC_EFS
select VBOOT_PHYSICAL_REC_SWITCH
select HAS_RECOVERY_MRC_CACHE
select MRC_CLEAR_NORMAL_CACHE_ON_RECOVERY_RETRAIN
diff --git a/src/security/vboot/Kconfig b/src/security/vboot/Kconfig
index a382e67..8d3d83f 100644
--- a/src/security/vboot/Kconfig
+++ b/src/security/vboot/Kconfig
@@ -193,15 +193,6 @@
Whether the EC (or PD) is slow to update and needs to display a
screen that informs the user the update is happening.

-config VBOOT_EC_EFS
- bool
- default n
- depends on VBOOT_EC_SOFTWARE_SYNC
- help
- CrosEC can support EFS: Early Firmware Selection. If it's enabled,
- software sync need to also support it. This setting tells vboot to
- perform EFS software sync.
-
config VBOOT_PHYSICAL_DEV_SWITCH
bool
default n
diff --git a/src/security/vboot/vboot_handoff.c b/src/security/vboot/vboot_handoff.c
index 2bb26a8..eaac76a 100644
--- a/src/security/vboot/vboot_handoff.c
+++ b/src/security/vboot/vboot_handoff.c
@@ -85,8 +85,6 @@
vb_sd->flags |= VBSD_EC_SOFTWARE_SYNC;
if (CONFIG(VBOOT_EC_SLOW_UPDATE))
vb_sd->flags |= VBSD_EC_SLOW_UPDATE;
- if (CONFIG(VBOOT_EC_EFS))
- vb_sd->flags |= VBSD_EC_EFS;
}
if (!CONFIG(VBOOT_PHYSICAL_REC_SWITCH))
vb_sd->flags |= VBSD_BOOT_REC_SWITCH_VIRTUAL;

To view, visit change 31897. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I8b3740c8301f9a193f4fce2c6492d9382730faa1
Gerrit-Change-Number: 31897
Gerrit-PatchSet: 1
Gerrit-Owner: Joel Kitching <kitching@google.com>
Gerrit-MessageType: newchange