summaryrefslogtreecommitdiff
path: root/common/system.c
diff options
context:
space:
mode:
authorAseda Aboagye <aaboagye@google.com>2017-02-14 19:31:25 -0800
committerchrome-bot <chrome-bot@chromium.org>2017-02-18 17:26:59 -0800
commit4ed404432904c3f8e6c9d64e8bb306daf3c687f5 (patch)
tree7b524aceeb143d5ed9a2bd120978c50cac8dd9db /common/system.c
parent2062c99cd2bfe1642433b2cae33c617e02c27cdd (diff)
downloadchrome-ec-4ed404432904c3f8e6c9d64e8bb306daf3c687f5.tar.gz
cr50: Decrement retry counter on manual reboots.
Currently, manually triggered reboots cause the retry counter to be incremented. However, if the system is responsive enough to process the reboot commands from either the console or TPM vendor command, we can assume that the image is "ok". This commit changes the Cr50 behaviour to decrement the retry counter when a reboot is issued on the console or the TPM vendor command is received. BUG=chrome-os-partner:62687 BRANCH=None TEST=Flash cr50. Flash an older image in the other slot. Enter the reboot command on the console over 10 times and verify that retry counter never exceeds RW_BOOT_MAX_RETRY_COUNT and older image is never executed. CQ-DEPEND=CL:444264 Change-Id: Ic35bdc63c4141834584a00a7ecceab2abe8dfc21 Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/443330 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
Diffstat (limited to 'common/system.c')
-rw-r--r--common/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.c b/common/system.c
index ddabe3aa3c..25acdbf544 100644
--- a/common/system.c
+++ b/common/system.c
@@ -1042,7 +1042,7 @@ DECLARE_CONSOLE_COMMAND(sysjump, command_sysjump,
static int command_reboot(int argc, char **argv)
{
- int flags = 0;
+ int flags = SYSTEM_RESET_MANUALLY_TRIGGERED;
int i;
for (i = 1; i < argc; i++) {