Anatolij Gustschin | e0455a4 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * (C) Copyright 2018 |
| 4 | * DENX Software Engineering, Anatolij Gustschin <agust@denx.de> |
| 5 | * |
| 6 | * cls - clear screen command |
| 7 | */ |
Anatolij Gustschin | e0455a4 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 8 | #include <command.h> |
Simon Glass | ffafbe3 | 2023-10-01 19:15:23 -0600 | [diff] [blame] | 9 | #include <console.h> |
Anatolij Gustschin | e0455a4 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 10 | #include <dm.h> |
Heinrich Schuchardt | ced5d41 | 2022-02-11 18:11:05 +0100 | [diff] [blame] | 11 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 12 | static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc, |
Anatolij Gustschin | e0455a4 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 13 | char *const argv[]) |
| 14 | { |
Simon Glass | ffafbe3 | 2023-10-01 19:15:23 -0600 | [diff] [blame] | 15 | if (console_clear()) |
| 16 | return CMD_RET_FAILURE; |
Simon Glass | 90679c6 | 2023-03-10 12:47:21 -0800 | [diff] [blame] | 17 | |
Anatolij Gustschin | e0455a4 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 18 | return CMD_RET_SUCCESS; |
| 19 | } |
| 20 | |
| 21 | U_BOOT_CMD(cls, 1, 1, do_video_clear, "clear screen", ""); |