blob: dc15750b6469e88c08c57154c1cb513cfb218401 [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>
Peter Tyser246c6922009-10-25 15:12:56 -050045#if defined(CONFIG_CMD_EDITENV)
46#include <malloc.h>
47#endif
wdenk2a3cb022002-11-05 21:01:48 +000048#include <watchdog.h>
wdenk281e00a2004-08-01 22:48:16 +000049#include <serial.h>
wdenka68d3ed2002-10-11 08:38:32 +000050#include <linux/stddef.h>
51#include <asm/byteorder.h>
Jon Loeligerc76fe472007-07-08 18:02:23 -050052#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +000053#include <net.h>
54#endif
55
Wolfgang Denkd87080b2006-03-31 18:32:53 +020056DECLARE_GLOBAL_DATA_PTR;
57
unsik Kim75eb82e2009-02-25 11:31:24 +090058#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020059 !defined(CONFIG_ENV_IS_IN_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD057c8492008-09-10 22:47:58 +020060 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
unsik Kim75eb82e2009-02-25 11:31:24 +090061 !defined(CONFIG_ENV_IS_IN_MG_DISK) && \
Terry Lva8060352010-05-17 10:57:01 +080062 !defined(CONFIG_ENV_IS_IN_MMC) && \
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020063 !defined(CONFIG_ENV_IS_IN_NAND) && \
unsik Kim75eb82e2009-02-25 11:31:24 +090064 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
Jean-Christophe PLAGNIOL-VILLARD96561382008-09-10 22:47:59 +020065 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
Jean-Christophe PLAGNIOL-VILLARD0b5099a2008-09-10 22:48:00 +020066 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +020067 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090068# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Terry Lva8060352010-05-17 10:57:01 +080069SPI_FLASH|MG_DISK|NVRAM|MMC|NOWHERE}
wdenka68d3ed2002-10-11 08:38:32 +000070#endif
71
72#define XMK_STR(x) #x
73#define MK_STR(x) XMK_STR(x)
74
75/************************************************************************
76************************************************************************/
77
wdenka68d3ed2002-10-11 08:38:32 +000078/*
79 * Table with supported baudrates (defined in config_xyz.h)
80 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000082#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
83
Heiko Schocherda954272009-04-28 08:36:11 +020084/*
85 * This variable is incremented on each do_setenv (), so it can
86 * be used via get_env_id() as an indication, if the environment
87 * has changed or not. So it is possible to reread an environment
88 * variable only if the environment was changed ... done so for
89 * example in NetInitLoop()
90 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010091static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000092
Heiko Schocher2f70c492009-02-10 09:38:52 +010093int get_env_id (void)
94{
95 return env_id;
96}
wdenka68d3ed2002-10-11 08:38:32 +000097/************************************************************************
98 * Command interface: print one or all environment variables
99 */
100
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400101/*
102 * state 0: finish printing this string and return (matched!)
103 * state 1: no matching to be done; print everything
104 * state 2: continue searching for matched name
105 */
106static int printenv(char *name, int state)
wdenka68d3ed2002-10-11 08:38:32 +0000107{
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400108 int i, j;
109 char c, buf[17];
wdenka68d3ed2002-10-11 08:38:32 +0000110
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400111 i = 0;
112 buf[16] = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000113
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400114 while (state && env_get_char(i) != '\0') {
115 if (state == 2 && envmatch((uchar *)name, i) >= 0)
116 state = 0;
117
118 j = 0;
119 do {
120 buf[j++] = c = env_get_char(i++);
121 if (j == sizeof(buf) - 1) {
122 if (state <= 1)
123 puts(buf);
124 j = 0;
wdenka68d3ed2002-10-11 08:38:32 +0000125 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400126 } while (c != '\0');
127
128 if (state <= 1) {
129 if (j)
130 puts(buf);
131 putc('\n');
wdenka68d3ed2002-10-11 08:38:32 +0000132 }
133
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400134 if (ctrlc())
135 return -1;
136 }
wdenka68d3ed2002-10-11 08:38:32 +0000137
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400138 if (state == 0)
139 i = 0;
140 return i;
141}
142
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200143int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400144{
145 int i;
146 int rcode = 0;
147
148 if (argc == 1) {
149 /* print all env vars */
150 rcode = printenv(NULL, 1);
151 if (rcode < 0)
152 return 1;
153 printf("\nEnvironment size: %d/%ld bytes\n",
154 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000155 return 0;
156 }
157
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400158 /* print selected env vars */
159 for (i = 1; i < argc; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000160 char *name = argv[i];
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400161 if (printenv(name, 2)) {
162 printf("## Error: \"%s\" not defined\n", name);
163 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000164 }
165 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400166
wdenka68d3ed2002-10-11 08:38:32 +0000167 return rcode;
168}
169
170/************************************************************************
171 * Set a new environment variable,
172 * or replace or delete an existing one.
173 *
174 * This function will ONLY work with a in-RAM copy of the environment
175 */
176
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200177int _do_setenv (int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000178{
wdenka68d3ed2002-10-11 08:38:32 +0000179 int i, len, oldval;
180 int console = -1;
181 uchar *env, *nxt = NULL;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200182 char *name;
wdenka68d3ed2002-10-11 08:38:32 +0000183 bd_t *bd = gd->bd;
184
185 uchar *env_data = env_get_addr(0);
186
187 if (!env_data) /* need copy in RAM */
188 return 1;
189
190 name = argv[1];
191
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200192 if (strchr(name, '=')) {
193 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
194 return 1;
195 }
196
Heiko Schocher2f70c492009-02-10 09:38:52 +0100197 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000198 /*
199 * search if variable with this name already exists
200 */
201 oldval = -1;
202 for (env=env_data; *env; env=nxt+1) {
203 for (nxt=env; *nxt; ++nxt)
204 ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200205 if ((oldval = envmatch((uchar *)name, env-env_data)) >= 0)
wdenka68d3ed2002-10-11 08:38:32 +0000206 break;
207 }
208
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200209 /* 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
224#ifdef CONFIG_CONSOLE_MUX
225 i = iomux_doenv(console, argv[2]);
226 if (i)
227 return i;
228#else
229 /* Try assigning specified device */
230 if (console_assign (console, argv[2]) < 0)
231 return 1;
232
233#ifdef CONFIG_SERIAL_MULTI
234 if (serial_assign (argv[2]) < 0)
235 return 1;
236#endif
237#endif /* CONFIG_CONSOLE_MUX */
238 }
239
wdenka68d3ed2002-10-11 08:38:32 +0000240 /*
241 * Delete any existing definition
242 */
243 if (oldval >= 0) {
244#ifndef CONFIG_ENV_OVERWRITE
245
246 /*
stroese05875972003-04-04 15:44:49 +0000247 * Ethernet Address and serial# can be set only once,
248 * ver is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000249 */
Steven A. Falcof6a69552008-06-12 13:24:42 -0400250 if (
Steven A. Falcof6a69552008-06-12 13:24:42 -0400251 (strcmp (name, "serial#") == 0) ||
wdenka68d3ed2002-10-11 08:38:32 +0000252 ((strcmp (name, "ethaddr") == 0)
253#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200254 && (strcmp ((char *)env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
wdenka68d3ed2002-10-11 08:38:32 +0000255#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
256 ) ) {
257 printf ("Can't overwrite \"%s\"\n", name);
258 return 1;
259 }
260#endif
261
wdenka68d3ed2002-10-11 08:38:32 +0000262 /*
263 * Switch to new baudrate if new baudrate is supported
264 */
265 if (strcmp(argv[1],"baudrate") == 0) {
266 int baudrate = simple_strtoul(argv[2], NULL, 10);
267 int i;
268 for (i=0; i<N_BAUDRATES; ++i) {
269 if (baudrate == baudrate_table[i])
270 break;
271 }
272 if (i == N_BAUDRATES) {
273 printf ("## Baudrate %d bps not supported\n",
274 baudrate);
275 return 1;
276 }
277 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
278 baudrate);
279 udelay(50000);
280 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100281#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000282 gd->bd->bi_baudrate = baudrate;
283#endif
284
wdenka68d3ed2002-10-11 08:38:32 +0000285 serial_setbrg ();
286 udelay(50000);
287 for (;;) {
288 if (getc() == '\r')
289 break;
290 }
291 }
292
293 if (*++nxt == '\0') {
294 if (env > env_data) {
295 env--;
296 } else {
297 *env = '\0';
298 }
299 } else {
300 for (;;) {
301 *env = *nxt++;
302 if ((*env == '\0') && (*nxt == '\0'))
303 break;
304 ++env;
305 }
306 }
307 *++env = '\0';
308 }
309
wdenka68d3ed2002-10-11 08:38:32 +0000310 /* Delete only ? */
311 if ((argc < 3) || argv[2] == NULL) {
312 env_crc_update ();
313 return 0;
314 }
315
316 /*
317 * Append new definition at the end
318 */
319 for (env=env_data; *env || *(env+1); ++env)
320 ;
321 if (env > env_data)
322 ++env;
323 /*
324 * Overflow when:
325 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
326 */
327 len = strlen(name) + 2;
328 /* add '=' for first arg, ' ' for all others */
329 for (i=2; i<argc; ++i) {
330 len += strlen(argv[i]) + 1;
331 }
332 if (len > (&env_data[ENV_SIZE]-env)) {
333 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
334 return 1;
335 }
336 while ((*env = *name++) != '\0')
337 env++;
338 for (i=2; i<argc; ++i) {
339 char *val = argv[i];
340
341 *env = (i==2) ? '=' : ' ';
342 while ((*++env = *val++) != '\0')
343 ;
344 }
345
346 /* end is marked with double '\0' */
347 *++env = '\0';
348
349 /* Update CRC */
350 env_crc_update ();
351
352 /*
353 * Some variables should be updated when the corresponding
354 * entry in the enviornment is changed
355 */
356
Mike Frysinger56b555a2009-02-11 18:52:38 -0500357 if (strcmp(argv[1],"ethaddr") == 0)
wdenka68d3ed2002-10-11 08:38:32 +0000358 return 0;
wdenka68d3ed2002-10-11 08:38:32 +0000359
360 if (strcmp(argv[1],"ipaddr") == 0) {
361 char *s = argv[2]; /* always use only one arg */
362 char *e;
363 unsigned long addr;
364 bd->bi_ip_addr = 0;
365 for (addr=0, i=0; i<4; ++i) {
366 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
367 addr <<= 8;
368 addr |= (val & 0xFF);
369 if (s) s = (*e) ? e+1 : e;
370 }
371 bd->bi_ip_addr = htonl(addr);
372 return 0;
373 }
374 if (strcmp(argv[1],"loadaddr") == 0) {
375 load_addr = simple_strtoul(argv[2], NULL, 16);
376 return 0;
377 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500378#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +0000379 if (strcmp(argv[1],"bootfile") == 0) {
380 copy_filename (BootFile, argv[2], sizeof(BootFile));
381 return 0;
382 }
Jon Loeliger90253172007-07-10 11:02:44 -0500383#endif
wdenka68d3ed2002-10-11 08:38:32 +0000384 return 0;
385}
386
Steven A. Falco75678c82008-06-12 13:22:12 -0400387int setenv (char *varname, char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000388{
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200389 char * const argv[4] = { "setenv", varname, varvalue, NULL };
Peter Tyserb0fa8e52009-10-25 15:12:55 -0500390 if ((varvalue == NULL) || (varvalue[0] == '\0'))
Steven A. Falco75678c82008-06-12 13:22:12 -0400391 return _do_setenv (0, 2, argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200392 else
Steven A. Falco75678c82008-06-12 13:22:12 -0400393 return _do_setenv (0, 3, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000394}
395
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200396int do_setenv (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000397{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200398 if (argc < 2)
399 return cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000400
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)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200409int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000410{
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
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200422 if (argc < 2)
423 return cmd_usage(cmdtp);
424
wdenka68d3ed2002-10-11 08:38:32 +0000425 /* Check the syntax */
426 switch (argc) {
427 case 1:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200428 return cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000429
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/************************************************************************
Peter Tyser246c6922009-10-25 15:12:56 -0500481 * Interactively edit an environment variable
482 */
483#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200484int do_editenv(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500485{
486 char buffer[CONFIG_SYS_CBSIZE];
487 char *init_val;
488 int len;
489
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200490 if (argc < 2)
491 return cmd_usage(cmdtp);
Peter Tyser246c6922009-10-25 15:12:56 -0500492
493 /* Set read buffer to initial value or empty sting */
494 init_val = getenv(argv[1]);
495 if (init_val)
496 len = sprintf(buffer, "%s", init_val);
497 else
498 buffer[0] = '\0';
499
500 readline_into_buffer("edit: ", buffer);
501
502 return setenv(argv[1], buffer);
503}
504#endif /* CONFIG_CMD_EDITENV */
505
506/************************************************************************
wdenka68d3ed2002-10-11 08:38:32 +0000507 * Look up variable from environment,
508 * return address of storage for that variable,
509 * or NULL if not found
510 */
511
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200512char *getenv (char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000513{
514 int i, nxt;
515
wdenk2a3cb022002-11-05 21:01:48 +0000516 WATCHDOG_RESET();
517
wdenka68d3ed2002-10-11 08:38:32 +0000518 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
519 int val;
520
521 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200522 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000523 return (NULL);
524 }
525 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200526 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000527 continue;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200528 return ((char *)env_get_addr(val));
wdenka68d3ed2002-10-11 08:38:32 +0000529 }
530
531 return (NULL);
532}
533
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200534int getenv_f(char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000535{
536 int i, nxt;
537
538 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
539 int val, n;
540
541 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200542 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000543 return (-1);
544 }
545 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200546 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000547 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200548
wdenka68d3ed2002-10-11 08:38:32 +0000549 /* found; copy out */
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200550 for (n=0; n<len; ++n, ++buf) {
551 if ((*buf = env_get_char(val++)) == '\0')
552 return n;
553 }
554
555 if (n)
556 *--buf = '\0';
557
558 printf("env_buf too small [%d]\n", len);
559
560 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000561 }
562 return (-1);
563}
564
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500565#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Mike Frysingerba69dc22008-12-30 02:59:25 -0500566
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200567int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000568{
569 extern char * env_name_spec;
570
571 printf ("Saving Environment to %s...\n", env_name_spec);
572
573 return (saveenv() ? 1 : 0);
574}
wdenk8bde7f72003-06-27 21:31:46 +0000575
Mike Frysingerba69dc22008-12-30 02:59:25 -0500576U_BOOT_CMD(
577 saveenv, 1, 0, do_saveenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600578 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200579 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500580);
581
wdenka68d3ed2002-10-11 08:38:32 +0000582#endif
583
584
585/************************************************************************
586 * Match a name / name=value pair
587 *
588 * s1 is either a simple 'name', or a 'name=value' pair.
589 * i2 is the environment index for a 'name2=value2' pair.
590 * If the names match, return the index for the value2, else NULL.
591 */
592
Rafal Jaworowski26a41792008-01-09 18:05:27 +0100593int envmatch (uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000594{
595
596 while (*s1 == env_get_char(i2++))
597 if (*s1++ == '=')
598 return(i2);
599 if (*s1 == '\0' && env_get_char(i2-1) == '=')
600 return(i2);
601 return(-1);
602}
wdenk8bde7f72003-06-27 21:31:46 +0000603
604
605/**************************************************/
606
Peter Tyser246c6922009-10-25 15:12:56 -0500607#if defined(CONFIG_CMD_EDITENV)
608U_BOOT_CMD(
609 editenv, 2, 0, do_editenv,
610 "edit environment variable",
611 "name\n"
612 " - edit environment variable 'name'"
613);
614#endif
615
wdenk0d498392003-07-01 21:06:45 +0000616U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200617 printenv, CONFIG_SYS_MAXARGS, 1, do_printenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600618 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000619 "\n - print values of all environment variables\n"
620 "printenv name ...\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200621 " - print value of environment variable 'name'"
wdenk8bde7f72003-06-27 21:31:46 +0000622);
623
wdenk0d498392003-07-01 21:06:45 +0000624U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200625 setenv, CONFIG_SYS_MAXARGS, 0, do_setenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600626 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000627 "name value ...\n"
628 " - set environment variable 'name' to 'value ...'\n"
629 "setenv name\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200630 " - delete environment variable 'name'"
wdenk8bde7f72003-06-27 21:31:46 +0000631);
632
Jon Loeligerc76fe472007-07-08 18:02:23 -0500633#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +0000634
wdenk0d498392003-07-01 21:06:45 +0000635U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200636 askenv, CONFIG_SYS_MAXARGS, 1, do_askenv,
Peter Tyser2fb26042009-01-27 18:03:12 -0600637 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +0000638 "name [message] [size]\n"
639 " - get environment variable 'name' from stdin (max 'size' chars)\n"
640 "askenv name\n"
641 " - get environment variable 'name' from stdin\n"
642 "askenv name size\n"
643 " - get environment variable 'name' from stdin (max 'size' chars)\n"
644 "askenv name [message] size\n"
645 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200646 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +0000647);
Jon Loeliger90253172007-07-10 11:02:44 -0500648#endif
wdenk8bde7f72003-06-27 21:31:46 +0000649
Jon Loeligerc76fe472007-07-08 18:02:23 -0500650#if defined(CONFIG_CMD_RUN)
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200651int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk0d498392003-07-01 21:06:45 +0000652U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200653 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -0600654 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +0000655 "var [...]\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200656 " - run the commands in the environment variable(s) 'var'"
wdenk8bde7f72003-06-27 21:31:46 +0000657);
Jon Loeliger90253172007-07-10 11:02:44 -0500658#endif