summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/console.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/console.c b/common/console.c
index 3c23161ee6..7cb89aed97 100644
--- a/common/console.c
+++ b/common/console.c
@@ -264,7 +264,11 @@ command_has_error:
static void console_init(void)
{
*input_buf = '\0';
+#ifdef CONFIG_EXPERIMENTAL_CONSOLE
+ ccprintf("Enhanced Console is enabled (v1.0.0); type HELP for help.\n");
+#else
ccprintf("Console is enabled; type HELP for help.\n");
+#endif /* defined(CONFIG_EXPERIMENTAL_CONSOLE) */
ccputs(PROMPT);
}