summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-05-04 19:24:59 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-05-04 19:24:59 +0200
commite9ce252cf0f7b996a2e1977d30928b0812e371ba (patch)
treecfde9b5ebc9da956e956e417caecc444c2512a8c
parentam 4cf34d5d: Fix mips64 minadbd_test build. (diff)
parentam f8f88321: Merge "Turn on text display for debuggable builds" (diff)
downloadandroid_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.tar
android_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.tar.gz
android_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.tar.bz2
android_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.tar.lz
android_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.tar.xz
android_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.tar.zst
android_bootable_recovery-e9ce252cf0f7b996a2e1977d30928b0812e371ba.zip
-rw-r--r--recovery.cpp7
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)) {