summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-10-06 17:36:15 +0300
committerAnatolij Gustschin <agust@denx.de>2022-10-30 22:01:40 +0300
commit3f425f9ca75c8d1938579044fde37a6f7d5abe16 (patch)
treeb12b373cd4aaed20fce9175022e8486f3daec1af
parent57a847cd405e546711dbab1b70ea43fd46960f58 (diff)
downloadu-boot-3f425f9ca75c8d1938579044fde37a6f7d5abe16.tar.xz
video: Enable the cls command by default
This is enabled for LCD but not for VIDEO. Enable it since it is useful to be able to clear the screen and adds very little code. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--cmd/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 51dbbf8564..5419716011 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1939,7 +1939,7 @@ config CMD_CONITRACE
config CMD_CLS
bool "Enable clear screen command 'cls'"
- default y if LCD
+ default y if LCD || DM_VIDEO
help
Enable the 'cls' command which clears the screen contents
on video frame buffer.