VBOOT: Set virtual recovery switch based on EC Software Sync
The Virtual Recovery switch flag needs to be set in coreboot since it is passed through directly to VBOOT layer by depthcharge. Rather than add a new config option we can assume that devices with EC Software Sync also have a virtual recovery switch and set the flag appropriately. BUG=chrome-os-partner:25250 BRANCH=all TEST=build and boot on rambi, successfully enter developer mode Change-Id: Id067eacbc48bc25a86887bce8395fa3a9b85e9f2 Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/183672 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
95a79aff57
commit
328b5d6265
1 changed files with 3 additions and 1 deletions
|
|
@ -95,8 +95,10 @@ static void vboot_invoke_wrapper(struct vboot_handoff *vboot_handoff)
|
|||
*iflags |= VB_INIT_FLAG_WP_ENABLED;
|
||||
if (CONFIG_VIRTUAL_DEV_SWITCH)
|
||||
*iflags |= VB_INIT_FLAG_VIRTUAL_DEV_SWITCH;
|
||||
if (CONFIG_EC_SOFTWARE_SYNC)
|
||||
if (CONFIG_EC_SOFTWARE_SYNC) {
|
||||
*iflags |= VB_INIT_FLAG_EC_SOFTWARE_SYNC;
|
||||
*iflags |= VB_INIT_FLAG_VIRTUAL_REC_SWITCH;
|
||||
}
|
||||
|
||||
context.handoff = vboot_handoff;
|
||||
context.cparams = &cparams;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue