blob: 95eebb57646735ed8f0d59491ff59003720c9bbd [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 Loeligerc76fe472007-07-08 18:02:23 -050049#if 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
Jean-Christophe PLAGNIOL-VILLARD9314cee2008-09-10 22:47:59 +020055#if !defined(CONFIG_ENV_IS_IN_NVRAM) && \
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +020056 !defined(CONFIG_ENV_IS_IN_EEPROM) && \
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020057 !defined(CONFIG_ENV_IS_IN_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD057c8492008-09-10 22:47:58 +020058 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020059 !defined(CONFIG_ENV_IS_IN_NAND) && \
Jean-Christophe PLAGNIOL-VILLARD96561382008-09-10 22:47:59 +020060 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
Jean-Christophe PLAGNIOL-VILLARD0b5099a2008-09-10 22:48:00 +020061 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +020062 !defined(CONFIG_ENV_IS_NOWHERE)
Jean-Christophe PLAGNIOL-VILLARD1ede7872008-09-10 22:48:05 +020063# error Define one of CONFIG_ENV_IS_IN_{NVRAM|EEPROM|FLASH|DATAFLASH|ONENAND|SPI_FLASH|NOWHERE}
wdenka68d3ed2002-10-11 08:38:32 +000064#endif
65
66#define XMK_STR(x) #x
67#define MK_STR(x) XMK_STR(x)
68
69/************************************************************************
70************************************************************************/
71
wdenka68d3ed2002-10-11 08:38:32 +000072/*
73 * Table with supported baudrates (defined in config_xyz.h)
74 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000076#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
77
Heiko Schocher2f70c492009-02-10 09:38:52 +010078static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000079
Heiko Schocher2f70c492009-02-10 09:38:52 +010080int get_env_id (void)
81{
82 return env_id;
83}
wdenka68d3ed2002-10-11 08:38:32 +000084/************************************************************************
85 * Command interface: print one or all environment variables
86 */
87
88int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
89{
90 int i, j, k, nxt;
91 int rcode = 0;
92
93 if (argc == 1) { /* Print all env variables */
94 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
95 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt)
96 ;
97 for (k=i; k<nxt; ++k)
98 putc(env_get_char(k));
99 putc ('\n');
100
101 if (ctrlc()) {
102 puts ("\n ** Abort\n");
103 return 1;
104 }
105 }
106
Wolfgang Denkd5996dd2008-07-13 19:51:00 +0200107 printf("\nEnvironment size: %d/%ld bytes\n",
108 i, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000109
110 return 0;
111 }
112
113 for (i=1; i<argc; ++i) { /* print single env variables */
114 char *name = argv[i];
115
116 k = -1;
117
118 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
119
120 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
121 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200122 k = envmatch((uchar *)name, j);
wdenka68d3ed2002-10-11 08:38:32 +0000123 if (k < 0) {
124 continue;
125 }
126 puts (name);
127 putc ('=');
128 while (k < nxt)
129 putc(env_get_char(k++));
130 putc ('\n');
131 break;
132 }
133 if (k < 0) {
134 printf ("## Error: \"%s\" not defined\n", name);
135 rcode ++;
136 }
137 }
138 return rcode;
139}
140
141/************************************************************************
142 * Set a new environment variable,
143 * or replace or delete an existing one.
144 *
145 * This function will ONLY work with a in-RAM copy of the environment
146 */
147
148int _do_setenv (int flag, int argc, char *argv[])
149{
wdenka68d3ed2002-10-11 08:38:32 +0000150 int i, len, oldval;
151 int console = -1;
152 uchar *env, *nxt = NULL;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200153 char *name;
wdenka68d3ed2002-10-11 08:38:32 +0000154 bd_t *bd = gd->bd;
155
156 uchar *env_data = env_get_addr(0);
157
158 if (!env_data) /* need copy in RAM */
159 return 1;
160
161 name = argv[1];
162
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200163 if (strchr(name, '=')) {
164 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
165 return 1;
166 }
167
Heiko Schocher2f70c492009-02-10 09:38:52 +0100168 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000169 /*
170 * search if variable with this name already exists
171 */
172 oldval = -1;
173 for (env=env_data; *env; env=nxt+1) {
174 for (nxt=env; *nxt; ++nxt)
175 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200176 if ((oldval = envmatch((uchar *)name, env-env_data)) >= 0)
wdenka68d3ed2002-10-11 08:38:32 +0000177 break;
178 }
179
180 /*
181 * Delete any existing definition
182 */
183 if (oldval >= 0) {
184#ifndef CONFIG_ENV_OVERWRITE
185
186 /*
stroese05875972003-04-04 15:44:49 +0000187 * Ethernet Address and serial# can be set only once,
188 * ver is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000189 */
Steven A. Falcof6a69552008-06-12 13:24:42 -0400190 if (
Sergey Kubushync74b2102007-08-10 20:26:18 +0200191#ifdef CONFIG_HAS_UID
192 /* Allow serial# forced overwrite with 0xdeaf4add flag */
Steven A. Falcof6a69552008-06-12 13:24:42 -0400193 ((strcmp (name, "serial#") == 0) && (flag != 0xdeaf4add)) ||
Sergey Kubushync74b2102007-08-10 20:26:18 +0200194#else
Steven A. Falcof6a69552008-06-12 13:24:42 -0400195 (strcmp (name, "serial#") == 0) ||
Sergey Kubushync74b2102007-08-10 20:26:18 +0200196#endif
wdenka68d3ed2002-10-11 08:38:32 +0000197 ((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
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100222#ifdef CONFIG_CONSOLE_MUX
223 i = iomux_doenv(console, argv[2]);
224 if (i)
225 return i;
226#else
wdenka68d3ed2002-10-11 08:38:32 +0000227 /* Try assigning specified device */
228 if (console_assign (console, argv[2]) < 0)
229 return 1;
wdenk281e00a2004-08-01 22:48:16 +0000230
231#ifdef CONFIG_SERIAL_MULTI
232 if (serial_assign (argv[2]) < 0)
233 return 1;
234#endif
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100235#endif /* CONFIG_CONSOLE_MUX */
wdenka68d3ed2002-10-11 08:38:32 +0000236 }
237
238 /*
239 * Switch to new baudrate if new baudrate is supported
240 */
241 if (strcmp(argv[1],"baudrate") == 0) {
242 int baudrate = simple_strtoul(argv[2], NULL, 10);
243 int i;
244 for (i=0; i<N_BAUDRATES; ++i) {
245 if (baudrate == baudrate_table[i])
246 break;
247 }
248 if (i == N_BAUDRATES) {
249 printf ("## Baudrate %d bps not supported\n",
250 baudrate);
251 return 1;
252 }
253 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
254 baudrate);
255 udelay(50000);
256 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100257#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000258 gd->bd->bi_baudrate = baudrate;
259#endif
260
wdenka68d3ed2002-10-11 08:38:32 +0000261 serial_setbrg ();
262 udelay(50000);
263 for (;;) {
264 if (getc() == '\r')
265 break;
266 }
267 }
268
269 if (*++nxt == '\0') {
270 if (env > env_data) {
271 env--;
272 } else {
273 *env = '\0';
274 }
275 } else {
276 for (;;) {
277 *env = *nxt++;
278 if ((*env == '\0') && (*nxt == '\0'))
279 break;
280 ++env;
281 }
282 }
283 *++env = '\0';
284 }
285
wdenka68d3ed2002-10-11 08:38:32 +0000286 /* Delete only ? */
287 if ((argc < 3) || argv[2] == NULL) {
288 env_crc_update ();
289 return 0;
290 }
291
292 /*
293 * Append new definition at the end
294 */
295 for (env=env_data; *env || *(env+1); ++env)
296 ;
297 if (env > env_data)
298 ++env;
299 /*
300 * Overflow when:
301 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
302 */
303 len = strlen(name) + 2;
304 /* add '=' for first arg, ' ' for all others */
305 for (i=2; i<argc; ++i) {
306 len += strlen(argv[i]) + 1;
307 }
308 if (len > (&env_data[ENV_SIZE]-env)) {
309 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
310 return 1;
311 }
312 while ((*env = *name++) != '\0')
313 env++;
314 for (i=2; i<argc; ++i) {
315 char *val = argv[i];
316
317 *env = (i==2) ? '=' : ' ';
318 while ((*++env = *val++) != '\0')
319 ;
320 }
321
322 /* end is marked with double '\0' */
323 *++env = '\0';
324
325 /* Update CRC */
326 env_crc_update ();
327
328 /*
329 * Some variables should be updated when the corresponding
330 * entry in the enviornment is changed
331 */
332
Mike Frysinger56b555a2009-02-11 18:52:38 -0500333 if (strcmp(argv[1],"ethaddr") == 0)
wdenka68d3ed2002-10-11 08:38:32 +0000334 return 0;
wdenka68d3ed2002-10-11 08:38:32 +0000335
336 if (strcmp(argv[1],"ipaddr") == 0) {
337 char *s = argv[2]; /* always use only one arg */
338 char *e;
339 unsigned long addr;
340 bd->bi_ip_addr = 0;
341 for (addr=0, i=0; i<4; ++i) {
342 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
343 addr <<= 8;
344 addr |= (val & 0xFF);
345 if (s) s = (*e) ? e+1 : e;
346 }
347 bd->bi_ip_addr = htonl(addr);
348 return 0;
349 }
350 if (strcmp(argv[1],"loadaddr") == 0) {
351 load_addr = simple_strtoul(argv[2], NULL, 16);
352 return 0;
353 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500354#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +0000355 if (strcmp(argv[1],"bootfile") == 0) {
356 copy_filename (BootFile, argv[2], sizeof(BootFile));
357 return 0;
358 }
Jon Loeliger90253172007-07-10 11:02:44 -0500359#endif
wdenkc7de8292002-11-19 11:04:11 +0000360
stroese05875972003-04-04 15:44:49 +0000361#ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000362 if (strcmp(argv[1], "vga_fg_color") == 0 ||
363 strcmp(argv[1], "vga_bg_color") == 0 ) {
364 extern void video_set_color(unsigned char attr);
365 extern unsigned char video_get_attr(void);
366
367 video_set_color(video_get_attr());
368 return 0;
369 }
370#endif /* CONFIG_AMIGAONEG3SE */
371
wdenka68d3ed2002-10-11 08:38:32 +0000372 return 0;
373}
374
Steven A. Falco75678c82008-06-12 13:22:12 -0400375int setenv (char *varname, char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000376{
377 char *argv[4] = { "setenv", varname, varvalue, NULL };
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200378 if (varvalue == NULL)
Steven A. Falco75678c82008-06-12 13:22:12 -0400379 return _do_setenv (0, 2, argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200380 else
Steven A. Falco75678c82008-06-12 13:22:12 -0400381 return _do_setenv (0, 3, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000382}
383
Sergey Kubushync74b2102007-08-10 20:26:18 +0200384#ifdef CONFIG_HAS_UID
385void forceenv (char *varname, char *varvalue)
386{
387 char *argv[4] = { "forceenv", varname, varvalue, NULL };
388 _do_setenv (0xdeaf4add, 3, argv);
389}
390#endif
391
392int do_setenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000393{
394 if (argc < 2) {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600395 cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000396 return 1;
397 }
398
399 return _do_setenv (flag, argc, argv);
400}
401
402/************************************************************************
403 * Prompt for environment variable
404 */
405
Jon Loeligerc76fe472007-07-08 18:02:23 -0500406#if defined(CONFIG_CMD_ASKENV)
wdenka68d3ed2002-10-11 08:38:32 +0000407int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
408{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200409 extern char console_buffer[CONFIG_SYS_CBSIZE];
410 char message[CONFIG_SYS_CBSIZE];
411 int size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000412 int len;
413 char *local_args[4];
414
415 local_args[0] = argv[0];
416 local_args[1] = argv[1];
417 local_args[2] = NULL;
418 local_args[3] = NULL;
419
420 if (argc < 2) {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600421 cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000422 return 1;
423 }
424 /* Check the syntax */
425 switch (argc) {
426 case 1:
Peter Tyser62c3ae72009-01-27 18:03:10 -0600427 cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000428 return 1;
429
430 case 2: /* askenv envname */
431 sprintf (message, "Please enter '%s':", argv[1]);
432 break;
433
434 case 3: /* askenv envname size */
435 sprintf (message, "Please enter '%s':", argv[1]);
436 size = simple_strtoul (argv[2], NULL, 10);
437 break;
438
439 default: /* askenv envname message1 ... messagen size */
440 {
441 int i;
442 int pos = 0;
443
444 for (i = 2; i < argc - 1; i++) {
445 if (pos) {
446 message[pos++] = ' ';
447 }
448 strcpy (message+pos, argv[i]);
449 pos += strlen(argv[i]);
450 }
451 message[pos] = '\0';
452 size = simple_strtoul (argv[argc - 1], NULL, 10);
453 }
454 break;
455 }
456
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200457 if (size >= CONFIG_SYS_CBSIZE)
458 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000459
460 if (size <= 0)
461 return 1;
462
463 /* prompt for input */
464 len = readline (message);
465
466 if (size < len)
467 console_buffer[size] = '\0';
468
469 len = 2;
470 if (console_buffer[0] != '\0') {
471 local_args[2] = console_buffer;
472 len = 3;
473 }
474
475 /* Continue calling setenv code */
476 return _do_setenv (flag, len, local_args);
477}
Jon Loeliger90253172007-07-10 11:02:44 -0500478#endif
wdenka68d3ed2002-10-11 08:38:32 +0000479
480/************************************************************************
481 * Look up variable from environment,
482 * return address of storage for that variable,
483 * or NULL if not found
484 */
485
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200486char *getenv (char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000487{
488 int i, nxt;
489
wdenk2a3cb022002-11-05 21:01:48 +0000490 WATCHDOG_RESET();
491
wdenka68d3ed2002-10-11 08:38:32 +0000492 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
493 int val;
494
495 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200496 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000497 return (NULL);
498 }
499 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200500 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000501 continue;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200502 return ((char *)env_get_addr(val));
wdenka68d3ed2002-10-11 08:38:32 +0000503 }
504
505 return (NULL);
506}
507
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200508int getenv_r (char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000509{
510 int i, nxt;
511
512 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
513 int val, n;
514
515 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200516 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000517 return (-1);
518 }
519 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200520 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000521 continue;
522 /* found; copy out */
523 n = 0;
524 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
525 ;
526 if (len == n)
527 *buf = '\0';
528 return (n);
529 }
530 return (-1);
531}
532
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500533#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Mike Frysingerba69dc22008-12-30 02:59:25 -0500534
wdenka68d3ed2002-10-11 08:38:32 +0000535int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
536{
537 extern char * env_name_spec;
538
539 printf ("Saving Environment to %s...\n", env_name_spec);
540
541 return (saveenv() ? 1 : 0);
542}
wdenk8bde7f72003-06-27 21:31:46 +0000543
Mike Frysingerba69dc22008-12-30 02:59:25 -0500544U_BOOT_CMD(
545 saveenv, 1, 0, do_saveenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600546 "save environment variables to persistent storage",
Mike Frysingerba69dc22008-12-30 02:59:25 -0500547 NULL
548);
549
wdenka68d3ed2002-10-11 08:38:32 +0000550#endif
551
552
553/************************************************************************
554 * Match a name / name=value pair
555 *
556 * s1 is either a simple 'name', or a 'name=value' pair.
557 * i2 is the environment index for a 'name2=value2' pair.
558 * If the names match, return the index for the value2, else NULL.
559 */
560
Rafal Jaworowski26a41792008-01-09 18:05:27 +0100561int envmatch (uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000562{
563
564 while (*s1 == env_get_char(i2++))
565 if (*s1++ == '=')
566 return(i2);
567 if (*s1 == '\0' && env_get_char(i2-1) == '=')
568 return(i2);
569 return(-1);
570}
wdenk8bde7f72003-06-27 21:31:46 +0000571
572
573/**************************************************/
574
wdenk0d498392003-07-01 21:06:45 +0000575U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200576 printenv, CONFIG_SYS_MAXARGS, 1, do_printenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600577 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000578 "\n - print values of all environment variables\n"
579 "printenv name ...\n"
580 " - print value of environment variable 'name'\n"
581);
582
wdenk0d498392003-07-01 21:06:45 +0000583U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200584 setenv, CONFIG_SYS_MAXARGS, 0, do_setenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600585 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000586 "name value ...\n"
587 " - set environment variable 'name' to 'value ...'\n"
588 "setenv name\n"
589 " - delete environment variable 'name'\n"
590);
591
Jon Loeligerc76fe472007-07-08 18:02:23 -0500592#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +0000593
wdenk0d498392003-07-01 21:06:45 +0000594U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200595 askenv, CONFIG_SYS_MAXARGS, 1, do_askenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600596 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +0000597 "name [message] [size]\n"
598 " - get environment variable 'name' from stdin (max 'size' chars)\n"
599 "askenv name\n"
600 " - get environment variable 'name' from stdin\n"
601 "askenv name size\n"
602 " - get environment variable 'name' from stdin (max 'size' chars)\n"
603 "askenv name [message] size\n"
604 " - display 'message' string and get environment variable 'name'"
605 "from stdin (max 'size' chars)\n"
606);
Jon Loeliger90253172007-07-10 11:02:44 -0500607#endif
wdenk8bde7f72003-06-27 21:31:46 +0000608
Jon Loeligerc76fe472007-07-08 18:02:23 -0500609#if defined(CONFIG_CMD_RUN)
wdenk8bde7f72003-06-27 21:31:46 +0000610int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk0d498392003-07-01 21:06:45 +0000611U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200612 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -0600613 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +0000614 "var [...]\n"
615 " - run the commands in the environment variable(s) 'var'\n"
616);
Jon Loeliger90253172007-07-10 11:02:44 -0500617#endif