diff options
author | Tao Bao <tbao@google.com> | 2015-05-04 19:05:20 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-05-04 19:05:20 +0200 |
commit | f8f8832179003ad0a4e9359ef16e2f49d9f38345 (patch) | |
tree | cfde9b5ebc9da956e956e417caecc444c2512a8c | |
parent | Merge "Fix mips64 minadbd_test build." (diff) | |
parent | Turn on text display for debuggable builds (diff) | |
download | android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.tar android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.tar.gz android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.tar.bz2 android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.tar.lz android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.tar.xz android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.tar.zst android_bootable_recovery-f8f8832179003ad0a4e9359ef16e2f49d9f38345.zip |
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/recovery.cpp b/recovery.cpp index 4dd827919..65172dfcc 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -1086,6 +1086,13 @@ main(int argc, char **argv) { } else if (!just_exit) { status = INSTALL_NONE; // No command specified ui->SetBackground(RecoveryUI::NO_COMMAND); + + // http://b/17489952 + // If this is an eng or userdebug build, automatically turn on the + // text display if no command is specified. + if (is_ro_debuggable()) { + ui->ShowText(true); + } } if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) { |