Merge "recovery: change the way of rebooting when using power key combo"

This commit is contained in:
Tao Bao
2015-05-27 19:28:20 +00:00
committed by Gerrit Code Review
+3 -1
View File
@@ -28,6 +28,7 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include <cutils/properties.h>
#include <cutils/android_reboot.h> #include <cutils/android_reboot.h>
#include "common.h" #include "common.h"
@@ -174,7 +175,8 @@ void RecoveryUI::ProcessKey(int key_code, int updown) {
case RecoveryUI::REBOOT: case RecoveryUI::REBOOT:
if (reboot_enabled) { if (reboot_enabled) {
android_reboot(ANDROID_RB_RESTART, 0, 0); property_set(ANDROID_RB_PROPERTY, "reboot,");
while(1) { pause(); }
} }
break; break;