upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
875 B
34 lines
875 B
/*
|
|
* Copyright 2000-2009
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <command.h>
|
|
|
|
static int do_help(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
{
|
|
cmd_tbl_t *start = ll_entry_start(cmd_tbl_t, cmd);
|
|
const int len = ll_entry_count(cmd_tbl_t, cmd);
|
|
return _do_help(start, len, cmdtp, flag, argc, argv);
|
|
}
|
|
|
|
U_BOOT_CMD(
|
|
help, CONFIG_SYS_MAXARGS, 1, do_help,
|
|
"print command description/usage",
|
|
"\n"
|
|
" - print brief description of all commands\n"
|
|
"help command ...\n"
|
|
" - print detailed usage of 'command'"
|
|
);
|
|
|
|
/* This does not use the U_BOOT_CMD macro as ? can't be used in symbol names */
|
|
ll_entry_declare(cmd_tbl_t, question_mark, cmd) = {
|
|
"?", CONFIG_SYS_MAXARGS, 1, do_help,
|
|
"alias for 'help'",
|
|
#ifdef CONFIG_SYS_LONGHELP
|
|
""
|
|
#endif /* CONFIG_SYS_LONGHELP */
|
|
};
|
|
|