Merge "bootstat: Remove long key press check" into main

This commit is contained in:
Treehugger Robot 2024-02-07 18:23:30 +00:00 committed by Gerrit Code Review
commit 0c78cf96a1

View file

@ -1079,12 +1079,7 @@ std::string BootReasonStrToReason(const std::string& boot_reason) {
}
// Check for kernel panics, allowed to override reboot command.
if (!addKernelPanicSubReason(console, ret) &&
// check for long-press power down
((console.rfind("Power held for ") != std::string::npos) ||
(console.rfind("charger: [") != std::string::npos))) {
ret = "cold";
}
(void)addKernelPanicSubReason(console, ret);
}
// TODO: use the HAL to get battery level (http://b/77725702).