diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2017-04-04 05:22:07 +0200 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2017-04-04 05:22:07 +0200 |
commit | 5d9fb40ef745fbe64d2cd4a2129f61174ba42b45 (patch) | |
tree | 9273ab490ac79f099fd5cfd7d2d133258b3d6571 /update_verifier | |
parent | update_verifier: tweak priority of update_verifier for quick boot (diff) | |
parent | update_verifier: correct group in rc file (diff) | |
download | android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.tar android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.tar.gz android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.tar.bz2 android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.tar.lz android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.tar.xz android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.tar.zst android_bootable_recovery-5d9fb40ef745fbe64d2cd4a2129f61174ba42b45.zip |
Diffstat (limited to 'update_verifier')
-rw-r--r-- | update_verifier/update_verifier.cpp | 2 | ||||
-rw-r--r-- | update_verifier/update_verifier.rc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/update_verifier/update_verifier.cpp b/update_verifier/update_verifier.cpp index 59f136c90..350020f13 100644 --- a/update_verifier/update_verifier.cpp +++ b/update_verifier/update_verifier.cpp @@ -167,7 +167,7 @@ static bool verify_image(const std::string& care_map_name) { // in /data/ota_package. To allow the device to continue booting in this situation, // we should print a warning and skip the block verification. if (care_map_fd.get() == -1) { - LOG(WARNING) << "Warning: care map " << care_map_name << " not found."; + PLOG(WARNING) << "Failed to open " << care_map_name; return true; } // Care map file has four lines (two lines if vendor partition is not present): diff --git a/update_verifier/update_verifier.rc b/update_verifier/update_verifier.rc index 8b60c3ffd..808f2c055 100644 --- a/update_verifier/update_verifier.rc +++ b/update_verifier/update_verifier.rc @@ -1,11 +1,11 @@ service update_verifier_nonencrypted /system/bin/update_verifier nonencrypted user root - class cache + group cache priority -20 ioprio rt 0 service update_verifier /system/bin/update_verifier ${vold.decrypt} user root - class cache + group cache priority -20 ioprio rt 0 |