blob: 204a0945ede044583815f8a7ec715fe2e0e4fb20 [file] [log] [blame]
wdenka68d3ed2002-10-11 08:38:32 +00001/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02002 * (C) Copyright 2000-2010
wdenka68d3ed2002-10-11 08:38:32 +00003 * 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
Wolfgang Denkea882ba2010-06-20 23:33:59 +020027/*
wdenka68d3ed2002-10-11 08:38:32 +000028 * Support for persistent environment data
29 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020030 * The "environment" is stored on external storage as a list of '\0'
31 * terminated "name=value" strings. The end of the list is marked by
32 * a double '\0'. The environment is preceeded by a 32 bit CRC over
33 * the data part and, in case of redundant environment, a byte of
34 * flags.
wdenka68d3ed2002-10-11 08:38:32 +000035 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020036 * This linearized representation will also be used before
37 * relocation, i. e. as long as we don't have a full C runtime
38 * environment. After that, we use a hash table.
wdenka68d3ed2002-10-11 08:38:32 +000039 */
40
41#include <common.h>
42#include <command.h>
43#include <environment.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020044#include <search.h>
45#include <errno.h>
Peter Tyser246c6922009-10-25 15:12:56 -050046#include <malloc.h>
wdenk2a3cb022002-11-05 21:01:48 +000047#include <watchdog.h>
wdenk281e00a2004-08-01 22:48:16 +000048#include <serial.h>
wdenka68d3ed2002-10-11 08:38:32 +000049#include <linux/stddef.h>
50#include <asm/byteorder.h>
Jon Loeligerc76fe472007-07-08 18:02:23 -050051#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +000052#include <net.h>
53#endif
54
Wolfgang Denkd87080b2006-03-31 18:32:53 +020055DECLARE_GLOBAL_DATA_PTR;
56
unsik Kim75eb82e2009-02-25 11:31:24 +090057#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +020058 !defined(CONFIG_ENV_IS_IN_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD057c8492008-09-10 22:47:58 +020059 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
unsik Kim75eb82e2009-02-25 11:31:24 +090060 !defined(CONFIG_ENV_IS_IN_MG_DISK) && \
Terry Lva8060352010-05-17 10:57:01 +080061 !defined(CONFIG_ENV_IS_IN_MMC) && \
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +020062 !defined(CONFIG_ENV_IS_IN_NAND) && \
unsik Kim75eb82e2009-02-25 11:31:24 +090063 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
Jean-Christophe PLAGNIOL-VILLARD96561382008-09-10 22:47:59 +020064 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
Jean-Christophe PLAGNIOL-VILLARD0b5099a2008-09-10 22:48:00 +020065 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Jean-Christophe PLAGNIOL-VILLARD93f6d722008-09-10 22:48:00 +020066 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090067# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Terry Lva8060352010-05-17 10:57:01 +080068SPI_FLASH|MG_DISK|NVRAM|MMC|NOWHERE}
wdenka68d3ed2002-10-11 08:38:32 +000069#endif
70
71#define XMK_STR(x) #x
72#define MK_STR(x) XMK_STR(x)
73
Wolfgang Denkea882ba2010-06-20 23:33:59 +020074/*
75 * Maximum expected input data size for import command
76 */
77#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000078
Mike Frysinger558605c2010-12-21 14:08:27 -050079ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
80
wdenka68d3ed2002-10-11 08:38:32 +000081/*
82 * Table with supported baudrates (defined in config_xyz.h)
83 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000085#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
86
Heiko Schocherda954272009-04-28 08:36:11 +020087/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020088 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020089 * be used via get_env_id() as an indication, if the environment
90 * has changed or not. So it is possible to reread an environment
91 * variable only if the environment was changed ... done so for
92 * example in NetInitLoop()
93 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010094static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000095
Heiko Schocher2f70c492009-02-10 09:38:52 +010096int get_env_id (void)
97{
98 return env_id;
99}
wdenka68d3ed2002-10-11 08:38:32 +0000100
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400101/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200102 * Command interface: print one or all environment variables
103 *
104 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400105 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200106static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000107{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200108 char *res = NULL;
109 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000110
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200111 if (name) { /* print a single name */
112 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000113
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200114 e.key = name;
115 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500116 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200117 if (ep == NULL)
118 return 0;
119 len = printf ("%s=%s\n", ep->key, ep->data);
120 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400121 }
wdenka68d3ed2002-10-11 08:38:32 +0000122
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200123 /* print whole list */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500124 len = hexport_r(&env_htab, '\n', &res, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200125
126 if (len > 0) {
127 puts(res);
128 free(res);
129 return len;
130 }
131
132 /* should never happen */
133 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400134}
135
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200136int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400137{
138 int i;
139 int rcode = 0;
140
141 if (argc == 1) {
142 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200143 rcode = env_print(NULL);
144 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400145 return 1;
146 printf("\nEnvironment size: %d/%ld bytes\n",
147 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000148 return 0;
149 }
150
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400151 /* print selected env vars */
152 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200153 int rc = env_print(argv[i]);
154 if (!rc) {
155 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400156 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000157 }
158 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400159
wdenka68d3ed2002-10-11 08:38:32 +0000160 return rcode;
161}
162
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200163/*
wdenka68d3ed2002-10-11 08:38:32 +0000164 * Set a new environment variable,
165 * or replace or delete an existing one.
wdenka68d3ed2002-10-11 08:38:32 +0000166 */
167
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200168int _do_env_set (int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000169{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200170 bd_t *bd = gd->bd;
171 int i, len;
wdenka68d3ed2002-10-11 08:38:32 +0000172 int console = -1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200173 char *name, *value, *s;
174 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000175
176 name = argv[1];
177
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200178 if (strchr(name, '=')) {
179 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
180 return 1;
181 }
182
Heiko Schocher2f70c492009-02-10 09:38:52 +0100183 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000184 /*
185 * search if variable with this name already exists
186 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200187 e.key = name;
188 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500189 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000190
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200191 /* Check for console redirection */
192 if (strcmp(name,"stdin") == 0) {
193 console = stdin;
194 } else if (strcmp(name,"stdout") == 0) {
195 console = stdout;
196 } else if (strcmp(name,"stderr") == 0) {
197 console = stderr;
198 }
199
200 if (console != -1) {
201 if (argc < 3) { /* Cannot delete it! */
202 printf("Can't delete \"%s\"\n", name);
203 return 1;
204 }
205
206#ifdef CONFIG_CONSOLE_MUX
207 i = iomux_doenv(console, argv[2]);
208 if (i)
209 return i;
210#else
211 /* Try assigning specified device */
212 if (console_assign (console, argv[2]) < 0)
213 return 1;
214
215#ifdef CONFIG_SERIAL_MULTI
216 if (serial_assign (argv[2]) < 0)
217 return 1;
218#endif
219#endif /* CONFIG_CONSOLE_MUX */
220 }
221
wdenka68d3ed2002-10-11 08:38:32 +0000222 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200223 * Some variables like "ethaddr" and "serial#" can be set only
224 * once and cannot be deleted; also, "ver" is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000225 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200226 if (ep) { /* variable exists */
wdenka68d3ed2002-10-11 08:38:32 +0000227#ifndef CONFIG_ENV_OVERWRITE
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200228 if ((strcmp (name, "serial#") == 0) ||
wdenka68d3ed2002-10-11 08:38:32 +0000229 ((strcmp (name, "ethaddr") == 0)
230#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200231 && (strcmp (ep->data,MK_STR(CONFIG_ETHADDR)) != 0)
wdenka68d3ed2002-10-11 08:38:32 +0000232#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
233 ) ) {
234 printf ("Can't overwrite \"%s\"\n", name);
235 return 1;
236 }
237#endif
wdenka68d3ed2002-10-11 08:38:32 +0000238 /*
239 * Switch to new baudrate if new baudrate is supported
240 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200241 if (strcmp(name,"baudrate") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000242 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 }
wdenka68d3ed2002-10-11 08:38:32 +0000268 }
269
wdenka68d3ed2002-10-11 08:38:32 +0000270 /* Delete only ? */
271 if ((argc < 3) || argv[2] == NULL) {
Mike Frysinger2eb15732010-12-08 06:26:04 -0500272 int rc = hdelete_r(name, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200273 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000274 }
275
276 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200277 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000278 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200279 for (i=2,len=0; i<argc; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000280 len += strlen(argv[i]) + 1;
281 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200282 if ((value = malloc(len)) == NULL) {
283 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000284 return 1;
285 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200286 for (i=2,s=value; i<argc; ++i) {
287 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000288
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200289 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000290 ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200291 *(s-1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000292 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200293 if (s != value)
294 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000295
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200296 e.key = name;
297 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500298 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200299 free(value);
300 if (!ep) {
301 printf("## Error inserting \"%s\" variable, errno=%d\n",
302 name, errno);
303 return 1;
304 }
wdenka68d3ed2002-10-11 08:38:32 +0000305
306 /*
307 * Some variables should be updated when the corresponding
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200308 * entry in the environment is changed
wdenka68d3ed2002-10-11 08:38:32 +0000309 */
310
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200311 if (strcmp(name,"ipaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000312 char *s = argv[2]; /* always use only one arg */
313 char *e;
314 unsigned long addr;
315 bd->bi_ip_addr = 0;
316 for (addr=0, i=0; i<4; ++i) {
317 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
318 addr <<= 8;
319 addr |= (val & 0xFF);
320 if (s) s = (*e) ? e+1 : e;
321 }
322 bd->bi_ip_addr = htonl(addr);
323 return 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200324 } else if (strcmp(argv[1],"loadaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000325 load_addr = simple_strtoul(argv[2], NULL, 16);
326 return 0;
327 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500328#if defined(CONFIG_CMD_NET)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200329 else if (strcmp(argv[1],"bootfile") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000330 copy_filename (BootFile, argv[2], sizeof(BootFile));
331 return 0;
332 }
Jon Loeliger90253172007-07-10 11:02:44 -0500333#endif
wdenka68d3ed2002-10-11 08:38:32 +0000334 return 0;
335}
336
Steven A. Falco75678c82008-06-12 13:22:12 -0400337int setenv (char *varname, char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000338{
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200339 char * const argv[4] = { "setenv", varname, varvalue, NULL };
Peter Tyserb0fa8e52009-10-25 15:12:55 -0500340 if ((varvalue == NULL) || (varvalue[0] == '\0'))
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200341 return _do_env_set(0, 2, argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200342 else
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200343 return _do_env_set(0, 3, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000344}
345
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200346int do_env_set (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000347{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200348 if (argc < 2)
349 return cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000350
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200351 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000352}
353
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200354/*
wdenka68d3ed2002-10-11 08:38:32 +0000355 * Prompt for environment variable
356 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500357#if defined(CONFIG_CMD_ASKENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200358int do_env_ask ( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000359{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200360 extern char console_buffer[CONFIG_SYS_CBSIZE];
361 char message[CONFIG_SYS_CBSIZE];
362 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200363 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000364 char *local_args[4];
365
366 local_args[0] = argv[0];
367 local_args[1] = argv[1];
368 local_args[2] = NULL;
369 local_args[3] = NULL;
370
wdenka68d3ed2002-10-11 08:38:32 +0000371 /* Check the syntax */
372 switch (argc) {
373 case 1:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200374 return cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000375
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200376 case 2: /* env_ask envname */
377 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000378 break;
379
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200380 case 3: /* env_ask envname size */
381 sprintf(message, "Please enter '%s':", argv[1]);
382 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000383 break;
384
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200385 default: /* env_ask envname message1 ... messagen size */
386 for (i=2,pos=0; i < argc - 1; i++) {
wdenka68d3ed2002-10-11 08:38:32 +0000387 if (pos) {
388 message[pos++] = ' ';
389 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200390 strcpy(message+pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000391 pos += strlen(argv[i]);
392 }
393 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200394 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000395 break;
396 }
397
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200398 if (size >= CONFIG_SYS_CBSIZE)
399 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000400
401 if (size <= 0)
402 return 1;
403
404 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200405 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000406
407 if (size < len)
408 console_buffer[size] = '\0';
409
410 len = 2;
411 if (console_buffer[0] != '\0') {
412 local_args[2] = console_buffer;
413 len = 3;
414 }
415
416 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200417 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000418}
Jon Loeliger90253172007-07-10 11:02:44 -0500419#endif
wdenka68d3ed2002-10-11 08:38:32 +0000420
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200421/*
Peter Tyser246c6922009-10-25 15:12:56 -0500422 * Interactively edit an environment variable
423 */
424#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200425int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500426{
427 char buffer[CONFIG_SYS_CBSIZE];
428 char *init_val;
429 int len;
430
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200431 if (argc < 2)
432 return cmd_usage(cmdtp);
Peter Tyser246c6922009-10-25 15:12:56 -0500433
434 /* Set read buffer to initial value or empty sting */
435 init_val = getenv(argv[1]);
436 if (init_val)
437 len = sprintf(buffer, "%s", init_val);
438 else
439 buffer[0] = '\0';
440
441 readline_into_buffer("edit: ", buffer);
442
443 return setenv(argv[1], buffer);
444}
445#endif /* CONFIG_CMD_EDITENV */
446
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200447/*
wdenka68d3ed2002-10-11 08:38:32 +0000448 * Look up variable from environment,
449 * return address of storage for that variable,
450 * or NULL if not found
451 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200452char *getenv (char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000453{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200454 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
455 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000456
Wolfgang Denk91a76752010-07-24 20:22:02 +0200457 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000458
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200459 e.key = name;
460 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500461 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000462
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200463 return (ep ? ep->data : NULL);
wdenka68d3ed2002-10-11 08:38:32 +0000464 }
465
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200466 /* restricted capabilities before import */
Wolfgang Denk91a76752010-07-24 20:22:02 +0200467
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200468 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
469 return (char *)(gd->env_buf);
470
471 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000472}
473
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200474/*
475 * Look up variable from environment for restricted C runtime env.
476 */
477int getenv_f (char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000478{
479 int i, nxt;
480
481 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
482 int val, n;
483
484 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200485 if (nxt >= CONFIG_ENV_SIZE) {
wdenka68d3ed2002-10-11 08:38:32 +0000486 return (-1);
487 }
488 }
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200489 if ((val=envmatch((uchar *)name, i)) < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000490 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200491
wdenka68d3ed2002-10-11 08:38:32 +0000492 /* found; copy out */
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200493 for (n=0; n<len; ++n, ++buf) {
494 if ((*buf = env_get_char(val++)) == '\0')
495 return n;
496 }
497
498 if (n)
499 *--buf = '\0';
500
501 printf("env_buf too small [%d]\n", len);
502
503 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000504 }
505 return (-1);
506}
507
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500508#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Mike Frysingerba69dc22008-12-30 02:59:25 -0500509
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200510int do_env_save (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000511{
512 extern char * env_name_spec;
513
514 printf ("Saving Environment to %s...\n", env_name_spec);
515
516 return (saveenv() ? 1 : 0);
517}
wdenk8bde7f72003-06-27 21:31:46 +0000518
Mike Frysingerba69dc22008-12-30 02:59:25 -0500519U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200520 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600521 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200522 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500523);
524
wdenka68d3ed2002-10-11 08:38:32 +0000525#endif
526
527
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200528/*
wdenka68d3ed2002-10-11 08:38:32 +0000529 * Match a name / name=value pair
530 *
531 * s1 is either a simple 'name', or a 'name=value' pair.
532 * i2 is the environment index for a 'name2=value2' pair.
533 * If the names match, return the index for the value2, else NULL.
534 */
535
Rafal Jaworowski26a41792008-01-09 18:05:27 +0100536int envmatch (uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000537{
538
539 while (*s1 == env_get_char(i2++))
540 if (*s1++ == '=')
541 return(i2);
542 if (*s1 == '\0' && env_get_char(i2-1) == '=')
543 return(i2);
544 return(-1);
545}
wdenk8bde7f72003-06-27 21:31:46 +0000546
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200547static int do_env_default(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
548{
549 if ((argc != 2) || (strcmp(argv[1], "-f") != 0)) {
Thomas Weber0d302af2010-11-25 08:05:28 +0100550 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200551 }
552 set_default_env("## Resetting to default environment\n");
553 return 0;
554}
wdenk8bde7f72003-06-27 21:31:46 +0000555
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200556static int do_env_delete(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
557{
558 printf("Not implemented yet\n");
559 return 0;
560}
561
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500562#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200563/*
564 * env export [-t | -b | -c] addr [size]
565 * -t: export as text format; if size is given, data will be
566 * padded with '\0' bytes; if not, one terminating '\0'
567 * will be added (which is included in the "filesize"
568 * setting so you can for exmple copy this to flash and
569 * keep the termination).
570 * -b: export as binary format (name=value pairs separated by
571 * '\0', list end marked by double "\0\0")
572 * -c: export as checksum protected environment format as
573 * used for example by "saveenv" command
574 * addr: memory address where environment gets stored
575 * size: size of output buffer
576 *
577 * With "-c" and size is NOT given, then the export command will
578 * format the data as currently used for the persistent storage,
579 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
580 * prepend a valid CRC32 checksum and, in case of resundant
581 * environment, a "current" redundancy flag. If size is given, this
582 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
583 * checksum and redundancy flag will be inserted.
584 *
585 * With "-b" and "-t", always only the real data (including a
586 * terminating '\0' byte) will be written; here the optional size
587 * argument will be used to make sure not to overflow the user
588 * provided buffer; the command will abort if the size is not
589 * sufficient. Any remainign space will be '\0' padded.
590 *
591 * On successful return, the variable "filesize" will be set.
592 * Note that filesize includes the trailing/terminating '\0' byte(s).
593 *
594 * Usage szenario: create a text snapshot/backup of the current settings:
595 *
596 * => env export -t 100000
597 * => era ${backup_addr} +${filesize}
598 * => cp.b 100000 ${backup_addr} ${filesize}
599 *
600 * Re-import this snapshot, deleting all other settings:
601 *
602 * => env import -d -t ${backup_addr}
603 */
604static int do_env_export(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
605{
606 char buf[32];
607 char *addr, *cmd, *res;
608 size_t size;
609 ssize_t len;
610 env_t *envp;
611 char sep = '\n';
612 int chk = 0;
613 int fmt = 0;
614
615 cmd = *argv;
616
617 while (--argc > 0 && **++argv == '-') {
618 char *arg = *argv;
619 while (*++arg) {
620 switch (*arg) {
621 case 'b': /* raw binary format */
622 if (fmt++)
623 goto sep_err;
624 sep = '\0';
625 break;
626 case 'c': /* external checksum format */
627 if (fmt++)
628 goto sep_err;
629 sep = '\0';
630 chk = 1;
631 break;
632 case 't': /* text format */
633 if (fmt++)
634 goto sep_err;
635 sep = '\n';
636 break;
637 default:
Thomas Weber0d302af2010-11-25 08:05:28 +0100638 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200639 }
640 }
641 }
642
643 if (argc < 1) {
Thomas Weber0d302af2010-11-25 08:05:28 +0100644 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200645 }
646
647 addr = (char *)simple_strtoul(argv[0], NULL, 16);
648
649 if (argc == 2) {
650 size = simple_strtoul(argv[1], NULL, 16);
651 memset(addr, '\0', size);
652 } else {
653 size = 0;
654 }
655
656 if (sep) { /* export as text file */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500657 len = hexport_r(&env_htab, sep, &addr, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200658 if (len < 0) {
659 error("Cannot export environment: errno = %d\n",
660 errno);
661 return 1;
662 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100663 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200664 setenv("filesize", buf);
665
666 return 0;
667 }
668
669 envp = (env_t *)addr;
670
671 if (chk) /* export as checksum protected block */
672 res = (char *)envp->data;
673 else /* export as raw binary data */
674 res = addr;
675
Mike Frysinger2eb15732010-12-08 06:26:04 -0500676 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200677 if (len < 0) {
678 error("Cannot export environment: errno = %d\n",
679 errno);
680 return 1;
681 }
682
683 if (chk) {
684 envp->crc = crc32(0, envp->data, ENV_SIZE);
685#ifdef CONFIG_ENV_ADDR_REDUND
686 envp->flags = ACTIVE_FLAG;
687#endif
688 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100689 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t,data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200690 setenv("filesize", buf);
691
692 return 0;
693
694sep_err:
695 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
696 cmd);
697 return 1;
698}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500699#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200700
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500701#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200702/*
703 * env import [-d] [-t | -b | -c] addr [size]
704 * -d: delete existing environment before importing;
705 * otherwise overwrite / append to existion definitions
706 * -t: assume text format; either "size" must be given or the
707 * text data must be '\0' terminated
708 * -b: assume binary format ('\0' separated, "\0\0" terminated)
709 * -c: assume checksum protected environment format
710 * addr: memory address to read from
711 * size: length of input data; if missing, proper '\0'
712 * termination is mandatory
713 */
714static int do_env_import(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
715{
716 char *cmd, *addr;
717 char sep = '\n';
718 int chk = 0;
719 int fmt = 0;
720 int del = 0;
721 size_t size;
722
723 cmd = *argv;
724
725 while (--argc > 0 && **++argv == '-') {
726 char *arg = *argv;
727 while (*++arg) {
728 switch (*arg) {
729 case 'b': /* raw binary format */
730 if (fmt++)
731 goto sep_err;
732 sep = '\0';
733 break;
734 case 'c': /* external checksum format */
735 if (fmt++)
736 goto sep_err;
737 sep = '\0';
738 chk = 1;
739 break;
740 case 't': /* text format */
741 if (fmt++)
742 goto sep_err;
743 sep = '\n';
744 break;
745 case 'd':
746 del = 1;
747 break;
748 default:
Thomas Weber0d302af2010-11-25 08:05:28 +0100749 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200750 }
751 }
752 }
753
754 if (argc < 1) {
Thomas Weber0d302af2010-11-25 08:05:28 +0100755 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200756 }
757
758 if (!fmt)
759 printf("## Warning: defaulting to text format\n");
760
761 addr = (char *)simple_strtoul(argv[0], NULL, 16);
762
763 if (argc == 2) {
764 size = simple_strtoul(argv[1], NULL, 16);
765 } else {
766 char *s = addr;
767
768 size = 0;
769
770 while (size < MAX_ENV_SIZE) {
771 if ((*s == sep) && (*(s+1) == '\0'))
772 break;
773 ++s;
774 ++size;
775 }
776 if (size == MAX_ENV_SIZE) {
777 printf("## Warning: Input data exceeds %d bytes"
778 " - truncated\n", MAX_ENV_SIZE);
779 }
780 ++size;
781 printf("## Info: input data size = %zd = 0x%zX\n", size, size);
782 }
783
784 if (chk) {
785 uint32_t crc;
786 env_t *ep = (env_t *)addr;
787
788 size -= offsetof(env_t, data);
789 memcpy(&crc, &ep->crc, sizeof(crc));
790
791 if (crc32(0, ep->data, size) != crc) {
792 puts("## Error: bad CRC, import failed\n");
793 return 1;
794 }
795 addr = (char *)ep->data;
796 }
797
Mike Frysinger2eb15732010-12-08 06:26:04 -0500798 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200799 error("Environment import failed: errno = %d\n", errno);
800 return 1;
801 }
802 gd->flags |= GD_FLG_ENV_READY;
803
804 return 0;
805
806sep_err:
807 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
808 cmd);
809 return 1;
810}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500811#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200812
813#if defined(CONFIG_CMD_RUN)
814extern int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
815#endif
816
817/*
818 * New command line interface: "env" command with subcommands
819 */
820static cmd_tbl_t cmd_env_sub[] = {
821#if defined(CONFIG_CMD_ASKENV)
822 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
823#endif
824 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
825 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
826#if defined(CONFIG_CMD_EDITENV)
827 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
828#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500829#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200830 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500831#endif
832#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200833 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500834#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200835 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
836#if defined(CONFIG_CMD_RUN)
837 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
838#endif
839#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
840 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
841#endif
842 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
843};
844
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200845#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200846void env_reloc(void)
847{
848 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
849}
850#endif
851
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200852static int do_env (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
853{
854 cmd_tbl_t *cp;
855
Thomas Weber5904da02010-11-24 13:07:52 +0100856 if (argc < 2)
857 return cmd_usage(cmdtp);
858
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200859 /* drop initial "env" arg */
860 argc--;
861 argv++;
862
863 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
864
865 if (cp)
866 return cp->cmd(cmdtp, flag, argc, argv);
867
Thomas Weber0d302af2010-11-25 08:05:28 +0100868 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200869}
870
871U_BOOT_CMD(
872 env, CONFIG_SYS_MAXARGS, 1, do_env,
873 "environment handling commands",
874#if defined(CONFIG_CMD_ASKENV)
875 "ask name [message] [size] - ask for environment variable\nenv "
876#endif
877 "default -f - reset default environment\n"
878#if defined(CONFIG_CMD_EDITENV)
879 "env edit name - edit environment variable\n"
880#endif
881 "env export [-t | -b | -c] addr [size] - export environmnt\n"
882 "env import [-d] [-t | -b | -c] addr [size] - import environmnt\n"
883 "env print [name ...] - print environment\n"
884#if defined(CONFIG_CMD_RUN)
885 "env run var [...] - run commands in an environment variable\n"
886#endif
887 "env save - save environment\n"
888 "env set [-f] name [arg ...]\n"
889);
890
891/*
892 * Old command line interface, kept for compatibility
893 */
wdenk8bde7f72003-06-27 21:31:46 +0000894
Peter Tyser246c6922009-10-25 15:12:56 -0500895#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400896U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200897 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500898 "edit environment variable",
899 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400900 " - edit environment variable 'name'",
901 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500902);
903#endif
904
Mike Frysinger722b0612010-10-20 03:52:39 -0400905U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200906 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -0600907 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000908 "\n - print values of all environment variables\n"
909 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400910 " - print value of environment variable 'name'",
911 var_complete
wdenk8bde7f72003-06-27 21:31:46 +0000912);
913
Mike Frysinger722b0612010-10-20 03:52:39 -0400914U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200915 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -0600916 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000917 "name value ...\n"
918 " - set environment variable 'name' to 'value ...'\n"
919 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400920 " - delete environment variable 'name'",
921 var_complete
wdenk8bde7f72003-06-27 21:31:46 +0000922);
923
Jon Loeligerc76fe472007-07-08 18:02:23 -0500924#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +0000925
wdenk0d498392003-07-01 21:06:45 +0000926U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200927 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -0600928 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +0000929 "name [message] [size]\n"
930 " - get environment variable 'name' from stdin (max 'size' chars)\n"
931 "askenv name\n"
932 " - get environment variable 'name' from stdin\n"
933 "askenv name size\n"
934 " - get environment variable 'name' from stdin (max 'size' chars)\n"
935 "askenv name [message] size\n"
936 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200937 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +0000938);
Jon Loeliger90253172007-07-10 11:02:44 -0500939#endif
wdenk8bde7f72003-06-27 21:31:46 +0000940
Jon Loeligerc76fe472007-07-08 18:02:23 -0500941#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -0400942U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200943 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -0600944 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +0000945 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400946 " - run the commands in the environment variable(s) 'var'",
947 var_complete
wdenk8bde7f72003-06-27 21:31:46 +0000948);
Jon Loeliger90253172007-07-10 11:02:44 -0500949#endif