summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-03-19 00:39:28 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-03-19 00:39:28 +0100
commitc5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8 (patch)
tree28b626d8a65064cd0f427a340b446485c70b6d7f
parentMerge "Implement FilePackage class" am: 698dc08561 am: cd73207f50 (diff)
parentMerge "Skip calling verify_package_compatibility when resuming." am: 98beb6414b (diff)
downloadandroid_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.tar
android_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.tar.gz
android_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.tar.bz2
android_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.tar.lz
android_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.tar.xz
android_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.tar.zst
android_bootable_recovery-c5f06d7dc821dc5d98a3742fe1249fcbe0f0c1b8.zip
-rw-r--r--install.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.cpp b/install.cpp
index 05f9af7a4..dbc815d47 100644
--- a/install.cpp
+++ b/install.cpp
@@ -606,8 +606,8 @@ static int really_install_package(const std::string& path, bool* wipe_cache, boo
return INSTALL_CORRUPT;
}
- // Additionally verify the compatibility of the package.
- if (!verify_package_compatibility(zip)) {
+ // Additionally verify the compatibility of the package if it's a fresh install.
+ if (retry_count == 0 && !verify_package_compatibility(zip)) {
log_buffer->push_back(android::base::StringPrintf("error: %d", kPackageCompatibilityFailure));
return INSTALL_CORRUPT;
}