summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2013-08-30 23:05:20 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2013-08-30 23:05:20 +0200
commit366f78a9df45d6648746de8454655224b22c31fd (patch)
tree72ccf7c37e353c979a85b1365e9beb4346e59479 /recovery.cpp
parentam 5c4e1dac: Merge "Update libpng API usage" (diff)
parentrecovery: fix rebooting (diff)
downloadandroid_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.tar
android_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.tar.gz
android_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.tar.bz2
android_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.tar.lz
android_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.tar.xz
android_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.tar.zst
android_bootable_recovery-366f78a9df45d6648746de8454655224b22c31fd.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 654a66526..b78339314 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");
- android_reboot(ANDROID_RB_RESTART, 0, 0);
+ property_set(ANDROID_RB_PROPERTY, "");
return EXIT_SUCCESS;
}