blob: 163765a8a0b29cf6803f84b1d90ec758f5f77cfc [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
unsik Kim75eb82e2009-02-25 11:31:24 +090055#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020056 !defined(CONFIG_ENV_IS_IN_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD057c8492008-09-10 22:47:58 +020057 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
unsik Kim75eb82e2009-02-25 11:31:24 +090058 !defined(CONFIG_ENV_IS_IN_MG_DISK) && \
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020059 !defined(CONFIG_ENV_IS_IN_NAND) && \
unsik Kim75eb82e2009-02-25 11:31:24 +090060 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
Jean-Christophe PLAGNIOL-VILLARD96561382008-09-10 22:47:59 +020061 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
Jean-Christophe PLAGNIOL-VILLARD0b5099a2008-09-10 22:48:00 +020062 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +020063 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090064# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
65SPI_FLASH|MG_DISK|NVRAM|NOWHERE}
wdenka68d3ed2002-10-11 08:38:32 +000066#endif
67
68#define XMK_STR(x) #x
69#define MK_STR(x) XMK_STR(x)
70
71/************************************************************************
72************************************************************************/
73
wdenka68d3ed2002-10-11 08:38:32 +000074/*
75 * Table with supported baudrates (defined in config_xyz.h)
76 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000078#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
79
Heiko Schocher2f70c492009-02-10 09:38:52 +010080static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000081
Heiko Schocher2f70c492009-02-10 09:38:52 +010082int get_env_id (void)
83{
84 return env_id;
85}
wdenka68d3ed2002-10-11 08:38:32 +000086/************************************************************************
87 * Command interface: print one or all environment variables
88 */
89
90int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
91{
92 int i, j, k, nxt;
93 int rcode = 0;
94
95 if (argc == 1) { /* Print all env variables */
96 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
97 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt)
98 ;
99 for (k=i; k<nxt; ++k)
100 putc(env_get_char(k));
101 putc ('\n');
102
103 if (ctrlc()) {
104 puts ("\n ** Abort\n");
105 return 1;
106 }
107 }
108
Wolfgang Denkd5996dd2008-07-13 19:51:00 +0200109 printf("\nEnvironment size: %d/%ld bytes\n",
110 i, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000111
112 return 0;
113 }
114
115 for (i=1; i<argc; ++i) { /* print single env variables */
116 char *name = argv[i];
117
118 k = -1;
119
120 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
121
122 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
123 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200124 k = envmatch((uchar *)name, j);
wdenka68d3ed2002-10-11 08:38:32 +0000125 if (k < 0) {
126 continue;
127 }
128 puts (name);
129 putc ('=');
130 while (k < nxt)
131 putc(env_get_char(k++));
132 putc ('\n');
133 break;
134 }
135 if (k < 0) {
136 printf ("## Error: \"%s\" not defined\n", name);
137 rcode ++;
138 }
139 }
140 return rcode;
141}
142
143/************************************************************************
144 * Set a new environment variable,
145 * or replace or delete an existing one.
146 *
147 * This function will ONLY work with a in-RAM copy of the environment
148 */
149
150int _do_setenv (int flag, int argc, char *argv[])
151{
wdenka68d3ed2002-10-11 08:38:32 +0000152 int i, len, oldval;
153 int console = -1;
154 uchar *env, *nxt = NULL;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200155 char *name;
wdenka68d3ed2002-10-11 08:38:32 +0000156 bd_t *bd = gd->bd;
157
158 uchar *env_data = env_get_addr(0);
159
160 if (!env_data) /* need copy in RAM */
161 return 1;
162
163 name = argv[1];
164
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200165 if (strchr(name, '=')) {
166 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
167 return 1;
168 }
169
Heiko Schocher2f70c492009-02-10 09:38:52 +0100170 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000171 /*
172 * search if variable with this name already exists
173 */
174 oldval = -1;
175 for (env=env_data; *env; env=nxt+1) {
176 for (nxt=env; *nxt; ++nxt)
177 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200178 if ((oldval = envmatch((uchar *)name, env-env_data)) >= 0)
wdenka68d3ed2002-10-11 08:38:32 +0000179 break;
180 }
181
182 /*
183 * Delete any existing definition
184 */
185 if (oldval >= 0) {
186#ifndef CONFIG_ENV_OVERWRITE
187
188 /*
stroese05875972003-04-04 15:44:49 +0000189 * Ethernet Address and serial# can be set only once,
190 * ver is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000191 */
Steven A. Falcof6a69552008-06-12 13:24:42 -0400192 if (
Sergey Kubushync74b2102007-08-10 20:26:18 +0200193#ifdef CONFIG_HAS_UID
194 /* Allow serial# forced overwrite with 0xdeaf4add flag */
Steven A. Falcof6a69552008-06-12 13:24:42 -0400195 ((strcmp (name, "serial#") == 0) && (flag != 0xdeaf4add)) ||
Sergey Kubushync74b2102007-08-10 20:26:18 +0200196#else
Steven A. Falcof6a69552008-06-12 13:24:42 -0400197 (strcmp (name, "serial#") == 0) ||
Sergey Kubushync74b2102007-08-10 20:26:18 +0200198#endif
wdenka68d3ed2002-10-11 08:38:32 +0000199 ((strcmp (name, "ethaddr") == 0)
200#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200201 && (strcmp ((char *)env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
wdenka68d3ed2002-10-11 08:38:32 +0000202#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
203 ) ) {
204 printf ("Can't overwrite \"%s\"\n", name);
205 return 1;
206 }
207#endif
208
209 /* Check for console redirection */
210 if (strcmp(name,"stdin") == 0) {
211 console = stdin;
212 } else if (strcmp(name,"stdout") == 0) {
213 console = stdout;
214 } else if (strcmp(name,"stderr") == 0) {
215 console = stderr;
216 }
217
218 if (console != -1) {
219 if (argc < 3) { /* Cannot delete it! */
220 printf("Can't delete \"%s\"\n", name);
221 return 1;
222 }
223
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100224#ifdef CONFIG_CONSOLE_MUX
225 i = iomux_doenv(console, argv[2]);
226 if (i)
227 return i;
228#else
wdenka68d3ed2002-10-11 08:38:32 +0000229 /* Try assigning specified device */
230 if (console_assign (console, argv[2]) < 0)
231 return 1;
wdenk281e00a2004-08-01 22:48:16 +0000232
233#ifdef CONFIG_SERIAL_MULTI
234 if (serial_assign (argv[2]) < 0)
235 return 1;
236#endif
Gary Jennejohn16a28ef2008-11-06 15:04:23 +0100237#endif /* CONFIG_CONSOLE_MUX */
wdenka68d3ed2002-10-11 08:38:32 +0000238 }
239
240 /*
241 * Switch to new baudrate if new baudrate is supported
242 */
243 if (strcmp(argv[1],"baudrate") == 0) {
244 int baudrate = simple_strtoul(argv[2], NULL, 10);
245 int i;
246 for (i=0; i<N_BAUDRATES; ++i) {
247 if (baudrate == baudrate_table[i])
248 break;
249 }
250 if (i == N_BAUDRATES) {
251 printf ("## Baudrate %d bps not supported\n",
252 baudrate);
253 return 1;
254 }
255 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
256 baudrate);
257 udelay(50000);
258 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100259#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000260 gd->bd->bi_baudrate = baudrate;
261#endif
262
wdenka68d3ed2002-10-11 08:38:32 +0000263 serial_setbrg ();
264 udelay(50000);
265 for (;;) {
266 if (getc() == '\r')
267 break;
268 }
269 }
270
271 if (*++nxt == '\0') {
272 if (env > env_data) {
273 env--;
274 } else {
275 *env = '\0';
276 }
277 } else {
278 for (;;) {
279 *env = *nxt++;
280 if ((*env == '\0') && (*nxt == '\0'))
281 break;
282 ++env;
283 }
284 }
285 *++env = '\0';
286 }
287
wdenka68d3ed2002-10-11 08:38:32 +0000288 /* Delete only ? */
289 if ((argc < 3) || argv[2] == NULL) {
290 env_crc_update ();
291 return 0;
292 }
293
294 /*
295 * Append new definition at the end
296 */
297 for (env=env_data; *env || *(env+1); ++env)
298 ;
299 if (env > env_data)
300 ++env;
301 /*
302 * Overflow when:
303 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
304 */
305 len = strlen(name) + 2;
306 /* add '=' for first arg, ' ' for all others */
307 for (i=2; i<argc; ++i) {
308 len += strlen(argv[i]) + 1;
309 }
310 if (len > (&env_data[ENV_SIZE]-env)) {
311 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
312 return 1;
313 }
314 while ((*env = *name++) != '\0')
315 env++;
316 for (i=2; i<argc; ++i) {
317 char *val = argv[i];
318
319 *env = (i==2) ? '=' : ' ';
320 while ((*++env = *val++) != '\0')
321 ;
322 }
323
324 /* end is marked with double '\0' */
325 *++env = '\0';
326
327 /* Update CRC */
328 env_crc_update ();
329
330 /*
331 * Some variables should be updated when the corresponding
332 * entry in the enviornment is changed
333 */
334
Mike Frysinger56b555a2009-02-11 18:52:38 -0500335 if (strcmp(argv[1],"ethaddr") == 0)
wdenka68d3ed2002-10-11 08:38:32 +0000336 return 0;
wdenka68d3ed2002-10-11 08:38:32 +0000337
338 if (strcmp(argv[1],"ipaddr") == 0) {
339 char *s = argv[2]; /* always use only one arg */
340 char *e;
341 unsigned long addr;
342 bd->bi_ip_addr = 0;
343 for (addr=0, i=0; i<4; ++i) {
344 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
345 addr <<= 8;
346 addr |= (val & 0xFF);
347 if (s) s = (*e) ? e+1 : e;
348 }
349 bd->bi_ip_addr = htonl(addr);
350 return 0;
351 }
352 if (strcmp(argv[1],"loadaddr") == 0) {
353 load_addr = simple_strtoul(argv[2], NULL, 16);
354 return 0;
355 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500356#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +0000357 if (strcmp(argv[1],"bootfile") == 0) {
358 copy_filename (BootFile, argv[2], sizeof(BootFile));
359 return 0;
360 }
Jon Loeliger90253172007-07-10 11:02:44 -0500361#endif
wdenkc7de8292002-11-19 11:04:11 +0000362
stroese05875972003-04-04 15:44:49 +0000363#ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000364 if (strcmp(argv[1], "vga_fg_color") == 0 ||
365 strcmp(argv[1], "vga_bg_color") == 0 ) {
366 extern void video_set_color(unsigned char attr);
367 extern unsigned char video_get_attr(void);
368
369 video_set_color(video_get_attr());
370 return 0;
371 }
372#endif /* CONFIG_AMIGAONEG3SE */
373
wdenka68d3ed2002-10-11 08:38:32 +0000374 return 0;
375}
376
Steven A. Falco75678c82008-06-12 13:22:12 -0400377int setenv (char *varname, char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000378{
379 char *argv[4] = { "setenv", varname, varvalue, NULL };
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200380 if (varvalue == NULL)
Steven A. Falco75678c82008-06-12 13:22:12 -0400381 return _do_setenv (0, 2, argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200382 else
Steven A. Falco75678c82008-06-12 13:22:12 -0400383 return _do_setenv (0, 3, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000384}
385
Sergey Kubushync74b2102007-08-10 20:26:18 +0200386#ifdef CONFIG_HAS_UID
387void forceenv (char *varname, char *varvalue)
388{
389 char *argv[4] = { "forceenv", varname, varvalue, NULL };
390 _do_setenv (0xdeaf4add, 3, argv);
391}
392#endif
393
394int do_setenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000395{
396 if (argc < 2) {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600397 cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000398 return 1;
399 }
400
401 return _do_setenv (flag, argc, argv);
402}
403
404/************************************************************************
405 * Prompt for environment variable
406 */
407
Jon Loeligerc76fe472007-07-08 18:02:23 -0500408#if defined(CONFIG_CMD_ASKENV)
wdenka68d3ed2002-10-11 08:38:32 +0000409int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
410{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200411 extern char console_buffer[CONFIG_SYS_CBSIZE];
412 char message[CONFIG_SYS_CBSIZE];
413 int size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000414 int len;
415 char *local_args[4];
416
417 local_args[0] = argv[0];
418 local_args[1] = argv[1];
419 local_args[2] = NULL;
420 local_args[3] = NULL;
421
422 if (argc < 2) {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600423 cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000424 return 1;
425 }
426 /* Check the syntax */
427 switch (argc) {
428 case 1:
Peter Tyser62c3ae72009-01-27 18:03:10 -0600429 cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000430 return 1;
431
432 case 2: /* askenv envname */
433 sprintf (message, "Please enter '%s':", argv[1]);
434 break;
435
436 case 3: /* askenv envname size */
437 sprintf (message, "Please enter '%s':", argv[1]);
438 size = simple_strtoul (argv[2], NULL, 10);
439 break;
440
441 default: /* askenv envname message1 ... messagen size */
442 {
443 int i;
444 int pos = 0;
445
446 for (i = 2; i < argc - 1; i++) {
447 if (pos) {
448 message[pos++] = ' ';
449 }
450 strcpy (message+pos, argv[i]);
451 pos += strlen(argv[i]);
452 }
453 message[pos] = '\0';
454 size = simple_strtoul (argv[argc - 1], NULL, 10);
455 }
456 break;
457 }
458
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200459 if (size >= CONFIG_SYS_CBSIZE)
460 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000461
462 if (size <= 0)
463 return 1;
464
465 /* prompt for input */
466 len = readline (message);
467
468 if (size < len)
469 console_buffer[size] = '\0';
470
471 len = 2;
472 if (console_buffer[0] != '\0') {
473 local_args[2] = console_buffer;
474 len = 3;
475 }
476
477 /* Continue calling setenv code */
478 return _do_setenv (flag, len, local_args);
479}
Jon Loeliger90253172007-07-10 11:02:44 -0500480#endif
wdenka68d3ed2002-10-11 08:38:32 +0000481
482/************************************************************************
483 * Look up variable from environment,
484 * return address of storage for that variable,
485 * or NULL if not found
486 */
487
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200488char *getenv (char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000489{
490 int i, nxt;
491
wdenk2a3cb022002-11-05 21:01:48 +0000492 WATCHDOG_RESET();
493
wdenka68d3ed2002-10-11 08:38:32 +0000494 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
495 int val;
496
497 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200498 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000499 return (NULL);
500 }
501 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200502 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000503 continue;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200504 return ((char *)env_get_addr(val));
wdenka68d3ed2002-10-11 08:38:32 +0000505 }
506
507 return (NULL);
508}
509
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200510int getenv_r (char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000511{
512 int i, nxt;
513
514 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
515 int val, n;
516
517 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200518 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000519 return (-1);
520 }
521 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200522 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000523 continue;
524 /* found; copy out */
525 n = 0;
526 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
527 ;
528 if (len == n)
529 *buf = '\0';
530 return (n);
531 }
532 return (-1);
533}
534
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500535#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Mike Frysingerba69dc22008-12-30 02:59:25 -0500536
wdenka68d3ed2002-10-11 08:38:32 +0000537int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
538{
539 extern char * env_name_spec;
540
541 printf ("Saving Environment to %s...\n", env_name_spec);
542
543 return (saveenv() ? 1 : 0);
544}
wdenk8bde7f72003-06-27 21:31:46 +0000545
Mike Frysingerba69dc22008-12-30 02:59:25 -0500546U_BOOT_CMD(
547 saveenv, 1, 0, do_saveenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600548 "save environment variables to persistent storage",
Mike Frysingerba69dc22008-12-30 02:59:25 -0500549 NULL
550);
551
wdenka68d3ed2002-10-11 08:38:32 +0000552#endif
553
554
555/************************************************************************
556 * Match a name / name=value pair
557 *
558 * s1 is either a simple 'name', or a 'name=value' pair.
559 * i2 is the environment index for a 'name2=value2' pair.
560 * If the names match, return the index for the value2, else NULL.
561 */
562
Rafal Jaworowski26a41792008-01-09 18:05:27 +0100563int envmatch (uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000564{
565
566 while (*s1 == env_get_char(i2++))
567 if (*s1++ == '=')
568 return(i2);
569 if (*s1 == '\0' && env_get_char(i2-1) == '=')
570 return(i2);
571 return(-1);
572}
wdenk8bde7f72003-06-27 21:31:46 +0000573
574
575/**************************************************/
576
wdenk0d498392003-07-01 21:06:45 +0000577U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200578 printenv, CONFIG_SYS_MAXARGS, 1, do_printenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600579 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000580 "\n - print values of all environment variables\n"
581 "printenv name ...\n"
582 " - print value of environment variable 'name'\n"
583);
584
wdenk0d498392003-07-01 21:06:45 +0000585U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200586 setenv, CONFIG_SYS_MAXARGS, 0, do_setenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600587 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000588 "name value ...\n"
589 " - set environment variable 'name' to 'value ...'\n"
590 "setenv name\n"
591 " - delete environment variable 'name'\n"
592);
593
Jon Loeligerc76fe472007-07-08 18:02:23 -0500594#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +0000595
wdenk0d498392003-07-01 21:06:45 +0000596U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200597 askenv, CONFIG_SYS_MAXARGS, 1, do_askenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600598 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +0000599 "name [message] [size]\n"
600 " - get environment variable 'name' from stdin (max 'size' chars)\n"
601 "askenv name\n"
602 " - get environment variable 'name' from stdin\n"
603 "askenv name size\n"
604 " - get environment variable 'name' from stdin (max 'size' chars)\n"
605 "askenv name [message] size\n"
606 " - display 'message' string and get environment variable 'name'"
607 "from stdin (max 'size' chars)\n"
608);
Jon Loeliger90253172007-07-10 11:02:44 -0500609#endif
wdenk8bde7f72003-06-27 21:31:46 +0000610
Jon Loeligerc76fe472007-07-08 18:02:23 -0500611#if defined(CONFIG_CMD_RUN)
wdenk8bde7f72003-06-27 21:31:46 +0000612int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk0d498392003-07-01 21:06:45 +0000613U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200614 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -0600615 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +0000616 "var [...]\n"
617 " - run the commands in the environment variable(s) 'var'\n"
618);
Jon Loeliger90253172007-07-10 11:02:44 -0500619#endif