summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2015-05-27 15:35:46 +0200
committerNick Kralevich <nnk@google.com>2015-05-27 15:35:46 +0200
commit4e92ba400930857fdeb2f5625949e6d8f55c87a9 (patch)
treed5f4c109941ecb866ddabb30883aa4df08039942
parentrecovery: change the way of rebooting when using power key combo (diff)
downloadandroid_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.tar
android_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.tar.gz
android_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.tar.bz2
android_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.tar.lz
android_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.tar.xz
android_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.tar.zst
android_bootable_recovery-4e92ba400930857fdeb2f5625949e6d8f55c87a9.zip
-rw-r--r--ui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui.cpp b/ui.cpp
index 2b1a6af05..1a0b079cc 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -174,8 +174,7 @@ void RecoveryUI::ProcessKey(int key_code, int updown) {
case RecoveryUI::REBOOT:
if (reboot_enabled) {
- property_set(ANDROID_RB_PROPERTY, "reboot,");
- while(1) { pause(); }
+ android_reboot(ANDROID_RB_RESTART, 0, 0);
}
break;