summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGaelle Nassiet <gaellex.nassiet@intel.com>2015-05-27 10:39:29 +0200
committerGaelle Nassiet <gaellex.nassiet@intel.com>2015-05-27 15:03:06 +0200
commit074c1c2312746aba29e1ffdf133685c8213c7378 (patch)
treef4f390f7d6b8421e32863e3b2e64461650c628dc
parentMerge "Stop using libstdc++." (diff)
downloadandroid_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.tar
android_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.tar.gz
android_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.tar.bz2
android_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.tar.lz
android_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.tar.xz
android_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.tar.zst
android_bootable_recovery-074c1c2312746aba29e1ffdf133685c8213c7378.zip
-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;