vboot: set software write protect flag
TEST=built for samus and veyron_jerry Change-Id: I7173f46d2ed2e323bff227a484c32c4bb6f6c828 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: http://review.coreboot.org/11028 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
df5446196c
commit
5d8ef4c661
|
@ -38,8 +38,6 @@
|
|||
|
||||
/**
|
||||
* Sets vboot_handoff based on the information in vb2_shared_data
|
||||
*
|
||||
* TODO: Add VBSD_BOOT_FIRMWARE_SW_WP_ENABLED logic
|
||||
*/
|
||||
static void fill_vboot_handoff(struct vboot_handoff *vboot_handoff,
|
||||
struct vb2_shared_data *vb2_sd)
|
||||
|
@ -63,6 +61,8 @@ static void fill_vboot_handoff(struct vboot_handoff *vboot_handoff,
|
|||
|
||||
if (get_write_protect_state())
|
||||
vb_sd->flags |= VBSD_BOOT_FIRMWARE_WP_ENABLED;
|
||||
if (vboot_get_sw_write_protect())
|
||||
vb_sd->flags |= VBSD_BOOT_FIRMWARE_SW_WP_ENABLED;
|
||||
|
||||
if (vb2_sd->recovery_reason) {
|
||||
vb_sd->firmware_index = 0xFF;
|
||||
|
|
Loading…
Reference in New Issue