diff options
author | Tianjie Xu <xunchang@google.com> | 2016-06-24 02:29:10 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-06-24 02:29:10 +0200 |
commit | 3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3 (patch) | |
tree | 723504554f726de06cf3c749b197ad94be445672 | |
parent | resolve merge conflicts of ed4c49c to nyc-mr1-dev-plus-aosp (diff) | |
parent | Increase EIO retry count (diff) | |
download | android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.tar android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.tar.gz android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.tar.bz2 android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.tar.lz android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.tar.xz android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.tar.zst android_bootable_recovery-3afc54c007ad7cb2e8d6d9ca81544baa3ac63cb3.zip |
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index 1dfcd113e..e9ded7178 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -104,7 +104,8 @@ static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install"; static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg"; static const char *LAST_LOG_FILE = "/cache/recovery/last_log"; static const int KEEP_LOG_COUNT = 10; -static const int EIO_RETRY_COUNT = 2; +// We will try to apply the update package 5 times at most in case of an I/O error. +static const int EIO_RETRY_COUNT = 4; static const int BATTERY_READ_TIMEOUT_IN_SEC = 10; // GmsCore enters recovery mode to install package when having enough battery // percentage. Normally, the threshold is 40% without charger and 20% with charger. |