diff options
author | Doug Zongker <dougz@google.com> | 2013-09-03 23:29:54 +0200 |
---|---|---|
committer | The Android Automerger <android-build@google.com> | 2013-09-04 00:17:18 +0200 |
commit | 15ae0e7867507f3bde3cd7061fbad933d1fe059c (patch) | |
tree | 63100d569551c8fa1490f3f73be90d6f1dc69023 | |
parent | recovery: fix rebooting (diff) | |
download | android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.tar android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.tar.gz android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.tar.bz2 android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.tar.lz android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.tar.xz android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.tar.zst android_bootable_recovery-15ae0e7867507f3bde3cd7061fbad933d1fe059c.zip |
-rw-r--r-- | recovery.cpp | 2 |
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; } |