aboutsummaryrefslogtreecommitdiffstats
path: root/ui.cpp
diff options
context:
space:
mode:
authorSen Jiang <senj@google.com>2016-12-09 16:20:49 -0800
committerSen Jiang <senj@google.com>2016-12-13 13:29:33 -0800
commitd530449e54bd327e9c26209ffa0490c6508afe6c (patch)
tree0b1d25af5cad4e0e4b1035b5dad3a86c06835e0a /ui.cpp
parentd6a5005fcb1f2ea6cfbdcb424497b626aeab7e16 (diff)
downloadandroid_bootable_recovery-d530449e54bd327e9c26209ffa0490c6508afe6c.tar.gz
android_bootable_recovery-d530449e54bd327e9c26209ffa0490c6508afe6c.tar.bz2
android_bootable_recovery-d530449e54bd327e9c26209ffa0490c6508afe6c.zip
Add a stub recovery UI.
This allows recovery to work on devices without screen. The stub recovery UI does nothing except print to stdout. Test: write 'recovery\n--wipe_data\n--reason=wipe_data_from_ota\n' to misc and boot to recovery on a device without screen. Bug: 33175036 Change-Id: Icde698aa2e2e29f4b3d0532dfd3c6a939ac2bc63
Diffstat (limited to 'ui.cpp')
-rw-r--r--ui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui.cpp b/ui.cpp
index 78b6e4f1..2d80c382 100644
--- a/ui.cpp
+++ b/ui.cpp
@@ -80,12 +80,13 @@ static void* InputThreadLoop(void*) {
return nullptr;
}
-void RecoveryUI::Init() {
+bool RecoveryUI::Init() {
ev_init(InputCallback, this);
ev_iterate_available_keys(std::bind(&RecoveryUI::OnKeyDetected, this, std::placeholders::_1));
pthread_create(&input_thread_, nullptr, InputThreadLoop, nullptr);
+ return true;
}
int RecoveryUI::OnInputEvent(int fd, uint32_t epevents) {