Merge "Clear the warm_reset flag after boot is successful"
This commit is contained in:
commit
3fc3d75eb0
1 changed files with 4 additions and 0 deletions
|
@ -170,6 +170,10 @@ Status cp_commitChanges() {
|
|||
if (!cr.success)
|
||||
return error(EINVAL, "Error marking booted successfully: " + std::string(cr.errMsg));
|
||||
LOG(INFO) << "Marked slot as booted successfully.";
|
||||
// Clears the warm reset flag for next reboot.
|
||||
if (!SetProperty("ota.warm_reset", "0")) {
|
||||
LOG(WARNING) << "Failed to reset the warm reset flag";
|
||||
}
|
||||
}
|
||||
// Must take action for list of mounted checkpointed things here
|
||||
// To do this, we walk the list of mounted file systems.
|
||||
|
|
Loading…
Reference in a new issue