]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cli: always show cursor
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 29 Mar 2024 16:09:22 +0000 (17:09 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 12 Apr 2024 14:53:31 +0000 (08:53 -0600)
We may enter the command line interface in a state where on the remote
console the cursor is not shown. Send an escape sequence to enable it.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
common/cli.c

index a34938294ecadfcdc6b289a5a55dc691a0d6e359..1c33daf1149a85792f0cd6ceaf35de65140c0112 100644 (file)
@@ -11,6 +11,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 +337,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");
 }