mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-25 02:35:22 +00:00
vboot2: Add previously tried slot and result to NV storage
This gives recovery mode information on two boots back instead of one, which may be handy for debugging. It also allows determining whether a failure of the current boot should try the other slot or go to recovery, using only information stored in NV storage. Added crossystem support for printing the fields, and unit tests. BUG=chrome-os-partner:32585 BRANCH=none TEST=make runtests; VBOOT2=1 make runtests Change-Id: Ia9f4186210d30217b902db7c513ae4ab8851f8f4 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/221230 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
This commit is contained in:
committed by
chrome-internal-fetch
parent
80872dbffc
commit
782300d093
@@ -316,6 +316,10 @@ int vb2_select_fw_slot(struct vb2_context *ctx)
|
||||
sd->last_fw_slot = vb2_nv_get(ctx, VB2_NV_FW_TRIED);
|
||||
sd->last_fw_result = vb2_nv_get(ctx, VB2_NV_FW_RESULT);
|
||||
|
||||
/* Save to the previous result fields in NV storage */
|
||||
vb2_nv_set(ctx, VB2_NV_FW_PREV_TRIED, sd->last_fw_slot);
|
||||
vb2_nv_set(ctx, VB2_NV_FW_PREV_RESULT, sd->last_fw_result);
|
||||
|
||||
/* Clear result, since we don't know what will happen this boot */
|
||||
vb2_nv_set(ctx, VB2_NV_FW_RESULT, VB2_FW_RESULT_UNKNOWN);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user