diff options
author | Gaelle Nassiet <gaellex.nassiet@intel.com> | 2015-05-27 10:39:29 +0200 |
---|---|---|
committer | Gaelle Nassiet <gaellex.nassiet@intel.com> | 2015-05-27 15:03:06 +0200 |
commit | 074c1c2312746aba29e1ffdf133685c8213c7378 (patch) | |
tree | f4f390f7d6b8421e32863e3b2e64461650c628dc | |
parent | Merge "Stop using libstdc++." (diff) | |
download | android_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.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |