summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-06-24 01:52:17 +0200
committerTianjie Xu <xunchang@google.com>2016-06-24 02:15:25 +0200
commitc37c5c3410b1cae1d62e344b9b5db6d191db6235 (patch)
tree590b35ad3b195c22e9b630733c9e821e2b437e37
parentCheck the results from applypatch (diff)
downloadandroid_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.tar
android_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.tar.gz
android_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.tar.bz2
android_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.tar.lz
android_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.tar.xz
android_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.tar.zst
android_bootable_recovery-c37c5c3410b1cae1d62e344b9b5db6d191db6235.zip
-rw-r--r--recovery.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 6b6643fab..10f84140d 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -96,7 +96,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.