blob: 855808c3e4a4d58bc3437da32725a3b725face01 [file] [log] [blame]
wdenka68d3ed2002-10-11 08:38:32 +00001/*
Wolfgang Denkea009d42013-03-23 23:50:28 +00002 * (C) Copyright 2000-2013
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>
Kim Phillipsa000b792011-04-05 07:15:14 +00007 *
8 * Copyright 2011 Freescale Semiconductor, Inc.
9 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020010 * SPDX-License-Identifier: GPL-2.0+
wdenka68d3ed2002-10-11 08:38:32 +000011 */
12
Wolfgang Denkea882ba2010-06-20 23:33:59 +020013/*
wdenka68d3ed2002-10-11 08:38:32 +000014 * Support for persistent environment data
15 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020016 * The "environment" is stored on external storage as a list of '\0'
17 * terminated "name=value" strings. The end of the list is marked by
18 * a double '\0'. The environment is preceeded by a 32 bit CRC over
19 * the data part and, in case of redundant environment, a byte of
20 * flags.
wdenka68d3ed2002-10-11 08:38:32 +000021 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020022 * This linearized representation will also be used before
23 * relocation, i. e. as long as we don't have a full C runtime
24 * environment. After that, we use a hash table.
wdenka68d3ed2002-10-11 08:38:32 +000025 */
26
27#include <common.h>
Simon Glass18d66532014-04-10 20:01:25 -060028#include <cli.h>
wdenka68d3ed2002-10-11 08:38:32 +000029#include <command.h>
30#include <environment.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020031#include <search.h>
32#include <errno.h>
Peter Tyser246c6922009-10-25 15:12:56 -050033#include <malloc.h>
wdenk2a3cb022002-11-05 21:01:48 +000034#include <watchdog.h>
wdenka68d3ed2002-10-11 08:38:32 +000035#include <linux/stddef.h>
36#include <asm/byteorder.h>
Simon Glassfd37dac2013-10-25 23:01:31 -060037#include <asm/io.h>
wdenka68d3ed2002-10-11 08:38:32 +000038
Wolfgang Denkd87080b2006-03-31 18:32:53 +020039DECLARE_GLOBAL_DATA_PTR;
40
Macpaul Linf3c615b2011-04-26 16:16:45 +000041#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
42 !defined(CONFIG_ENV_IS_IN_FLASH) && \
43 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000044 !defined(CONFIG_ENV_IS_IN_MMC) && \
Maximilian Schwerin57210c72012-03-12 23:57:50 +000045 !defined(CONFIG_ENV_IS_IN_FAT) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000046 !defined(CONFIG_ENV_IS_IN_NAND) && \
47 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
48 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
49 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Liu Gang0a85a9e2012-03-08 00:33:20 +000050 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
Joe Hershberger2b744332013-04-08 10:32:51 +000051 !defined(CONFIG_ENV_IS_IN_UBI) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000052 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090053# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Joe Hershberger2b744332013-04-08 10:32:51 +000054SPI_FLASH|NVRAM|MMC|FAT|REMOTE|UBI} or CONFIG_ENV_IS_NOWHERE
wdenka68d3ed2002-10-11 08:38:32 +000055#endif
56
Wolfgang Denkea882ba2010-06-20 23:33:59 +020057/*
58 * Maximum expected input data size for import command
59 */
60#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000061
wdenka68d3ed2002-10-11 08:38:32 +000062/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020063 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020064 * be used via get_env_id() as an indication, if the environment
65 * has changed or not. So it is possible to reread an environment
66 * variable only if the environment was changed ... done so for
67 * example in NetInitLoop()
68 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010069static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000070
Macpaul Linf3c615b2011-04-26 16:16:45 +000071int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +010072{
73 return env_id;
74}
wdenka68d3ed2002-10-11 08:38:32 +000075
Ilya Yanok7ac2fe22012-09-18 00:22:50 +000076#ifndef CONFIG_SPL_BUILD
Mike Frysinger4c94f6c2009-05-24 02:26:19 -040077/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020078 * Command interface: print one or all environment variables
79 *
80 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -040081 */
Joe Hershbergerbe112352012-12-11 22:16:23 -060082static int env_print(char *name, int flag)
wdenka68d3ed2002-10-11 08:38:32 +000083{
Wolfgang Denkea882ba2010-06-20 23:33:59 +020084 char *res = NULL;
Maxime Larocque22a4a6c2012-09-28 05:00:13 +000085 ssize_t len;
wdenka68d3ed2002-10-11 08:38:32 +000086
Wolfgang Denkea882ba2010-06-20 23:33:59 +020087 if (name) { /* print a single name */
88 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +000089
Wolfgang Denkea882ba2010-06-20 23:33:59 +020090 e.key = name;
91 e.data = NULL;
Joe Hershbergerbe112352012-12-11 22:16:23 -060092 hsearch_r(e, FIND, &ep, &env_htab, flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +020093 if (ep == NULL)
94 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +000095 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +020096 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -040097 }
wdenka68d3ed2002-10-11 08:38:32 +000098
Wolfgang Denkea882ba2010-06-20 23:33:59 +020099 /* print whole list */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600100 len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200101
102 if (len > 0) {
103 puts(res);
104 free(res);
105 return len;
106 }
107
108 /* should never happen */
Maxime Larocque22a4a6c2012-09-28 05:00:13 +0000109 printf("## Error: cannot export environment\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200110 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400111}
112
Kim Phillips088f1b12012-10-29 13:34:31 +0000113static int do_env_print(cmd_tbl_t *cmdtp, int flag, int argc,
114 char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400115{
116 int i;
117 int rcode = 0;
Joe Hershbergerbe112352012-12-11 22:16:23 -0600118 int env_flag = H_HIDE_DOT;
119
120 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
121 argc--;
122 argv++;
123 env_flag &= ~H_HIDE_DOT;
124 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400125
126 if (argc == 1) {
127 /* print all env vars */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600128 rcode = env_print(NULL, env_flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200129 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400130 return 1;
131 printf("\nEnvironment size: %d/%ld bytes\n",
132 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000133 return 0;
134 }
135
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400136 /* print selected env vars */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600137 env_flag &= ~H_HIDE_DOT;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400138 for (i = 1; i < argc; ++i) {
Joe Hershbergerbe112352012-12-11 22:16:23 -0600139 int rc = env_print(argv[i], env_flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200140 if (!rc) {
141 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400142 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000143 }
144 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400145
wdenka68d3ed2002-10-11 08:38:32 +0000146 return rcode;
147}
148
Kim Phillipsa000b792011-04-05 07:15:14 +0000149#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000150static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
151 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000152{
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000153 char *res = NULL;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000154 int len, grep_how, grep_what;
Kim Phillipsa000b792011-04-05 07:15:14 +0000155
156 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000157 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000158
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000159 grep_how = H_MATCH_SUBSTR; /* default: substring search */
160 grep_what = H_MATCH_BOTH; /* default: grep names and values */
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000161
Pierre Aubert9a832332013-10-08 14:20:27 +0200162 while (--argc > 0 && **++argv == '-') {
163 char *arg = *argv;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000164 while (*++arg) {
165 switch (*arg) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000166#ifdef CONFIG_REGEX
167 case 'e': /* use regex matching */
168 grep_how = H_MATCH_REGEX;
169 break;
170#endif
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000171 case 'n': /* grep for name */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000172 grep_what = H_MATCH_KEY;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000173 break;
174 case 'v': /* grep for value */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000175 grep_what = H_MATCH_DATA;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000176 break;
177 case 'b': /* grep for both */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000178 grep_what = H_MATCH_BOTH;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000179 break;
180 case '-':
181 goto DONE;
182 default:
183 return CMD_RET_USAGE;
184 }
185 }
186 }
187
188DONE:
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000189 len = hexport_r(&env_htab, '\n',
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000190 flag | grep_what | grep_how,
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000191 &res, 0, argc, argv);
Kim Phillipsa000b792011-04-05 07:15:14 +0000192
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000193 if (len > 0) {
194 puts(res);
195 free(res);
Kim Phillipsa000b792011-04-05 07:15:14 +0000196 }
197
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000198 if (len < 2)
199 return 1;
200
201 return 0;
Kim Phillipsa000b792011-04-05 07:15:14 +0000202}
203#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000204#endif /* CONFIG_SPL_BUILD */
Kim Phillipsa000b792011-04-05 07:15:14 +0000205
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200206/*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000207 * Set a new environment variable,
208 * or replace or delete an existing one.
Joe Hershberger25980902012-12-11 22:16:31 -0600209 */
Kim Phillips088f1b12012-10-29 13:34:31 +0000210static int _do_env_set(int flag, int argc, char * const argv[])
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000211{
212 int i, len;
213 char *name, *value, *s;
214 ENTRY e, *ep;
Joe Hershberger24ab5a12012-12-11 22:16:35 -0600215 int env_flag = H_INTERACTIVE;
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000216
Joe Hershberger24ab5a12012-12-11 22:16:35 -0600217 debug("Initial value for argc=%d\n", argc);
218 while (argc > 1 && **(argv + 1) == '-') {
219 char *arg = *++argv;
220
221 --argc;
222 while (*++arg) {
223 switch (*arg) {
224 case 'f': /* force */
225 env_flag |= H_FORCE;
226 break;
227 default:
228 return CMD_RET_USAGE;
229 }
230 }
231 }
232 debug("Final value for argc=%d\n", argc);
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000233 name = argv[1];
234 value = argv[2];
235
236 if (strchr(name, '=')) {
237 printf("## Error: illegal character '='"
238 "in variable name \"%s\"\n", name);
239 return 1;
240 }
241
242 env_id++;
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000243
wdenka68d3ed2002-10-11 08:38:32 +0000244 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000245 if (argc < 3 || argv[2] == NULL) {
Joe Hershberger24ab5a12012-12-11 22:16:35 -0600246 int rc = hdelete_r(name, &env_htab, env_flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200247 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000248 }
249
250 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200251 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000252 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000253 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000254 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000255
256 value = malloc(len);
257 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200258 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000259 return 1;
260 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000261 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200262 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000263
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200264 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000265 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000266 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000267 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200268 if (s != value)
269 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000270
Igor Grinbergd09b1782011-11-07 01:13:59 +0000271 e.key = name;
272 e.data = value;
Joe Hershberger24ab5a12012-12-11 22:16:35 -0600273 hsearch_r(e, ENTER, &ep, &env_htab, env_flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200274 free(value);
275 if (!ep) {
276 printf("## Error inserting \"%s\" variable, errno=%d\n",
277 name, errno);
278 return 1;
279 }
wdenka68d3ed2002-10-11 08:38:32 +0000280
wdenka68d3ed2002-10-11 08:38:32 +0000281 return 0;
282}
283
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200284int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000285{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200286 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
287
Joe Hershbergera7eb1d62013-04-08 10:32:50 +0000288 /* before import into hashtable */
289 if (!(gd->flags & GD_FLG_ENV_READY))
290 return 1;
291
Igor Grinbergd09b1782011-11-07 01:13:59 +0000292 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200293 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200294 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200295 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000296}
297
Simon Glassd67f10c2011-10-24 17:59:59 +0000298/**
299 * Set an environment variable to an integer value
300 *
Simon Glass96022862013-05-07 06:11:45 +0000301 * @param varname Environment variable to set
Simon Glassd67f10c2011-10-24 17:59:59 +0000302 * @param value Value to set it to
303 * @return 0 if ok, 1 on error
304 */
305int setenv_ulong(const char *varname, ulong value)
306{
307 /* TODO: this should be unsigned */
308 char *str = simple_itoa(value);
309
310 return setenv(varname, str);
311}
312
313/**
Simon Glassbfc59962013-02-24 17:33:21 +0000314 * Set an environment variable to an value in hex
Simon Glassd67f10c2011-10-24 17:59:59 +0000315 *
Simon Glass96022862013-05-07 06:11:45 +0000316 * @param varname Environment variable to set
Simon Glassbfc59962013-02-24 17:33:21 +0000317 * @param value Value to set it to
Simon Glassd67f10c2011-10-24 17:59:59 +0000318 * @return 0 if ok, 1 on error
319 */
Simon Glassbfc59962013-02-24 17:33:21 +0000320int setenv_hex(const char *varname, ulong value)
Simon Glassd67f10c2011-10-24 17:59:59 +0000321{
322 char str[17];
323
Simon Glassbfc59962013-02-24 17:33:21 +0000324 sprintf(str, "%lx", value);
Simon Glassd67f10c2011-10-24 17:59:59 +0000325 return setenv(varname, str);
326}
327
Simon Glass76b8f792013-04-20 08:42:43 +0000328ulong getenv_hex(const char *varname, ulong default_val)
329{
330 const char *s;
331 ulong value;
332 char *endp;
333
334 s = getenv(varname);
335 if (s)
336 value = simple_strtoul(s, &endp, 16);
337 if (!s || endp == s)
338 return default_val;
339
340 return value;
341}
342
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000343#ifndef CONFIG_SPL_BUILD
Kim Phillips088f1b12012-10-29 13:34:31 +0000344static int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000345{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200346 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000347 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000348
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200349 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000350}
351
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200352/*
wdenka68d3ed2002-10-11 08:38:32 +0000353 * Prompt for environment variable
354 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500355#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000356int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000357{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200358 char message[CONFIG_SYS_CBSIZE];
Wolfgang Denk7d855912013-02-20 04:53:16 +0000359 int i, len, pos, size;
wdenka68d3ed2002-10-11 08:38:32 +0000360 char *local_args[4];
Wolfgang Denk7d855912013-02-20 04:53:16 +0000361 char *endptr;
wdenka68d3ed2002-10-11 08:38:32 +0000362
363 local_args[0] = argv[0];
364 local_args[1] = argv[1];
365 local_args[2] = NULL;
366 local_args[3] = NULL;
367
Wolfgang Denk7d855912013-02-20 04:53:16 +0000368 /*
369 * Check the syntax:
370 *
371 * env_ask envname [message1 ...] [size]
372 */
373 if (argc == 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000374 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000375
Wolfgang Denk7d855912013-02-20 04:53:16 +0000376 /*
377 * We test the last argument if it can be converted
378 * into a decimal number. If yes, we assume it's
379 * the size. Otherwise we echo it as part of the
380 * message.
381 */
382 i = simple_strtoul(argv[argc - 1], &endptr, 10);
383 if (*endptr != '\0') { /* no size */
384 size = CONFIG_SYS_CBSIZE - 1;
385 } else { /* size given */
386 size = i;
387 --argc;
388 }
wdenka68d3ed2002-10-11 08:38:32 +0000389
Wolfgang Denk7d855912013-02-20 04:53:16 +0000390 if (argc <= 2) {
391 sprintf(message, "Please enter '%s': ", argv[1]);
392 } else {
393 /* env_ask envname message1 ... messagen [size] */
394 for (i = 2, pos = 0; i < argc; i++) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000395 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000396 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000397
Igor Grinbergd09b1782011-11-07 01:13:59 +0000398 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000399 pos += strlen(argv[i]);
400 }
Wolfgang Denk7d855912013-02-20 04:53:16 +0000401 message[pos++] = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000402 message[pos] = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000403 }
404
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200405 if (size >= CONFIG_SYS_CBSIZE)
406 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000407
408 if (size <= 0)
409 return 1;
410
411 /* prompt for input */
Simon Glasse1bf8242014-04-10 20:01:27 -0600412 len = cli_readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000413
414 if (size < len)
415 console_buffer[size] = '\0';
416
417 len = 2;
418 if (console_buffer[0] != '\0') {
419 local_args[2] = console_buffer;
420 len = 3;
421 }
422
423 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200424 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000425}
Jon Loeliger90253172007-07-10 11:02:44 -0500426#endif
wdenka68d3ed2002-10-11 08:38:32 +0000427
Joe Hershberger5e2b3e02012-12-11 22:16:25 -0600428#if defined(CONFIG_CMD_ENV_CALLBACK)
429static int print_static_binding(const char *var_name, const char *callback_name)
430{
431 printf("\t%-20s %-20s\n", var_name, callback_name);
432
433 return 0;
434}
435
436static int print_active_callback(ENTRY *entry)
437{
438 struct env_clbk_tbl *clbkp;
439 int i;
440 int num_callbacks;
441
442 if (entry->callback == NULL)
443 return 0;
444
445 /* look up the callback in the linker-list */
446 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
447 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
448 i < num_callbacks;
449 i++, clbkp++) {
450#if defined(CONFIG_NEEDS_MANUAL_RELOC)
451 if (entry->callback == clbkp->callback + gd->reloc_off)
452#else
453 if (entry->callback == clbkp->callback)
454#endif
455 break;
456 }
457
458 if (i == num_callbacks)
459 /* this should probably never happen, but just in case... */
460 printf("\t%-20s %p\n", entry->key, entry->callback);
461 else
462 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
463
464 return 0;
465}
466
467/*
468 * Print the callbacks available and what they are bound to
469 */
470int do_env_callback(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
471{
472 struct env_clbk_tbl *clbkp;
473 int i;
474 int num_callbacks;
475
476 /* Print the available callbacks */
477 puts("Available callbacks:\n");
478 puts("\tCallback Name\n");
479 puts("\t-------------\n");
480 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
481 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
482 i < num_callbacks;
483 i++, clbkp++)
484 printf("\t%s\n", clbkp->name);
485 puts("\n");
486
487 /* Print the static bindings that may exist */
488 puts("Static callback bindings:\n");
489 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
490 printf("\t%-20s %-20s\n", "-------------", "-------------");
491 env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding);
492 puts("\n");
493
494 /* walk through each variable and print the callback if it has one */
495 puts("Active callback bindings:\n");
496 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
497 printf("\t%-20s %-20s\n", "-------------", "-------------");
498 hwalk_r(&env_htab, print_active_callback);
499 return 0;
500}
501#endif
502
Joe Hershbergerfffad712012-12-11 22:16:33 -0600503#if defined(CONFIG_CMD_ENV_FLAGS)
504static int print_static_flags(const char *var_name, const char *flags)
505{
506 enum env_flags_vartype type = env_flags_parse_vartype(flags);
Joe Hershberger267541f2012-12-11 22:16:34 -0600507 enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
Joe Hershbergerfffad712012-12-11 22:16:33 -0600508
Joe Hershberger267541f2012-12-11 22:16:34 -0600509 printf("\t%-20s %-20s %-20s\n", var_name,
510 env_flags_get_vartype_name(type),
511 env_flags_get_varaccess_name(access));
Joe Hershbergerfffad712012-12-11 22:16:33 -0600512
513 return 0;
514}
515
516static int print_active_flags(ENTRY *entry)
517{
518 enum env_flags_vartype type;
Joe Hershberger267541f2012-12-11 22:16:34 -0600519 enum env_flags_varaccess access;
Joe Hershbergerfffad712012-12-11 22:16:33 -0600520
521 if (entry->flags == 0)
522 return 0;
523
524 type = (enum env_flags_vartype)
525 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
Joe Hershberger267541f2012-12-11 22:16:34 -0600526 access = env_flags_parse_varaccess_from_binflags(entry->flags);
527 printf("\t%-20s %-20s %-20s\n", entry->key,
528 env_flags_get_vartype_name(type),
529 env_flags_get_varaccess_name(access));
Joe Hershbergerfffad712012-12-11 22:16:33 -0600530
531 return 0;
532}
533
534/*
535 * Print the flags available and what variables have flags
536 */
537int do_env_flags(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
538{
539 /* Print the available variable types */
540 printf("Available variable type flags (position %d):\n",
541 ENV_FLAGS_VARTYPE_LOC);
542 puts("\tFlag\tVariable Type Name\n");
543 puts("\t----\t------------------\n");
544 env_flags_print_vartypes();
545 puts("\n");
546
Joe Hershberger267541f2012-12-11 22:16:34 -0600547 /* Print the available variable access types */
548 printf("Available variable access flags (position %d):\n",
549 ENV_FLAGS_VARACCESS_LOC);
550 puts("\tFlag\tVariable Access Name\n");
551 puts("\t----\t--------------------\n");
552 env_flags_print_varaccess();
553 puts("\n");
554
Joe Hershbergerfffad712012-12-11 22:16:33 -0600555 /* Print the static flags that may exist */
556 puts("Static flags:\n");
Joe Hershberger267541f2012-12-11 22:16:34 -0600557 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
558 "Variable Access");
559 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
560 "---------------");
Joe Hershbergerfffad712012-12-11 22:16:33 -0600561 env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags);
562 puts("\n");
563
564 /* walk through each variable and print the flags if non-default */
565 puts("Active flags:\n");
Joe Hershberger267541f2012-12-11 22:16:34 -0600566 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
567 "Variable Access");
568 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
569 "---------------");
Joe Hershbergerfffad712012-12-11 22:16:33 -0600570 hwalk_r(&env_htab, print_active_flags);
571 return 0;
572}
573#endif
574
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200575/*
Peter Tyser246c6922009-10-25 15:12:56 -0500576 * Interactively edit an environment variable
577 */
578#if defined(CONFIG_CMD_EDITENV)
Kim Phillips088f1b12012-10-29 13:34:31 +0000579static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc,
580 char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500581{
582 char buffer[CONFIG_SYS_CBSIZE];
583 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500584
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200585 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000586 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500587
588 /* Set read buffer to initial value or empty sting */
589 init_val = getenv(argv[1]);
590 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200591 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500592 else
593 buffer[0] = '\0';
594
Simon Glasse1bf8242014-04-10 20:01:27 -0600595 if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)
Joe Hershberger18a3cce2013-02-08 10:12:34 +0000596 return 1;
Peter Tyser246c6922009-10-25 15:12:56 -0500597
598 return setenv(argv[1], buffer);
599}
600#endif /* CONFIG_CMD_EDITENV */
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000601#endif /* CONFIG_SPL_BUILD */
Peter Tyser246c6922009-10-25 15:12:56 -0500602
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200603/*
wdenka68d3ed2002-10-11 08:38:32 +0000604 * Look up variable from environment,
605 * return address of storage for that variable,
606 * or NULL if not found
607 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200608char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000609{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000610 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200611 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000612
Wolfgang Denk91a76752010-07-24 20:22:02 +0200613 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000614
Igor Grinbergd09b1782011-11-07 01:13:59 +0000615 e.key = name;
616 e.data = NULL;
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600617 hsearch_r(e, FIND, &ep, &env_htab, 0);
wdenka68d3ed2002-10-11 08:38:32 +0000618
Macpaul Linf3c615b2011-04-26 16:16:45 +0000619 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000620 }
621
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200622 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200623 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
624 return (char *)(gd->env_buf);
625
626 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000627}
628
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200629/*
630 * Look up variable from environment for restricted C runtime env.
631 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200632int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000633{
634 int i, nxt;
635
Igor Grinbergd09b1782011-11-07 01:13:59 +0000636 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000637 int val, n;
638
Macpaul Linf3c615b2011-04-26 16:16:45 +0000639 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
640 if (nxt >= CONFIG_ENV_SIZE)
641 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000642 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000643
644 val = envmatch((uchar *)name, i);
645 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000646 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200647
wdenka68d3ed2002-10-11 08:38:32 +0000648 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000649 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000650 *buf = env_get_char(val++);
651 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200652 return n;
653 }
654
655 if (n)
656 *--buf = '\0';
657
Wolfgang Denka02a8842011-05-04 10:29:49 +0000658 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
659 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200660
661 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000662 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000663
Macpaul Linf3c615b2011-04-26 16:16:45 +0000664 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000665}
666
Simon Glass4a9b4132011-10-14 13:25:18 +0000667/**
668 * Decode the integer value of an environment variable and return it.
669 *
670 * @param name Name of environemnt variable
671 * @param base Number base to use (normally 10, or 16 for hex)
672 * @param default_val Default value to return if the variable is not
673 * found
674 * @return the decoded value, or default_val if not found
675 */
676ulong getenv_ulong(const char *name, int base, ulong default_val)
677{
678 /*
679 * We can use getenv() here, even before relocation, since the
680 * environment variable value is an integer and thus short.
681 */
682 const char *str = getenv(name);
683
684 return str ? simple_strtoul(str, NULL, base) : default_val;
685}
686
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000687#ifndef CONFIG_SPL_BUILD
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500688#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Kim Phillips088f1b12012-10-29 13:34:31 +0000689static int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc,
690 char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000691{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000692 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000693
Macpaul Linf3c615b2011-04-26 16:16:45 +0000694 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000695}
wdenk8bde7f72003-06-27 21:31:46 +0000696
Mike Frysingerba69dc22008-12-30 02:59:25 -0500697U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200698 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600699 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200700 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500701);
wdenka68d3ed2002-10-11 08:38:32 +0000702#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000703#endif /* CONFIG_SPL_BUILD */
wdenka68d3ed2002-10-11 08:38:32 +0000704
705
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200706/*
wdenka68d3ed2002-10-11 08:38:32 +0000707 * Match a name / name=value pair
708 *
709 * s1 is either a simple 'name', or a 'name=value' pair.
710 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000711 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000712 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000713int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000714{
Joe Hershberger586197d2012-10-03 09:38:50 +0000715 if (s1 == NULL)
716 return -1;
717
wdenka68d3ed2002-10-11 08:38:32 +0000718 while (*s1 == env_get_char(i2++))
719 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000720 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000721
wdenka68d3ed2002-10-11 08:38:32 +0000722 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000723 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000724
Macpaul Linf3c615b2011-04-26 16:16:45 +0000725 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000726}
wdenk8bde7f72003-06-27 21:31:46 +0000727
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000728#ifndef CONFIG_SPL_BUILD
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000729static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
Igor Grinbergd09b1782011-11-07 01:13:59 +0000730 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200731{
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000732 int all = 0, flag = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000733
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000734 debug("Initial value for argc=%d\n", argc);
735 while (--argc > 0 && **++argv == '-') {
736 char *arg = *argv;
737
738 while (*++arg) {
739 switch (*arg) {
740 case 'a': /* default all */
741 all = 1;
742 break;
743 case 'f': /* force */
744 flag |= H_FORCE;
745 break;
746 default:
747 return cmd_usage(cmdtp);
748 }
749 }
750 }
751 debug("Final value for argc=%d\n", argc);
752 if (all && (argc == 0)) {
753 /* Reset the whole environment */
754 set_default_env("## Resetting to default environment\n");
755 return 0;
756 }
757 if (!all && (argc > 0)) {
758 /* Reset individual variables */
759 set_default_vars(argc, argv);
760 return 0;
761 }
762
763 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200764}
wdenk8bde7f72003-06-27 21:31:46 +0000765
Igor Grinbergd09b1782011-11-07 01:13:59 +0000766static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
767 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200768{
Joe Hershberger9d8d6612012-12-11 22:16:36 -0600769 int env_flag = H_INTERACTIVE;
770 int ret = 0;
771
772 debug("Initial value for argc=%d\n", argc);
773 while (argc > 1 && **(argv + 1) == '-') {
774 char *arg = *++argv;
775
776 --argc;
777 while (*++arg) {
778 switch (*arg) {
779 case 'f': /* force */
780 env_flag |= H_FORCE;
781 break;
782 default:
783 return CMD_RET_USAGE;
784 }
785 }
786 }
787 debug("Final value for argc=%d\n", argc);
788
789 env_id++;
790
791 while (--argc > 0) {
792 char *name = *++argv;
793
794 if (!hdelete_r(name, &env_htab, env_flag))
795 ret = 1;
796 }
797
798 return ret;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200799}
800
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500801#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200802/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100803 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200804 * -t: export as text format; if size is given, data will be
805 * padded with '\0' bytes; if not, one terminating '\0'
806 * will be added (which is included in the "filesize"
807 * setting so you can for exmple copy this to flash and
808 * keep the termination).
809 * -b: export as binary format (name=value pairs separated by
810 * '\0', list end marked by double "\0\0")
811 * -c: export as checksum protected environment format as
812 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100813 * -s size:
814 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200815 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100816 * var... List of variable names that get included into the
817 * export. Without arguments, the whole environment gets
818 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200819 *
820 * With "-c" and size is NOT given, then the export command will
821 * format the data as currently used for the persistent storage,
822 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
823 * prepend a valid CRC32 checksum and, in case of resundant
824 * environment, a "current" redundancy flag. If size is given, this
825 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
826 * checksum and redundancy flag will be inserted.
827 *
828 * With "-b" and "-t", always only the real data (including a
829 * terminating '\0' byte) will be written; here the optional size
830 * argument will be used to make sure not to overflow the user
831 * provided buffer; the command will abort if the size is not
832 * sufficient. Any remainign space will be '\0' padded.
833 *
834 * On successful return, the variable "filesize" will be set.
835 * Note that filesize includes the trailing/terminating '\0' byte(s).
836 *
837 * Usage szenario: create a text snapshot/backup of the current settings:
838 *
839 * => env export -t 100000
840 * => era ${backup_addr} +${filesize}
841 * => cp.b 100000 ${backup_addr} ${filesize}
842 *
843 * Re-import this snapshot, deleting all other settings:
844 *
845 * => env import -d -t ${backup_addr}
846 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000847static int do_env_export(cmd_tbl_t *cmdtp, int flag,
848 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200849{
850 char buf[32];
Simon Glassfd37dac2013-10-25 23:01:31 -0600851 ulong addr;
852 char *ptr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100853 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200854 ssize_t len;
855 env_t *envp;
856 char sep = '\n';
857 int chk = 0;
858 int fmt = 0;
859
860 cmd = *argv;
861
862 while (--argc > 0 && **++argv == '-') {
863 char *arg = *argv;
864 while (*++arg) {
865 switch (*arg) {
866 case 'b': /* raw binary format */
867 if (fmt++)
868 goto sep_err;
869 sep = '\0';
870 break;
871 case 'c': /* external checksum format */
872 if (fmt++)
873 goto sep_err;
874 sep = '\0';
875 chk = 1;
876 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100877 case 's': /* size given */
878 if (--argc <= 0)
879 return cmd_usage(cmdtp);
880 size = simple_strtoul(*++argv, NULL, 16);
881 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200882 case 't': /* text format */
883 if (fmt++)
884 goto sep_err;
885 sep = '\n';
886 break;
887 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000888 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200889 }
890 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100891NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200892 }
893
Macpaul Linf3c615b2011-04-26 16:16:45 +0000894 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000895 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200896
Simon Glassfd37dac2013-10-25 23:01:31 -0600897 addr = simple_strtoul(argv[0], NULL, 16);
898 ptr = map_sysmem(addr, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200899
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100900 if (size)
Simon Glassfd37dac2013-10-25 23:01:31 -0600901 memset(ptr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100902
903 argc--;
904 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200905
906 if (sep) { /* export as text file */
Wolfgang Denkea009d42013-03-23 23:50:28 +0000907 len = hexport_r(&env_htab, sep,
908 H_MATCH_KEY | H_MATCH_IDENT,
Simon Glassfd37dac2013-10-25 23:01:31 -0600909 &ptr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200910 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000911 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200912 return 1;
913 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100914 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200915 setenv("filesize", buf);
916
917 return 0;
918 }
919
Simon Glassfd37dac2013-10-25 23:01:31 -0600920 envp = (env_t *)ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200921
922 if (chk) /* export as checksum protected block */
923 res = (char *)envp->data;
924 else /* export as raw binary data */
Simon Glassfd37dac2013-10-25 23:01:31 -0600925 res = ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200926
Wolfgang Denkea009d42013-03-23 23:50:28 +0000927 len = hexport_r(&env_htab, '\0',
928 H_MATCH_KEY | H_MATCH_IDENT,
929 &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200930 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000931 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200932 return 1;
933 }
934
935 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000936 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200937#ifdef CONFIG_ENV_ADDR_REDUND
938 envp->flags = ACTIVE_FLAG;
939#endif
940 }
Simon Glass41ef3722013-02-24 17:33:22 +0000941 setenv_hex("filesize", len + offsetof(env_t, data));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200942
943 return 0;
944
945sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000946 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200947 return 1;
948}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500949#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200950
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500951#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200952/*
Alexander Hollerecd14462014-07-14 17:49:55 +0200953 * env import [-d] [-t [-r] | -b | -c] addr [size]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200954 * -d: delete existing environment before importing;
955 * otherwise overwrite / append to existion definitions
956 * -t: assume text format; either "size" must be given or the
957 * text data must be '\0' terminated
Alexander Hollerecd14462014-07-14 17:49:55 +0200958 * -r: handle CRLF like LF, that means exported variables with
959 * a content which ends with \r won't get imported. Used
960 * to import text files created with editors which are using CRLF
961 * for line endings. Only effective in addition to -t.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200962 * -b: assume binary format ('\0' separated, "\0\0" terminated)
963 * -c: assume checksum protected environment format
964 * addr: memory address to read from
965 * size: length of input data; if missing, proper '\0'
966 * termination is mandatory
967 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000968static int do_env_import(cmd_tbl_t *cmdtp, int flag,
969 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200970{
Simon Glassfd37dac2013-10-25 23:01:31 -0600971 ulong addr;
972 char *cmd, *ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200973 char sep = '\n';
974 int chk = 0;
975 int fmt = 0;
976 int del = 0;
Alexander Hollerecd14462014-07-14 17:49:55 +0200977 int crlf_is_lf = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200978 size_t size;
979
980 cmd = *argv;
981
982 while (--argc > 0 && **++argv == '-') {
983 char *arg = *argv;
984 while (*++arg) {
985 switch (*arg) {
986 case 'b': /* raw binary format */
987 if (fmt++)
988 goto sep_err;
989 sep = '\0';
990 break;
991 case 'c': /* external checksum format */
992 if (fmt++)
993 goto sep_err;
994 sep = '\0';
995 chk = 1;
996 break;
997 case 't': /* text format */
998 if (fmt++)
999 goto sep_err;
1000 sep = '\n';
1001 break;
Alexander Hollerecd14462014-07-14 17:49:55 +02001002 case 'r': /* handle CRLF like LF */
1003 crlf_is_lf = 1;
1004 break;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001005 case 'd':
1006 del = 1;
1007 break;
1008 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +00001009 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001010 }
1011 }
1012 }
1013
Macpaul Linf3c615b2011-04-26 16:16:45 +00001014 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001015 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001016
1017 if (!fmt)
1018 printf("## Warning: defaulting to text format\n");
1019
Alexander Hollerecd14462014-07-14 17:49:55 +02001020 if (sep != '\n' && crlf_is_lf )
1021 crlf_is_lf = 0;
1022
Simon Glassfd37dac2013-10-25 23:01:31 -06001023 addr = simple_strtoul(argv[0], NULL, 16);
1024 ptr = map_sysmem(addr, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001025
1026 if (argc == 2) {
1027 size = simple_strtoul(argv[1], NULL, 16);
Tom Rini3775dcd2014-03-04 15:52:35 -05001028 } else if (argc == 1 && chk) {
1029 puts("## Error: external checksum format must pass size\n");
1030 return CMD_RET_FAILURE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001031 } else {
Simon Glassfd37dac2013-10-25 23:01:31 -06001032 char *s = ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001033
1034 size = 0;
1035
1036 while (size < MAX_ENV_SIZE) {
1037 if ((*s == sep) && (*(s+1) == '\0'))
1038 break;
1039 ++s;
1040 ++size;
1041 }
1042 if (size == MAX_ENV_SIZE) {
1043 printf("## Warning: Input data exceeds %d bytes"
1044 " - truncated\n", MAX_ENV_SIZE);
1045 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +00001046 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +00001047 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001048 }
1049
1050 if (chk) {
1051 uint32_t crc;
Simon Glassfd37dac2013-10-25 23:01:31 -06001052 env_t *ep = (env_t *)ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001053
1054 size -= offsetof(env_t, data);
1055 memcpy(&crc, &ep->crc, sizeof(crc));
1056
1057 if (crc32(0, ep->data, size) != crc) {
1058 puts("## Error: bad CRC, import failed\n");
1059 return 1;
1060 }
Simon Glassfd37dac2013-10-25 23:01:31 -06001061 ptr = (char *)ep->data;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001062 }
1063
Alexander Hollerecd14462014-07-14 17:49:55 +02001064 if (himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR,
1065 crlf_is_lf, 0, NULL) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001066 error("Environment import failed: errno = %d\n", errno);
1067 return 1;
1068 }
1069 gd->flags |= GD_FLG_ENV_READY;
1070
1071 return 0;
1072
1073sep_err:
1074 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
1075 cmd);
1076 return 1;
1077}
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001078#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001079
Andrew Ruder88733e22013-10-22 19:07:34 -05001080#if defined(CONFIG_CMD_ENV_EXISTS)
1081static int do_env_exists(cmd_tbl_t *cmdtp, int flag, int argc,
1082 char * const argv[])
1083{
1084 ENTRY e, *ep;
1085
1086 if (argc < 2)
1087 return CMD_RET_USAGE;
1088
1089 e.key = argv[1];
1090 e.data = NULL;
1091 hsearch_r(e, FIND, &ep, &env_htab, 0);
1092
1093 return (ep == NULL) ? 1 : 0;
1094}
1095#endif
1096
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001097/*
1098 * New command line interface: "env" command with subcommands
1099 */
1100static cmd_tbl_t cmd_env_sub[] = {
1101#if defined(CONFIG_CMD_ASKENV)
1102 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
1103#endif
1104 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
Joe Hershberger9d8d6612012-12-11 22:16:36 -06001105 U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""),
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001106#if defined(CONFIG_CMD_EDITENV)
1107 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
1108#endif
Joe Hershberger5e2b3e02012-12-11 22:16:25 -06001109#if defined(CONFIG_CMD_ENV_CALLBACK)
1110 U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
1111#endif
Joe Hershbergerfffad712012-12-11 22:16:33 -06001112#if defined(CONFIG_CMD_ENV_FLAGS)
1113 U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
1114#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001115#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001116 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001117#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001118#if defined(CONFIG_CMD_GREPENV)
1119 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
1120#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001121#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001122 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001123#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001124 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1125#if defined(CONFIG_CMD_RUN)
1126 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1127#endif
1128#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1129 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1130#endif
1131 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
Andrew Ruder88733e22013-10-22 19:07:34 -05001132#if defined(CONFIG_CMD_ENV_EXISTS)
1133 U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""),
1134#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001135};
1136
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02001137#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +02001138void env_reloc(void)
1139{
1140 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1141}
1142#endif
1143
Macpaul Linf3c615b2011-04-26 16:16:45 +00001144static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001145{
1146 cmd_tbl_t *cp;
1147
Thomas Weber5904da02010-11-24 13:07:52 +01001148 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001149 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +01001150
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001151 /* drop initial "env" arg */
1152 argc--;
1153 argv++;
1154
1155 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1156
1157 if (cp)
1158 return cp->cmd(cmdtp, flag, argc, argv);
1159
Simon Glass4c12eeb2011-12-10 08:44:01 +00001160 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001161}
1162
Kim Phillips088f1b12012-10-29 13:34:31 +00001163#ifdef CONFIG_SYS_LONGHELP
1164static char env_help_text[] =
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001165#if defined(CONFIG_CMD_ASKENV)
1166 "ask name [message] [size] - ask for environment variable\nenv "
1167#endif
Joe Hershberger5e2b3e02012-12-11 22:16:25 -06001168#if defined(CONFIG_CMD_ENV_CALLBACK)
1169 "callbacks - print callbacks and their associated variables\nenv "
1170#endif
Gerlando Falautob64b7c32012-08-24 00:11:41 +00001171 "default [-f] -a - [forcibly] reset default environment\n"
1172 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
Joe Hershberger9d8d6612012-12-11 22:16:36 -06001173 "env delete [-f] var [...] - [forcibly] delete variable(s)\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001174#if defined(CONFIG_CMD_EDITENV)
1175 "env edit name - edit environment variable\n"
1176#endif
Andrew Ruder88733e22013-10-22 19:07:34 -05001177#if defined(CONFIG_CMD_ENV_EXISTS)
1178 "env exists name - tests for existence of variable\n"
1179#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001180#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denk37f2fe72011-11-06 22:49:44 +01001181 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001182#endif
Joe Hershbergerfffad712012-12-11 22:16:33 -06001183#if defined(CONFIG_CMD_ENV_FLAGS)
1184 "env flags - print variables that have non-default flags\n"
1185#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001186#if defined(CONFIG_CMD_GREPENV)
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001187#ifdef CONFIG_REGEX
1188 "env grep [-e] [-n | -v | -b] string [...] - search environment\n"
1189#else
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001190 "env grep [-n | -v | -b] string [...] - search environment\n"
Kim Phillipsa000b792011-04-05 07:15:14 +00001191#endif
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001192#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001193#if defined(CONFIG_CMD_IMPORTENV)
Alexander Hollerecd14462014-07-14 17:49:55 +02001194 "env import [-d] [-t [-r] | -b | -c] addr [size] - import environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001195#endif
Joe Hershbergerbe112352012-12-11 22:16:23 -06001196 "env print [-a | name ...] - print environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001197#if defined(CONFIG_CMD_RUN)
1198 "env run var [...] - run commands in an environment variable\n"
1199#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001200#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001201 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001202#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001203 "env set [-f] name [arg ...]\n";
1204#endif
1205
1206U_BOOT_CMD(
1207 env, CONFIG_SYS_MAXARGS, 1, do_env,
1208 "environment handling commands", env_help_text
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001209);
1210
1211/*
1212 * Old command line interface, kept for compatibility
1213 */
wdenk8bde7f72003-06-27 21:31:46 +00001214
Peter Tyser246c6922009-10-25 15:12:56 -05001215#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -04001216U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001217 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -05001218 "edit environment variable",
1219 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001220 " - edit environment variable 'name'",
1221 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -05001222);
1223#endif
1224
Mike Frysinger722b0612010-10-20 03:52:39 -04001225U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001226 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001227 "print environment variables",
Joe Hershbergerbe112352012-12-11 22:16:23 -06001228 "[-a]\n - print [all] values of all environment variables\n"
wdenk8bde7f72003-06-27 21:31:46 +00001229 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001230 " - print value of environment variable 'name'",
1231 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001232);
1233
Kim Phillipsa000b792011-04-05 07:15:14 +00001234#ifdef CONFIG_CMD_GREPENV
1235U_BOOT_CMD_COMPLETE(
1236 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1237 "search environment variables",
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001238#ifdef CONFIG_REGEX
1239 "[-e] [-n | -v | -b] string ...\n"
1240#else
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001241 "[-n | -v | -b] string ...\n"
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001242#endif
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001243 " - list environment name=value pairs matching 'string'\n"
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001244#ifdef CONFIG_REGEX
1245 " \"-e\": enable regular expressions;\n"
1246#endif
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001247 " \"-n\": search variable names; \"-v\": search values;\n"
1248 " \"-b\": search both names and values (default)",
Kim Phillipsa000b792011-04-05 07:15:14 +00001249 var_complete
1250);
1251#endif
1252
Mike Frysinger722b0612010-10-20 03:52:39 -04001253U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001254 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001255 "set environment variables",
Joe Hershberger24ab5a12012-12-11 22:16:35 -06001256 "[-f] name value ...\n"
1257 " - [forcibly] set environment variable 'name' to 'value ...'\n"
1258 "setenv [-f] name\n"
1259 " - [forcibly] delete environment variable 'name'",
Mike Frysinger722b0612010-10-20 03:52:39 -04001260 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001261);
1262
Jon Loeligerc76fe472007-07-08 18:02:23 -05001263#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001264
wdenk0d498392003-07-01 21:06:45 +00001265U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001266 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001267 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001268 "name [message] [size]\n"
Wolfgang Denk7d855912013-02-20 04:53:16 +00001269 " - get environment variable 'name' from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001270);
Jon Loeliger90253172007-07-10 11:02:44 -05001271#endif
wdenk8bde7f72003-06-27 21:31:46 +00001272
Jon Loeligerc76fe472007-07-08 18:02:23 -05001273#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001274U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001275 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001276 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001277 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001278 " - run the commands in the environment variable(s) 'var'",
1279 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001280);
Jon Loeliger90253172007-07-10 11:02:44 -05001281#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +00001282#endif /* CONFIG_SPL_BUILD */