aboutsummaryrefslogtreecommitdiff
path: root/cmd/history.c
diff options
context:
space:
mode:
authorSimon Glass2023-10-01 19:13:06 -0600
committerTom Rini2023-10-11 15:43:54 -0400
commit33eb0b9eef3360396aa0f650f8e1e01baf6dc181 (patch)
treec92ca08093001fca4f2ec92257b1b3f2850e09b4 /cmd/history.c
parent0f97e944b2bb08b7e13210fc6bea75817aee3237 (diff)
cli: Add a command to show cmdline history
There is a function for this but it is never used. Showing the history is a useful feature, so add a new 'history' command. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/history.c')
-rw-r--r--cmd/history.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/cmd/history.c b/cmd/history.c
new file mode 100644
index 00000000000..b6bf4670b1c
--- /dev/null
+++ b/cmd/history.c
@@ -0,0 +1,23 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright 2023 Google LLC
+ * Written by Simon Glass <sjg@chromium.org>
+ */
+
+#include <common.h>
+#include <command.h>
+#include <cli.h>
+
+static int do_history(struct cmd_tbl *cmdtp, int flag, int argc,
+ char *const argv[])
+{
+ cread_print_hist_list();
+
+ return 0;
+}
+
+U_BOOT_CMD(
+ history, CONFIG_SYS_MAXARGS, 1, do_history,
+ "print command history",
+ ""
+);