diff options
author | Dmitri Plotnikov <dplotnikov@google.com> | 2017-04-18 08:28:26 -0700 |
---|---|---|
committer | Dmitri Plotnikov <dplotnikov@google.com> | 2017-04-19 14:43:08 -0700 |
commit | 8706a98aa635236a95795f0a0c122bb3e591a50d (patch) | |
tree | 133e90784e5115282067ed38c1e5919a3a033b7c /ui.cpp | |
parent | ba3f078f6f00ce4dd4070741fc4e05b58e1d918b (diff) | |
download | android_bootable_recovery-8706a98aa635236a95795f0a0c122bb3e591a50d.tar.gz android_bootable_recovery-8706a98aa635236a95795f0a0c122bb3e591a50d.tar.bz2 android_bootable_recovery-8706a98aa635236a95795f0a0c122bb3e591a50d.zip |
Adding support for quiescent reboot to recovery
Bug: 37401320
Test: build and push OTA and hit adb reboot recovery,quiescent. The screen should remain off throughout the upgrade process.
Change-Id: Ibed3795c09e26c4fa73684d40b94e40c78394d3f
Diffstat (limited to 'ui.cpp')
-rw-r--r-- | ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -227,7 +227,7 @@ void RecoveryUI::ProcessKey(int key_code, int updown) { case RecoveryUI::REBOOT: if (reboot_enabled) { - android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,"); + reboot("reboot,"); while (true) { pause(); } } break; |