diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-27 07:15:38 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-27 07:15:40 +0200 |
commit | df0619edea26c8f5e111048f0071ca24a07d2de6 (patch) | |
tree | 77d754c15042102b12651ccf34c2eec3d2742250 | |
parent | Merge "applypatch: Drop the support for patching non-EMMC targets." (diff) | |
parent | Skip logging the warning for uncrypt_status for devices w/o /cache (diff) | |
download | android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.tar android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.tar.gz android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.tar.bz2 android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.tar.lz android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.tar.xz android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.tar.zst android_bootable_recovery-df0619edea26c8f5e111048f0071ca24a07d2de6.zip |
-rw-r--r-- | install.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/install.cpp b/install.cpp index db8fb97db..7cef44a37 100644 --- a/install.cpp +++ b/install.cpp @@ -546,17 +546,21 @@ install_package(const char* path, bool* wipe_cache, const char* install_file, std::chrono::duration<double> duration = std::chrono::system_clock::now() - start; int time_total = static_cast<int>(duration.count()); - if (ensure_path_mounted(UNCRYPT_STATUS) != 0) { + bool has_cache = volume_for_path("/cache") != nullptr; + // Skip logging the uncrypt_status on devices without /cache. + if (has_cache) { + if (ensure_path_mounted(UNCRYPT_STATUS) != 0) { LOG(WARNING) << "Can't mount " << UNCRYPT_STATUS; - } else { + } else { std::string uncrypt_status; if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) { - PLOG(WARNING) << "failed to read uncrypt status"; + PLOG(WARNING) << "failed to read uncrypt status"; } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_")) { - PLOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status; + LOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status; } else { - log_buffer.push_back(android::base::Trim(uncrypt_status)); + log_buffer.push_back(android::base::Trim(uncrypt_status)); } + } } // The first two lines need to be the package name and install result. |