summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui.cpp b/ui.cpp
index 1a0b079cc..2b1a6af05 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -174,7 +174,8 @@ void RecoveryUI::ProcessKey(int key_code, int updown) {
case RecoveryUI::REBOOT:
if (reboot_enabled) {
- android_reboot(ANDROID_RB_RESTART, 0, 0);
+ property_set(ANDROID_RB_PROPERTY, "reboot,");
+ while(1) { pause(); }
}
break;