3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * Command Processor Table
30 #include <cmd_cache.h>
33 #include <cmd_flash.h>
34 #include <cmd_bootm.h>
36 #include <cmd_nvedit.h>
41 #include <cmd_console.h>
42 #include <cmd_reginfo.h>
43 #include <cmd_pcmcia.h>
44 #include <cmd_autoscript.h>
47 #include <cmd_eeprom.h>
50 #include <cmd_immap.h>
54 #include <cmd_fdc.h> /* Floppy support */
55 #include <cmd_usb.h> /* USB support */
59 #include <cmd_dcr.h> /* 4xx DCR register access */
61 #include <cmd_jffs2.h>
64 #include <cmd_bsp.h> /* board special functions */
66 #include <cmd_bedbug.h>
71 #include <cmd_vfd.h> /* load a bitmap to the VFDs on TRAB */
77 #define CMD_TBL_HELP MK_CMD_TBL_ENTRY( \
78 "help", 1, CFG_MAXARGS, 1, do_help, \
79 "help - print online help\n", \
81 " - show help information (for 'command')\n" \
82 "'help' prints online help for the monitor commands.\n\n" \
83 "Without arguments, it prints a short usage message for all commands.\n\n" \
84 "To get detailed help information for specific commands you can type\n" \
85 "'help' with one or more command names as arguments.\n" \
88 #define CMD_TBL_QUES MK_CMD_TBL_ENTRY( \
89 "?", 1, CFG_MAXARGS, 1, do_help, \
90 "? - alias for 'help'\n", \
94 #define CMD_TBL_VERS MK_CMD_TBL_ENTRY( \
95 "version", 4, 1, 1, do_version, \
96 "version - print monitor version\n", \
100 #define CMD_TBL_ECHO MK_CMD_TBL_ENTRY( \
101 "echo", 4, CFG_MAXARGS, 1, do_echo, \
102 "echo - echo args to console\n", \
104 " - echo args to console; \\c suppresses newline\n" \
108 do_version (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
110 extern char version_string[];
111 printf ("\n%s\n", version_string);
116 do_echo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
120 for (i = 1; i < argc; i++) {
121 char *p = argv[i], c;
125 while ((c = *p++) != '\0')
126 if (c == '\\' && *p == 'c') {
140 * Use puts() instead of printf() to avoid printf buffer overflow
141 * for long help messages
144 do_help (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
149 if (argc == 1) { /* print short help (usage) */
151 for (cmdtp=&cmd_tbl[0]; cmdtp->name; cmdtp++) {
152 /* allow user abort */
156 if (cmdtp->usage == NULL)
165 * command help (long version)
167 for (i=1; i<argc; ++i) {
168 if ((cmdtp = find_cmd(argv[i])) != NULL) {
170 /* found - print (long) help info */
176 puts ("- No help available.\n");
180 #else /* no long help available */
183 #endif /* CFG_LONGHELP */
186 printf ("Unknown command '%s' - try 'help'"
187 " without arguments for list of all"
188 " known commands\n\n",
197 /***************************************************************************
198 * find command table entry for a command
200 cmd_tbl_t *find_cmd(const char *cmd)
204 /* Search command table - Use linear search - it's a small table */
205 for (cmdtp = &cmd_tbl[0]; cmdtp->name; cmdtp++) {
206 if (strncmp (cmd, cmdtp->name, cmdtp->lmin) == 0)
209 return NULL; /* not found */
213 * The commands in this table are sorted alphabetically by the
214 * command name and in descending order by the command name string
215 * length. This is to prevent conflicts in command name parsing.
216 * Please ensure that new commands are added according to that rule.
217 * Please use $(TOPDIR)/doc/README.commands as a reference AND make
218 * sure it gets updated.
221 cmd_tbl_t cmd_tbl[] = {
317 CMD_TBL_MISC /* sleep */
329 CMD_TBL_QUES /* keep this ("help") the last entry */
330 /* the following entry terminates this table */
331 MK_CMD_TBL_ENTRY( NULL, 0, 0, 0, NULL, NULL, NULL )