Skip to content

Commit

Permalink
Merge "update_verifier: correct group in rc file" into oc-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TreeHugger Robot authored and Android (Google) Code Review committed Apr 4, 2017
2 parents 98beba3 + 031f407 commit 5d9fb40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion update_verifier/update_verifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions update_verifier/update_verifier.rc
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5d9fb40

Please sign in to comment.