diff options
Diffstat (limited to 'common/cli.c')
-rw-r--r-- | common/cli.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/cli.c b/common/cli.c index a34938294ec..4694a35cd0e 100644 --- a/common/cli.c +++ b/common/cli.c @@ -10,7 +10,7 @@ #define pr_fmt(fmt) "cli: %s: " fmt, __func__ -#include <common.h> +#include <ansi.h> #include <bootstage.h> #include <cli.h> #include <cli_hush.h> @@ -336,4 +336,7 @@ void cli_init(void) #if defined(CONFIG_HUSH_INIT_VAR) hush_init_var(); #endif + + if (CONFIG_IS_ENABLED(VIDEO_ANSI)) + printf(ANSI_CURSOR_SHOW "\n"); } |