summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-03-24 22:13:56 +0100
committerTianjie Xu <xunchang@google.com>2017-03-26 07:20:22 +0200
commitd08893c0535f9beb51df7b05694a840324e51874 (patch)
tree0e4785ef3cfb45d8a8943f169cde84922574568c
parentMerge "Don't fail ReadArgs if length to parse is 0" am: f4c949a41e (diff)
downloadandroid_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.tar
android_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.tar.gz
android_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.tar.bz2
android_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.tar.lz
android_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.tar.xz
android_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.tar.zst
android_bootable_recovery-d08893c0535f9beb51df7b05694a840324e51874.zip
-rw-r--r--install.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/install.cpp b/install.cpp
index a256d9b13..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_")) {
- LOG(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.