]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_help.c
common/board_f: implement type casting for gd structure
[people/ms/u-boot.git] / common / cmd_help.c
CommitLineData
6b8f5ad1
PT
1/*
2 * Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
6b8f5ad1
PT
6 */
7
8#include <common.h>
9#include <command.h>
10
088f1b19 11static int do_help(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
6b8f5ad1 12{
6c7c946c
MV
13 cmd_tbl_t *start = ll_entry_start(cmd_tbl_t, cmd);
14 const int len = ll_entry_count(cmd_tbl_t, cmd);
15 return _do_help(start, len, cmdtp, flag, argc, argv);
6b8f5ad1
PT
16}
17
18U_BOOT_CMD(
19 help, CONFIG_SYS_MAXARGS, 1, do_help,
4e1ca93b
PT
20 "print command description/usage",
21 "\n"
22 " - print brief description of all commands\n"
23 "help command ...\n"
24 " - print detailed usage of 'command'"
6b8f5ad1
PT
25);
26
27/* This does not use the U_BOOT_CMD macro as ? can't be used in symbol names */
ef123c52 28ll_entry_declare(cmd_tbl_t, question_mark, cmd) = {
6b8f5ad1
PT
29 "?", CONFIG_SYS_MAXARGS, 1, do_help,
30 "alias for 'help'",
4e1ca93b 31#ifdef CONFIG_SYS_LONGHELP
6b8f5ad1 32 ""
6b8f5ad1 33#endif /* CONFIG_SYS_LONGHELP */
4e1ca93b 34};