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 */
62 #include <cmd_jffs2.h>
65 #include <cmd_bsp.h> /* board special functions */
67 #include <cmd_bedbug.h>
72 #include <cmd_vfd.h> /* load a bitmap to the VFDs on TRAB */
76 #include <cmd_portio.h>
78 #ifdef CONFIG_AMIGAONEG3SE
80 #include <cmd_boota.h>
86 #define CMD_TBL_HELP MK_CMD_TBL_ENTRY( \
87 "help", 1, CFG_MAXARGS, 1, do_help, \
88 "help - print online help\n", \
90 " - show help information (for 'command')\n" \
91 "'help' prints online help for the monitor commands.\n\n" \
92 "Without arguments, it prints a short usage message for all commands.\n\n" \
93 "To get detailed help information for specific commands you can type\n" \
94 "'help' with one or more command names as arguments.\n" \
97 #define CMD_TBL_QUES MK_CMD_TBL_ENTRY( \
98 "?", 1, CFG_MAXARGS, 1, do_help, \
99 "? - alias for 'help'\n", \
103 #define CMD_TBL_VERS MK_CMD_TBL_ENTRY( \
104 "version", 4, 1, 1, do_version, \
105 "version - print monitor version\n", \
109 #define CMD_TBL_ECHO MK_CMD_TBL_ENTRY( \
110 "echo", 4, CFG_MAXARGS, 1, do_echo, \
111 "echo - echo args to console\n", \
113 " - echo args to console; \\c suppresses newline\n" \
117 do_version (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
119 extern char version_string[];
120 printf ("\n%s\n", version_string);
125 do_echo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
129 for (i = 1; i < argc; i++) {
130 char *p = argv[i], c;
134 while ((c = *p++) != '\0')
135 if (c == '\\' && *p == 'c') {
149 * Use puts() instead of printf() to avoid printf buffer overflow
150 * for long help messages
153 do_help (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
158 if (argc == 1) { /* print short help (usage) */
160 for (cmdtp=&cmd_tbl[0]; cmdtp->name; cmdtp++) {
161 /* allow user abort */
165 if (cmdtp->usage == NULL)
174 * command help (long version)
176 for (i=1; i<argc; ++i) {
177 if ((cmdtp = find_cmd(argv[i])) != NULL) {
179 /* found - print (long) help info */
185 puts ("- No help available.\n");
189 #else /* no long help available */
192 #endif /* CFG_LONGHELP */
195 printf ("Unknown command '%s' - try 'help'"
196 " without arguments for list of all"
197 " known commands\n\n",
206 /***************************************************************************
207 * find command table entry for a command
209 cmd_tbl_t *find_cmd(const char *cmd)
213 /* Search command table - Use linear search - it's a small table */
214 for (cmdtp = &cmd_tbl[0]; cmdtp->name; cmdtp++) {
215 if (strncmp (cmd, cmdtp->name, cmdtp->lmin) == 0)
218 return NULL; /* not found */
222 * The commands in this table are sorted alphabetically by the
223 * command name and in descending order by the command name string
224 * length. This is to prevent conflicts in command name parsing.
225 * Please ensure that new commands are added according to that rule.
226 * Please use $(TOPDIR)/doc/README.commands as a reference AND make
227 * sure it gets updated.
230 cmd_tbl_t cmd_tbl[] = {
237 #ifdef CONFIG_AMIGAONEG3SE
307 #ifdef CONFIG_AMIGAONEG3SE
340 CMD_TBL_MISC /* sleep */
352 CMD_TBL_QUES /* keep this ("help") the last entry */
353 /* the following entry terminates this table */
354 MK_CMD_TBL_ENTRY( NULL, 0, 0, 0, NULL, NULL, NULL )