summaryrefslogtreecommitdiffstats
path: root/updater/updater.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-05-24 20:56:34 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-05-24 20:56:34 +0200
commit75dee9b06453bad7c5ec51733f6df15daa5ce7c6 (patch)
tree460029d2d9c8da53c2294097e08435e20eab99c5 /updater/updater.cpp
parentMerge "Print SHA1 of the patch if bsdiff fails with data error" am: 1f9808bd48 am: 8f68accc9d am: 1562f41348 (diff)
parentMerge "Retry the update if ApplyBSDiffPatch | ApplyImagePatch fails" am: 9c1a114789 am: 66f02b4e71 (diff)
downloadandroid_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.tar
android_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.tar.gz
android_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.tar.bz2
android_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.tar.lz
android_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.tar.xz
android_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.tar.zst
android_bootable_recovery-75dee9b06453bad7c5ec51733f6df15daa5ce7c6.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) {