diff options
author | Doug Zongker <dougz@google.com> | 2013-09-03 14:46:26 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-09-03 14:46:26 -0700 |
commit | f187a5438d5a0651c344038f2203469e193704f9 (patch) | |
tree | ed13cb166b1e774600469a8bd5e8b8b89dfee2f4 | |
parent | 366f78a9df45d6648746de8454655224b22c31fd (diff) | |
parent | 3b5a987cd7fd76c038e9875b430028216d21ace3 (diff) | |
download | bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.zip bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.gz bootable_recovery-f187a5438d5a0651c344038f2203469e193704f9.tar.bz2 |
am 3b5a987c: recovery: fix use of init reboot method
* commit '3b5a987cd7fd76c038e9875b430028216d21ace3':
recovery: fix use of init reboot method
-rw-r--r-- | recovery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index b783393..d803cad 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; } |