summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2013-09-03 23:46:26 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2013-09-03 23:46:26 +0200
commitf187a5438d5a0651c344038f2203469e193704f9 (patch)
treeed13cb166b1e774600469a8bd5e8b8b89dfee2f4
parentam 77ea71d6: recovery: fix rebooting (diff)
parentrecovery: fix use of init reboot method (diff)
downloadandroid_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar
android_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.gz
android_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.bz2
android_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.lz
android_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.xz
android_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.zst
android_bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.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;
}