]>
Commit | Line | Data |
---|---|---|
33eb0b9e SG |
1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | |
3 | * Copyright 2023 Google LLC | |
4 | * Written by Simon Glass <[email protected]> | |
5 | */ | |
6 | ||
7 | #include <common.h> | |
8 | #include <command.h> | |
9 | #include <cli.h> | |
10 | ||
11 | static int do_history(struct cmd_tbl *cmdtp, int flag, int argc, | |
12 | char *const argv[]) | |
13 | { | |
14 | cread_print_hist_list(); | |
15 | ||
16 | return 0; | |
17 | } | |
18 | ||
19 | U_BOOT_CMD( | |
20 | history, CONFIG_SYS_MAXARGS, 1, do_history, | |
21 | "print command history", | |
22 | "" | |
23 | ); |