summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2013-09-03 23:49:43 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2013-09-03 23:49:43 +0200
commite428f624653bd0b6f66e8d4c95f54f6e90fc6218 (patch)
treeed13cb166b1e774600469a8bd5e8b8b89dfee2f4
parentam 366f78a9: am 77ea71d6: recovery: fix rebooting (diff)
parentam 3b5a987c: recovery: fix use of init reboot method (diff)
downloadandroid_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.tar
android_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.tar.gz
android_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.tar.bz2
android_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.tar.lz
android_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.tar.xz
android_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.tar.zst
android_bootable_recovery-e428f624653bd0b6f66e8d4c95f54f6e90fc6218.zip
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index b78339314..d803cadf1 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1062,6 +1062,6 @@ main(int argc, char **argv) {
// Otherwise, get ready to boot the main system...
finish_recovery(send_intent);
ui->Print("Rebooting...\n");
- property_set(ANDROID_RB_PROPERTY, "");
+ property_set(ANDROID_RB_PROPERTY, "reboot,");
return EXIT_SUCCESS;
}