am f8f88321: Merge "Turn on text display for debuggable builds"

* commit 'f8f8832179003ad0a4e9359ef16e2f49d9f38345':
  Turn on text display for debuggable builds
diff --git a/recovery.cpp b/recovery.cpp
index 4dd8279..65172df 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1086,6 +1086,13 @@
     } 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)) {