diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-10-07 20:36:12 +0200 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-10-10 16:34:25 +0200 |
commit | c6db606dbb5ecb4480a9b83bab1a61800f556493 (patch) | |
tree | ad5ea91e3a15f0583da9fb1ff698e47b0f00f5ba /cmd | |
parent | 73e741b8ee46eba4e02a3bcc758dbd70540ed3c1 (diff) | |
download | u-boot-c6db606dbb5ecb4480a9b83bab1a61800f556493.zip u-boot-c6db606dbb5ecb4480a9b83bab1a61800f556493.tar.gz u-boot-c6db606dbb5ecb4480a9b83bab1a61800f556493.tar.bz2 |
cmd: CMD_CLS should not depend on video
The cls command works fine on the serial console. There is no reason to
let it depend on the availability of video.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index bfa12ce..6f00bd9 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1914,7 +1914,6 @@ config CMD_CONITRACE config CMD_CLS bool "Enable clear screen command 'cls'" - depends on DM_VIDEO || LCD || VIDEO default y if LCD help Enable the 'cls' command which clears the screen contents |