summaryrefslogtreecommitdiffstats
path: root/updater/updater.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-05-24 22:01:53 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-05-24 22:01:53 +0200
commitccf8ec15f002b7fd7e659222449e09b4bab46597 (patch)
tree460029d2d9c8da53c2294097e08435e20eab99c5 /updater/updater.cpp
parentrelease-request-91ef8626-1af7-4595-b2bd-2d85ee97e99f-for-git_oc-mr1-release-4029936 snap-temp-L27200000066301195 (diff)
parentMerge "Retry the update if ApplyBSDiffPatch | ApplyImagePatch fails" am: 9c1a114789 am: 66f02b4e71 am: aef046255a (diff)
downloadandroid_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.gz
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.bz2
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.lz
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.xz
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.zst
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.zip
Diffstat (limited to 'updater/updater.cpp')
-rw-r--r--updater/updater.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp
index 1be8b6040..f5ff6df91 100644
--- a/updater/updater.cpp
+++ b/updater/updater.cpp
@@ -202,6 +202,10 @@ int main(int argc, char** argv) {
// Cause code should provide additional information about the abort.
if (state.cause_code != kNoCause) {
fprintf(cmd_pipe, "log cause: %d\n", state.cause_code);
+ if (state.cause_code == kPatchApplicationFailure) {
+ LOG(INFO) << "Patch application failed, retry update.";
+ fprintf(cmd_pipe, "retry_update\n");
+ }
}
if (updater_info.package_zip) {