]> Git Repo - J-u-boot.git/blame - cmd/help.c
Merge branch 'next'
[J-u-boot.git] / cmd / help.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
6b8f5ad1
PT
2/*
3 * Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
6b8f5ad1
PT
5 */
6
6b8f5ad1
PT
7#include <command.h>
8
09140113
SG
9static int do_help(struct cmd_tbl *cmdtp, int flag, int argc,
10 char *const argv[])
6b8f5ad1 11{
f8bb6964 12#ifdef CONFIG_CMDLINE
09140113
SG
13 struct cmd_tbl *start = ll_entry_start(struct cmd_tbl, cmd);
14 const int len = ll_entry_count(struct cmd_tbl, cmd);
6c7c946c 15 return _do_help(start, len, cmdtp, flag, argc, argv);
f8bb6964
SG
16#else
17 return 0;
18#endif
6b8f5ad1
PT
19}
20
21U_BOOT_CMD(
22 help, CONFIG_SYS_MAXARGS, 1, do_help,
4e1ca93b
PT
23 "print command description/usage",
24 "\n"
25 " - print brief description of all commands\n"
26 "help command ...\n"
27 " - print detailed usage of 'command'"
6b8f5ad1
PT
28);
29
81b11588 30#ifdef CONFIG_CMDLINE
3616218b
TR
31/*
32 * This does not use the U_BOOT_CMD macro as ? can't be used in symbol names
33 * nor can we rely on the CONFIG_SYS_LONGHELP helper macro
34 */
09140113 35ll_entry_declare(struct cmd_tbl, question_mark, cmd) = {
80a48dd4 36 "?", CONFIG_SYS_MAXARGS, cmd_always_repeatable, do_help,
6b8f5ad1 37 "alias for 'help'",
4e1ca93b 38#ifdef CONFIG_SYS_LONGHELP
6b8f5ad1 39 ""
6b8f5ad1 40#endif /* CONFIG_SYS_LONGHELP */
4e1ca93b 41};
81b11588 42#endif
This page took 0.476052 seconds and 4 git commands to generate.