blob: 27e46db36b82b2d282a6d019aa7043b7d400d567 [file] [log] [blame]
wdenka68d3ed2002-10-11 08:38:32 +00001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
7
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27/**************************************************************************
28 *
29 * Support for persistent environment data
30 *
31 * The "environment" is stored as a list of '\0' terminated
32 * "name=value" strings. The end of the list is marked by a double
33 * '\0'. New entries are always added at the end. Deleting an entry
34 * shifts the remaining entries to the front. Replacing an entry is a
35 * combination of deleting the old value and adding the new one.
36 *
37 * The environment is preceeded by a 32 bit CRC over the data part.
38 *
39 **************************************************************************
40 */
41
42#include <common.h>
43#include <command.h>
44#include <environment.h>
wdenk2a3cb022002-11-05 21:01:48 +000045#include <watchdog.h>
wdenk281e00a2004-08-01 22:48:16 +000046#include <serial.h>
wdenka68d3ed2002-10-11 08:38:32 +000047#include <linux/stddef.h>
48#include <asm/byteorder.h>
Jon Loeliger65c450b2007-06-11 19:01:54 -050049#if (CONFIG_COMMANDS & CFG_CMD_NET) || defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +000050#include <net.h>
51#endif
52
Wolfgang Denkd87080b2006-03-31 18:32:53 +020053DECLARE_GLOBAL_DATA_PTR;
54
wdenk5779d8d2003-12-06 23:55:10 +000055#if !defined(CFG_ENV_IS_IN_NVRAM) && \
56 !defined(CFG_ENV_IS_IN_EEPROM) && \
57 !defined(CFG_ENV_IS_IN_FLASH) && \
58 !defined(CFG_ENV_IS_IN_DATAFLASH) && \
wdenk13a56952004-06-09 14:58:14 +000059 !defined(CFG_ENV_IS_IN_NAND) && \
wdenk5779d8d2003-12-06 23:55:10 +000060 !defined(CFG_ENV_IS_NOWHERE)
61# error Define one of CFG_ENV_IS_IN_{NVRAM|EEPROM|FLASH|DATAFLASH|NOWHERE}
wdenka68d3ed2002-10-11 08:38:32 +000062#endif
63
64#define XMK_STR(x) #x
65#define MK_STR(x) XMK_STR(x)
66
67/************************************************************************
68************************************************************************/
69
70/* Function that returns a character from the environment */
71extern uchar (*env_get_char)(int);
72
73/* Function that returns a pointer to a value from the environment */
74/* (Only memory version supported / needed). */
75extern uchar *env_get_addr(int);
76
77/* Function that updates CRC of the enironment */
78extern void env_crc_update (void);
79
80/************************************************************************
81************************************************************************/
82
83static int envmatch (uchar *, int);
84
85/*
86 * Table with supported baudrates (defined in config_xyz.h)
87 */
88static const unsigned long baudrate_table[] = CFG_BAUDRATE_TABLE;
89#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
90
91
92/************************************************************************
93 * Command interface: print one or all environment variables
94 */
95
96int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
97{
98 int i, j, k, nxt;
99 int rcode = 0;
100
101 if (argc == 1) { /* Print all env variables */
102 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
103 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt)
104 ;
105 for (k=i; k<nxt; ++k)
106 putc(env_get_char(k));
107 putc ('\n');
108
109 if (ctrlc()) {
110 puts ("\n ** Abort\n");
111 return 1;
112 }
113 }
114
115 printf("\nEnvironment size: %d/%d bytes\n", i, ENV_SIZE);
116
117 return 0;
118 }
119
120 for (i=1; i<argc; ++i) { /* print single env variables */
121 char *name = argv[i];
122
123 k = -1;
124
125 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
126
127 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
128 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200129 k = envmatch((uchar *)name, j);
wdenka68d3ed2002-10-11 08:38:32 +0000130 if (k < 0) {
131 continue;
132 }
133 puts (name);
134 putc ('=');
135 while (k < nxt)
136 putc(env_get_char(k++));
137 putc ('\n');
138 break;
139 }
140 if (k < 0) {
141 printf ("## Error: \"%s\" not defined\n", name);
142 rcode ++;
143 }
144 }
145 return rcode;
146}
147
148/************************************************************************
149 * Set a new environment variable,
150 * or replace or delete an existing one.
151 *
152 * This function will ONLY work with a in-RAM copy of the environment
153 */
154
155int _do_setenv (int flag, int argc, char *argv[])
156{
wdenka68d3ed2002-10-11 08:38:32 +0000157 int i, len, oldval;
158 int console = -1;
159 uchar *env, *nxt = NULL;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200160 char *name;
wdenka68d3ed2002-10-11 08:38:32 +0000161 bd_t *bd = gd->bd;
162
163 uchar *env_data = env_get_addr(0);
164
165 if (!env_data) /* need copy in RAM */
166 return 1;
167
168 name = argv[1];
169
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200170 if (strchr(name, '=')) {
171 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
172 return 1;
173 }
174
wdenka68d3ed2002-10-11 08:38:32 +0000175 /*
176 * search if variable with this name already exists
177 */
178 oldval = -1;
179 for (env=env_data; *env; env=nxt+1) {
180 for (nxt=env; *nxt; ++nxt)
181 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200182 if ((oldval = envmatch((uchar *)name, env-env_data)) >= 0)
wdenka68d3ed2002-10-11 08:38:32 +0000183 break;
184 }
185
186 /*
187 * Delete any existing definition
188 */
189 if (oldval >= 0) {
190#ifndef CONFIG_ENV_OVERWRITE
191
192 /*
stroese05875972003-04-04 15:44:49 +0000193 * Ethernet Address and serial# can be set only once,
194 * ver is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000195 */
196 if ( (strcmp (name, "serial#") == 0) ||
197 ((strcmp (name, "ethaddr") == 0)
198#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200199 && (strcmp ((char *)env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
wdenka68d3ed2002-10-11 08:38:32 +0000200#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
201 ) ) {
202 printf ("Can't overwrite \"%s\"\n", name);
203 return 1;
204 }
205#endif
206
207 /* Check for console redirection */
208 if (strcmp(name,"stdin") == 0) {
209 console = stdin;
210 } else if (strcmp(name,"stdout") == 0) {
211 console = stdout;
212 } else if (strcmp(name,"stderr") == 0) {
213 console = stderr;
214 }
215
216 if (console != -1) {
217 if (argc < 3) { /* Cannot delete it! */
218 printf("Can't delete \"%s\"\n", name);
219 return 1;
220 }
221
222 /* Try assigning specified device */
223 if (console_assign (console, argv[2]) < 0)
224 return 1;
wdenk281e00a2004-08-01 22:48:16 +0000225
226#ifdef CONFIG_SERIAL_MULTI
227 if (serial_assign (argv[2]) < 0)
228 return 1;
229#endif
wdenka68d3ed2002-10-11 08:38:32 +0000230 }
231
232 /*
233 * Switch to new baudrate if new baudrate is supported
234 */
235 if (strcmp(argv[1],"baudrate") == 0) {
236 int baudrate = simple_strtoul(argv[2], NULL, 10);
237 int i;
238 for (i=0; i<N_BAUDRATES; ++i) {
239 if (baudrate == baudrate_table[i])
240 break;
241 }
242 if (i == N_BAUDRATES) {
243 printf ("## Baudrate %d bps not supported\n",
244 baudrate);
245 return 1;
246 }
247 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
248 baudrate);
249 udelay(50000);
250 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100251#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000252 gd->bd->bi_baudrate = baudrate;
253#endif
254
wdenka68d3ed2002-10-11 08:38:32 +0000255 serial_setbrg ();
256 udelay(50000);
257 for (;;) {
258 if (getc() == '\r')
259 break;
260 }
261 }
262
263 if (*++nxt == '\0') {
264 if (env > env_data) {
265 env--;
266 } else {
267 *env = '\0';
268 }
269 } else {
270 for (;;) {
271 *env = *nxt++;
272 if ((*env == '\0') && (*nxt == '\0'))
273 break;
274 ++env;
275 }
276 }
277 *++env = '\0';
278 }
279
280#ifdef CONFIG_NET_MULTI
281 if (strncmp(name, "eth", 3) == 0) {
282 char *end;
283 int num = simple_strtoul(name+3, &end, 10);
284
285 if (strcmp(end, "addr") == 0) {
286 eth_set_enetaddr(num, argv[2]);
287 }
288 }
289#endif
290
291
292 /* Delete only ? */
293 if ((argc < 3) || argv[2] == NULL) {
294 env_crc_update ();
295 return 0;
296 }
297
298 /*
299 * Append new definition at the end
300 */
301 for (env=env_data; *env || *(env+1); ++env)
302 ;
303 if (env > env_data)
304 ++env;
305 /*
306 * Overflow when:
307 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
308 */
309 len = strlen(name) + 2;
310 /* add '=' for first arg, ' ' for all others */
311 for (i=2; i<argc; ++i) {
312 len += strlen(argv[i]) + 1;
313 }
314 if (len > (&env_data[ENV_SIZE]-env)) {
315 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
316 return 1;
317 }
318 while ((*env = *name++) != '\0')
319 env++;
320 for (i=2; i<argc; ++i) {
321 char *val = argv[i];
322
323 *env = (i==2) ? '=' : ' ';
324 while ((*++env = *val++) != '\0')
325 ;
326 }
327
328 /* end is marked with double '\0' */
329 *++env = '\0';
330
331 /* Update CRC */
332 env_crc_update ();
333
334 /*
335 * Some variables should be updated when the corresponding
336 * entry in the enviornment is changed
337 */
338
339 if (strcmp(argv[1],"ethaddr") == 0) {
340 char *s = argv[2]; /* always use only one arg */
341 char *e;
342 for (i=0; i<6; ++i) {
343 bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0;
344 if (s) s = (*e) ? e+1 : e;
345 }
346#ifdef CONFIG_NET_MULTI
347 eth_set_enetaddr(0, argv[2]);
348#endif
349 return 0;
350 }
351
352 if (strcmp(argv[1],"ipaddr") == 0) {
353 char *s = argv[2]; /* always use only one arg */
354 char *e;
355 unsigned long addr;
356 bd->bi_ip_addr = 0;
357 for (addr=0, i=0; i<4; ++i) {
358 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
359 addr <<= 8;
360 addr |= (val & 0xFF);
361 if (s) s = (*e) ? e+1 : e;
362 }
363 bd->bi_ip_addr = htonl(addr);
364 return 0;
365 }
366 if (strcmp(argv[1],"loadaddr") == 0) {
367 load_addr = simple_strtoul(argv[2], NULL, 16);
368 return 0;
369 }
Jon Loeliger65c450b2007-06-11 19:01:54 -0500370#if (CONFIG_COMMANDS & CFG_CMD_NET) || defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +0000371 if (strcmp(argv[1],"bootfile") == 0) {
372 copy_filename (BootFile, argv[2], sizeof(BootFile));
373 return 0;
374 }
375#endif /* CFG_CMD_NET */
wdenkc7de8292002-11-19 11:04:11 +0000376
stroese05875972003-04-04 15:44:49 +0000377#ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000378 if (strcmp(argv[1], "vga_fg_color") == 0 ||
379 strcmp(argv[1], "vga_bg_color") == 0 ) {
380 extern void video_set_color(unsigned char attr);
381 extern unsigned char video_get_attr(void);
382
383 video_set_color(video_get_attr());
384 return 0;
385 }
386#endif /* CONFIG_AMIGAONEG3SE */
387
wdenka68d3ed2002-10-11 08:38:32 +0000388 return 0;
389}
390
391void setenv (char *varname, char *varvalue)
392{
393 char *argv[4] = { "setenv", varname, varvalue, NULL };
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200394 if (varvalue == NULL)
395 _do_setenv (0, 2, argv);
396 else
397 _do_setenv (0, 3, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000398}
399
400int do_setenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
401{
402 if (argc < 2) {
403 printf ("Usage:\n%s\n", cmdtp->usage);
404 return 1;
405 }
406
407 return _do_setenv (flag, argc, argv);
408}
409
410/************************************************************************
411 * Prompt for environment variable
412 */
413
Jon Loeliger65c450b2007-06-11 19:01:54 -0500414#if (CONFIG_COMMANDS & CFG_CMD_ASKENV) || defined(CONFIG_CMD_ASKENV)
wdenka68d3ed2002-10-11 08:38:32 +0000415int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
416{
417 extern char console_buffer[CFG_CBSIZE];
418 char message[CFG_CBSIZE];
419 int size = CFG_CBSIZE - 1;
420 int len;
421 char *local_args[4];
422
423 local_args[0] = argv[0];
424 local_args[1] = argv[1];
425 local_args[2] = NULL;
426 local_args[3] = NULL;
427
428 if (argc < 2) {
429 printf ("Usage:\n%s\n", cmdtp->usage);
430 return 1;
431 }
432 /* Check the syntax */
433 switch (argc) {
434 case 1:
435 printf ("Usage:\n%s\n", cmdtp->usage);
436 return 1;
437
438 case 2: /* askenv envname */
439 sprintf (message, "Please enter '%s':", argv[1]);
440 break;
441
442 case 3: /* askenv envname size */
443 sprintf (message, "Please enter '%s':", argv[1]);
444 size = simple_strtoul (argv[2], NULL, 10);
445 break;
446
447 default: /* askenv envname message1 ... messagen size */
448 {
449 int i;
450 int pos = 0;
451
452 for (i = 2; i < argc - 1; i++) {
453 if (pos) {
454 message[pos++] = ' ';
455 }
456 strcpy (message+pos, argv[i]);
457 pos += strlen(argv[i]);
458 }
459 message[pos] = '\0';
460 size = simple_strtoul (argv[argc - 1], NULL, 10);
461 }
462 break;
463 }
464
465 if (size >= CFG_CBSIZE)
466 size = CFG_CBSIZE - 1;
467
468 if (size <= 0)
469 return 1;
470
471 /* prompt for input */
472 len = readline (message);
473
474 if (size < len)
475 console_buffer[size] = '\0';
476
477 len = 2;
478 if (console_buffer[0] != '\0') {
479 local_args[2] = console_buffer;
480 len = 3;
481 }
482
483 /* Continue calling setenv code */
484 return _do_setenv (flag, len, local_args);
485}
486#endif /* CFG_CMD_ASKENV */
487
488/************************************************************************
489 * Look up variable from environment,
490 * return address of storage for that variable,
491 * or NULL if not found
492 */
493
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200494char *getenv (char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000495{
496 int i, nxt;
497
wdenk2a3cb022002-11-05 21:01:48 +0000498 WATCHDOG_RESET();
499
wdenka68d3ed2002-10-11 08:38:32 +0000500 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
501 int val;
502
503 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
504 if (nxt >= CFG_ENV_SIZE) {
505 return (NULL);
506 }
507 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200508 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000509 continue;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200510 return ((char *)env_get_addr(val));
wdenka68d3ed2002-10-11 08:38:32 +0000511 }
512
513 return (NULL);
514}
515
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200516int getenv_r (char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000517{
518 int i, nxt;
519
520 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
521 int val, n;
522
523 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
524 if (nxt >= CFG_ENV_SIZE) {
525 return (-1);
526 }
527 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200528 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000529 continue;
530 /* found; copy out */
531 n = 0;
532 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
533 ;
534 if (len == n)
535 *buf = '\0';
536 return (n);
537 }
538 return (-1);
539}
540
541#if defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) || \
542 ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_FLASH)) == \
Markus Klotzbuecher3c4eb082006-03-08 00:04:04 +0100543 (CFG_CMD_ENV|CFG_CMD_FLASH)) || \
544 ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_NAND)) == \
Jon Loeliger65c450b2007-06-11 19:01:54 -0500545 (CFG_CMD_ENV|CFG_CMD_NAND)) \
546 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)) \
547 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_NAND))
wdenka68d3ed2002-10-11 08:38:32 +0000548int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
549{
550 extern char * env_name_spec;
551
552 printf ("Saving Environment to %s...\n", env_name_spec);
553
554 return (saveenv() ? 1 : 0);
555}
wdenk8bde7f72003-06-27 21:31:46 +0000556
557
wdenka68d3ed2002-10-11 08:38:32 +0000558#endif
559
560
561/************************************************************************
562 * Match a name / name=value pair
563 *
564 * s1 is either a simple 'name', or a 'name=value' pair.
565 * i2 is the environment index for a 'name2=value2' pair.
566 * If the names match, return the index for the value2, else NULL.
567 */
568
569static int
570envmatch (uchar *s1, int i2)
571{
572
573 while (*s1 == env_get_char(i2++))
574 if (*s1++ == '=')
575 return(i2);
576 if (*s1 == '\0' && env_get_char(i2-1) == '=')
577 return(i2);
578 return(-1);
579}
wdenk8bde7f72003-06-27 21:31:46 +0000580
581
582/**************************************************/
583
wdenk0d498392003-07-01 21:06:45 +0000584U_BOOT_CMD(
585 printenv, CFG_MAXARGS, 1, do_printenv,
wdenk8bde7f72003-06-27 21:31:46 +0000586 "printenv- print environment variables\n",
587 "\n - print values of all environment variables\n"
588 "printenv name ...\n"
589 " - print value of environment variable 'name'\n"
590);
591
wdenk0d498392003-07-01 21:06:45 +0000592U_BOOT_CMD(
593 setenv, CFG_MAXARGS, 0, do_setenv,
wdenk8bde7f72003-06-27 21:31:46 +0000594 "setenv - set environment variables\n",
595 "name value ...\n"
596 " - set environment variable 'name' to 'value ...'\n"
597 "setenv name\n"
598 " - delete environment variable 'name'\n"
599);
600
wdenka5bbcc32004-09-29 22:55:14 +0000601#if defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) || \
602 ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_FLASH)) == \
Markus Klotzbuecher3c4eb082006-03-08 00:04:04 +0100603 (CFG_CMD_ENV|CFG_CMD_FLASH)) || \
604 ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_NAND)) == \
Jon Loeliger65c450b2007-06-11 19:01:54 -0500605 (CFG_CMD_ENV|CFG_CMD_NAND)) \
606 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)) \
607 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_NAND))
wdenk0d498392003-07-01 21:06:45 +0000608U_BOOT_CMD(
609 saveenv, 1, 0, do_saveenv,
wdenk8bde7f72003-06-27 21:31:46 +0000610 "saveenv - save environment variables to persistent storage\n",
611 NULL
612);
613
614#endif /* CFG_CMD_ENV */
615
Jon Loeliger65c450b2007-06-11 19:01:54 -0500616#if (CONFIG_COMMANDS & CFG_CMD_ASKENV) || defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +0000617
wdenk0d498392003-07-01 21:06:45 +0000618U_BOOT_CMD(
619 askenv, CFG_MAXARGS, 1, do_askenv,
wdenk8bde7f72003-06-27 21:31:46 +0000620 "askenv - get environment variables from stdin\n",
621 "name [message] [size]\n"
622 " - get environment variable 'name' from stdin (max 'size' chars)\n"
623 "askenv name\n"
624 " - get environment variable 'name' from stdin\n"
625 "askenv name size\n"
626 " - get environment variable 'name' from stdin (max 'size' chars)\n"
627 "askenv name [message] size\n"
628 " - display 'message' string and get environment variable 'name'"
629 "from stdin (max 'size' chars)\n"
630);
631#endif /* CFG_CMD_ASKENV */
632
Jon Loeliger65c450b2007-06-11 19:01:54 -0500633#if (CONFIG_COMMANDS & CFG_CMD_RUN) || defined(CONFIG_CMD_RUN)
wdenk8bde7f72003-06-27 21:31:46 +0000634int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk0d498392003-07-01 21:06:45 +0000635U_BOOT_CMD(
636 run, CFG_MAXARGS, 1, do_run,
wdenk8bde7f72003-06-27 21:31:46 +0000637 "run - run commands in an environment variable\n",
638 "var [...]\n"
639 " - run the commands in the environment variable(s) 'var'\n"
640);
641#endif /* CFG_CMD_RUN */