blob: f4c2523f2fb1b1793b5e21f2f6de400aaf75da70 [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>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050034#include <mapmem.h>
wdenk2a3cb022002-11-05 21:01:48 +000035#include <watchdog.h>
wdenka68d3ed2002-10-11 08:38:32 +000036#include <linux/stddef.h>
37#include <asm/byteorder.h>
Simon Glassfd37dac2013-10-25 23:01:31 -060038#include <asm/io.h>
wdenka68d3ed2002-10-11 08:38:32 +000039
Wolfgang Denkd87080b2006-03-31 18:32:53 +020040DECLARE_GLOBAL_DATA_PTR;
41
Macpaul Linf3c615b2011-04-26 16:16:45 +000042#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
43 !defined(CONFIG_ENV_IS_IN_FLASH) && \
44 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000045 !defined(CONFIG_ENV_IS_IN_MMC) && \
Maximilian Schwerin57210c72012-03-12 23:57:50 +000046 !defined(CONFIG_ENV_IS_IN_FAT) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000047 !defined(CONFIG_ENV_IS_IN_NAND) && \
48 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
49 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
50 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Liu Gang0a85a9e2012-03-08 00:33:20 +000051 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
Joe Hershberger2b744332013-04-08 10:32:51 +000052 !defined(CONFIG_ENV_IS_IN_UBI) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000053 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090054# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Joe Hershberger2b744332013-04-08 10:32:51 +000055SPI_FLASH|NVRAM|MMC|FAT|REMOTE|UBI} or CONFIG_ENV_IS_NOWHERE
wdenka68d3ed2002-10-11 08:38:32 +000056#endif
57
Wolfgang Denkea882ba2010-06-20 23:33:59 +020058/*
59 * Maximum expected input data size for import command
60 */
61#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000062
wdenka68d3ed2002-10-11 08:38:32 +000063/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020064 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020065 * be used via get_env_id() as an indication, if the environment
66 * has changed or not. So it is possible to reread an environment
67 * variable only if the environment was changed ... done so for
68 * example in NetInitLoop()
69 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010070static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000071
Macpaul Linf3c615b2011-04-26 16:16:45 +000072int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +010073{
74 return env_id;
75}
wdenka68d3ed2002-10-11 08:38:32 +000076
Ilya Yanok7ac2fe22012-09-18 00:22:50 +000077#ifndef CONFIG_SPL_BUILD
Mike Frysinger4c94f6c2009-05-24 02:26:19 -040078/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020079 * Command interface: print one or all environment variables
80 *
81 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -040082 */
Joe Hershbergerbe112352012-12-11 22:16:23 -060083static int env_print(char *name, int flag)
wdenka68d3ed2002-10-11 08:38:32 +000084{
Wolfgang Denkea882ba2010-06-20 23:33:59 +020085 char *res = NULL;
Maxime Larocque22a4a6c2012-09-28 05:00:13 +000086 ssize_t len;
wdenka68d3ed2002-10-11 08:38:32 +000087
Wolfgang Denkea882ba2010-06-20 23:33:59 +020088 if (name) { /* print a single name */
89 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +000090
Wolfgang Denkea882ba2010-06-20 23:33:59 +020091 e.key = name;
92 e.data = NULL;
Joe Hershbergerbe112352012-12-11 22:16:23 -060093 hsearch_r(e, FIND, &ep, &env_htab, flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +020094 if (ep == NULL)
95 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +000096 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +020097 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -040098 }
wdenka68d3ed2002-10-11 08:38:32 +000099
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200100 /* print whole list */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600101 len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200102
103 if (len > 0) {
104 puts(res);
105 free(res);
106 return len;
107 }
108
109 /* should never happen */
Maxime Larocque22a4a6c2012-09-28 05:00:13 +0000110 printf("## Error: cannot export environment\n");
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200111 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400112}
113
Kim Phillips088f1b12012-10-29 13:34:31 +0000114static int do_env_print(cmd_tbl_t *cmdtp, int flag, int argc,
115 char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400116{
117 int i;
118 int rcode = 0;
Joe Hershbergerbe112352012-12-11 22:16:23 -0600119 int env_flag = H_HIDE_DOT;
120
121 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
122 argc--;
123 argv++;
124 env_flag &= ~H_HIDE_DOT;
125 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400126
127 if (argc == 1) {
128 /* print all env vars */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600129 rcode = env_print(NULL, env_flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200130 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400131 return 1;
132 printf("\nEnvironment size: %d/%ld bytes\n",
133 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000134 return 0;
135 }
136
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400137 /* print selected env vars */
Joe Hershbergerbe112352012-12-11 22:16:23 -0600138 env_flag &= ~H_HIDE_DOT;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400139 for (i = 1; i < argc; ++i) {
Joe Hershbergerbe112352012-12-11 22:16:23 -0600140 int rc = env_print(argv[i], env_flag);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200141 if (!rc) {
142 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400143 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000144 }
145 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400146
wdenka68d3ed2002-10-11 08:38:32 +0000147 return rcode;
148}
149
Kim Phillipsa000b792011-04-05 07:15:14 +0000150#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000151static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
152 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000153{
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000154 char *res = NULL;
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000155 int len, grep_how, grep_what;
Kim Phillipsa000b792011-04-05 07:15:14 +0000156
157 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000158 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000159
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000160 grep_how = H_MATCH_SUBSTR; /* default: substring search */
161 grep_what = H_MATCH_BOTH; /* default: grep names and values */
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000162
Pierre Aubert9a832332013-10-08 14:20:27 +0200163 while (--argc > 0 && **++argv == '-') {
164 char *arg = *argv;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000165 while (*++arg) {
166 switch (*arg) {
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000167#ifdef CONFIG_REGEX
168 case 'e': /* use regex matching */
169 grep_how = H_MATCH_REGEX;
170 break;
171#endif
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000172 case 'n': /* grep for name */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000173 grep_what = H_MATCH_KEY;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000174 break;
175 case 'v': /* grep for value */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000176 grep_what = H_MATCH_DATA;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000177 break;
178 case 'b': /* grep for both */
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000179 grep_what = H_MATCH_BOTH;
Wolfgang Denkd87244d2013-03-23 23:50:30 +0000180 break;
181 case '-':
182 goto DONE;
183 default:
184 return CMD_RET_USAGE;
185 }
186 }
187 }
188
189DONE:
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000190 len = hexport_r(&env_htab, '\n',
Wolfgang Denkbe29df62013-03-23 23:50:32 +0000191 flag | grep_what | grep_how,
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000192 &res, 0, argc, argv);
Kim Phillipsa000b792011-04-05 07:15:14 +0000193
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000194 if (len > 0) {
195 puts(res);
196 free(res);
Kim Phillipsa000b792011-04-05 07:15:14 +0000197 }
198
Wolfgang Denk5a31ea02013-03-23 23:50:29 +0000199 if (len < 2)
200 return 1;
201
202 return 0;
Kim Phillipsa000b792011-04-05 07:15:14 +0000203}
204#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000205#endif /* CONFIG_SPL_BUILD */
Kim Phillipsa000b792011-04-05 07:15:14 +0000206
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200207/*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000208 * Set a new environment variable,
209 * or replace or delete an existing one.
Joe Hershberger25980902012-12-11 22:16:31 -0600210 */
Joe Hershberger94b467b2015-05-20 14:27:21 -0500211static int _do_env_set(int flag, int argc, char * const argv[], int env_flag)
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000212{
213 int i, len;
214 char *name, *value, *s;
215 ENTRY e, *ep;
216
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')
Joe Hershberger94b467b2015-05-20 14:27:21 -0500293 return _do_env_set(0, 2, (char * const *)argv, H_PROGRAMMATIC);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200294 else
Joe Hershberger94b467b2015-05-20 14:27:21 -0500295 return _do_env_set(0, 3, (char * const *)argv, H_PROGRAMMATIC);
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
Joe Hershberger94b467b2015-05-20 14:27:21 -0500349 return _do_env_set(flag, argc, argv, H_INTERACTIVE);
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 */
Joe Hershberger94b467b2015-05-20 14:27:21 -0500424 return _do_env_set(flag, len, local_args, H_INTERACTIVE);
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)
Joe Hershbergercca98fd2015-05-20 14:27:19 -0500429static int print_static_binding(const char *var_name, const char *callback_name,
430 void *priv)
Joe Hershberger5e2b3e02012-12-11 22:16:25 -0600431{
432 printf("\t%-20s %-20s\n", var_name, callback_name);
433
434 return 0;
435}
436
437static int print_active_callback(ENTRY *entry)
438{
439 struct env_clbk_tbl *clbkp;
440 int i;
441 int num_callbacks;
442
443 if (entry->callback == NULL)
444 return 0;
445
446 /* look up the callback in the linker-list */
447 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
448 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
449 i < num_callbacks;
450 i++, clbkp++) {
451#if defined(CONFIG_NEEDS_MANUAL_RELOC)
452 if (entry->callback == clbkp->callback + gd->reloc_off)
453#else
454 if (entry->callback == clbkp->callback)
455#endif
456 break;
457 }
458
459 if (i == num_callbacks)
460 /* this should probably never happen, but just in case... */
461 printf("\t%-20s %p\n", entry->key, entry->callback);
462 else
463 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
464
465 return 0;
466}
467
468/*
469 * Print the callbacks available and what they are bound to
470 */
471int do_env_callback(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
472{
473 struct env_clbk_tbl *clbkp;
474 int i;
475 int num_callbacks;
476
477 /* Print the available callbacks */
478 puts("Available callbacks:\n");
479 puts("\tCallback Name\n");
480 puts("\t-------------\n");
481 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
482 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
483 i < num_callbacks;
484 i++, clbkp++)
485 printf("\t%s\n", clbkp->name);
486 puts("\n");
487
488 /* Print the static bindings that may exist */
489 puts("Static callback bindings:\n");
490 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
491 printf("\t%-20s %-20s\n", "-------------", "-------------");
Joe Hershbergercca98fd2015-05-20 14:27:19 -0500492 env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding, NULL);
Joe Hershberger5e2b3e02012-12-11 22:16:25 -0600493 puts("\n");
494
495 /* walk through each variable and print the callback if it has one */
496 puts("Active callback bindings:\n");
497 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
498 printf("\t%-20s %-20s\n", "-------------", "-------------");
499 hwalk_r(&env_htab, print_active_callback);
500 return 0;
501}
502#endif
503
Joe Hershbergerfffad712012-12-11 22:16:33 -0600504#if defined(CONFIG_CMD_ENV_FLAGS)
Joe Hershbergercca98fd2015-05-20 14:27:19 -0500505static int print_static_flags(const char *var_name, const char *flags,
506 void *priv)
Joe Hershbergerfffad712012-12-11 22:16:33 -0600507{
508 enum env_flags_vartype type = env_flags_parse_vartype(flags);
Joe Hershberger267541f2012-12-11 22:16:34 -0600509 enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
Joe Hershbergerfffad712012-12-11 22:16:33 -0600510
Joe Hershberger267541f2012-12-11 22:16:34 -0600511 printf("\t%-20s %-20s %-20s\n", var_name,
512 env_flags_get_vartype_name(type),
513 env_flags_get_varaccess_name(access));
Joe Hershbergerfffad712012-12-11 22:16:33 -0600514
515 return 0;
516}
517
518static int print_active_flags(ENTRY *entry)
519{
520 enum env_flags_vartype type;
Joe Hershberger267541f2012-12-11 22:16:34 -0600521 enum env_flags_varaccess access;
Joe Hershbergerfffad712012-12-11 22:16:33 -0600522
523 if (entry->flags == 0)
524 return 0;
525
526 type = (enum env_flags_vartype)
527 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
Joe Hershberger267541f2012-12-11 22:16:34 -0600528 access = env_flags_parse_varaccess_from_binflags(entry->flags);
529 printf("\t%-20s %-20s %-20s\n", entry->key,
530 env_flags_get_vartype_name(type),
531 env_flags_get_varaccess_name(access));
Joe Hershbergerfffad712012-12-11 22:16:33 -0600532
533 return 0;
534}
535
536/*
537 * Print the flags available and what variables have flags
538 */
539int do_env_flags(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
540{
541 /* Print the available variable types */
542 printf("Available variable type flags (position %d):\n",
543 ENV_FLAGS_VARTYPE_LOC);
544 puts("\tFlag\tVariable Type Name\n");
545 puts("\t----\t------------------\n");
546 env_flags_print_vartypes();
547 puts("\n");
548
Joe Hershberger267541f2012-12-11 22:16:34 -0600549 /* Print the available variable access types */
550 printf("Available variable access flags (position %d):\n",
551 ENV_FLAGS_VARACCESS_LOC);
552 puts("\tFlag\tVariable Access Name\n");
553 puts("\t----\t--------------------\n");
554 env_flags_print_varaccess();
555 puts("\n");
556
Joe Hershbergerfffad712012-12-11 22:16:33 -0600557 /* Print the static flags that may exist */
558 puts("Static flags:\n");
Joe Hershberger267541f2012-12-11 22:16:34 -0600559 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
560 "Variable Access");
561 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
562 "---------------");
Joe Hershbergercca98fd2015-05-20 14:27:19 -0500563 env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags, NULL);
Joe Hershbergerfffad712012-12-11 22:16:33 -0600564 puts("\n");
565
566 /* walk through each variable and print the flags if non-default */
567 puts("Active flags:\n");
Joe Hershberger267541f2012-12-11 22:16:34 -0600568 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
569 "Variable Access");
570 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
571 "---------------");
Joe Hershbergerfffad712012-12-11 22:16:33 -0600572 hwalk_r(&env_htab, print_active_flags);
573 return 0;
574}
575#endif
576
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200577/*
Peter Tyser246c6922009-10-25 15:12:56 -0500578 * Interactively edit an environment variable
579 */
580#if defined(CONFIG_CMD_EDITENV)
Kim Phillips088f1b12012-10-29 13:34:31 +0000581static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc,
582 char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500583{
584 char buffer[CONFIG_SYS_CBSIZE];
585 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500586
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200587 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000588 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500589
Joe Hershberger94b467b2015-05-20 14:27:21 -0500590 /* before import into hashtable */
591 if (!(gd->flags & GD_FLG_ENV_READY))
592 return 1;
593
Peter Tyser246c6922009-10-25 15:12:56 -0500594 /* Set read buffer to initial value or empty sting */
595 init_val = getenv(argv[1]);
596 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200597 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500598 else
599 buffer[0] = '\0';
600
Simon Glasse1bf8242014-04-10 20:01:27 -0600601 if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)
Joe Hershberger18a3cce2013-02-08 10:12:34 +0000602 return 1;
Peter Tyser246c6922009-10-25 15:12:56 -0500603
Joe Hershberger94b467b2015-05-20 14:27:21 -0500604 if (buffer[0] == '\0') {
605 const char * const _argv[3] = { "setenv", argv[1], NULL };
606
607 return _do_env_set(0, 2, (char * const *)_argv, H_INTERACTIVE);
608 } else {
609 const char * const _argv[4] = { "setenv", argv[1], buffer,
610 NULL };
611
612 return _do_env_set(0, 3, (char * const *)_argv, H_INTERACTIVE);
613 }
Peter Tyser246c6922009-10-25 15:12:56 -0500614}
615#endif /* CONFIG_CMD_EDITENV */
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000616#endif /* CONFIG_SPL_BUILD */
Peter Tyser246c6922009-10-25 15:12:56 -0500617
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200618/*
wdenka68d3ed2002-10-11 08:38:32 +0000619 * Look up variable from environment,
620 * return address of storage for that variable,
621 * or NULL if not found
622 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200623char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000624{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000625 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200626 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000627
Wolfgang Denk91a76752010-07-24 20:22:02 +0200628 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000629
Igor Grinbergd09b1782011-11-07 01:13:59 +0000630 e.key = name;
631 e.data = NULL;
Joe Hershbergerc4e00572012-12-11 22:16:19 -0600632 hsearch_r(e, FIND, &ep, &env_htab, 0);
wdenka68d3ed2002-10-11 08:38:32 +0000633
Macpaul Linf3c615b2011-04-26 16:16:45 +0000634 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000635 }
636
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200637 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200638 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
639 return (char *)(gd->env_buf);
640
641 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000642}
643
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200644/*
645 * Look up variable from environment for restricted C runtime env.
646 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200647int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000648{
649 int i, nxt;
650
Igor Grinbergd09b1782011-11-07 01:13:59 +0000651 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000652 int val, n;
653
Macpaul Linf3c615b2011-04-26 16:16:45 +0000654 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
655 if (nxt >= CONFIG_ENV_SIZE)
656 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000657 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000658
659 val = envmatch((uchar *)name, i);
660 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000661 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200662
wdenka68d3ed2002-10-11 08:38:32 +0000663 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000664 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000665 *buf = env_get_char(val++);
666 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200667 return n;
668 }
669
670 if (n)
671 *--buf = '\0';
672
Wolfgang Denka02a8842011-05-04 10:29:49 +0000673 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
674 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200675
676 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000677 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000678
Macpaul Linf3c615b2011-04-26 16:16:45 +0000679 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000680}
681
Simon Glass4a9b4132011-10-14 13:25:18 +0000682/**
683 * Decode the integer value of an environment variable and return it.
684 *
685 * @param name Name of environemnt variable
686 * @param base Number base to use (normally 10, or 16 for hex)
687 * @param default_val Default value to return if the variable is not
688 * found
689 * @return the decoded value, or default_val if not found
690 */
691ulong getenv_ulong(const char *name, int base, ulong default_val)
692{
693 /*
694 * We can use getenv() here, even before relocation, since the
695 * environment variable value is an integer and thus short.
696 */
697 const char *str = getenv(name);
698
699 return str ? simple_strtoul(str, NULL, base) : default_val;
700}
701
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000702#ifndef CONFIG_SPL_BUILD
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500703#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Kim Phillips088f1b12012-10-29 13:34:31 +0000704static int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc,
705 char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000706{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000707 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000708
Macpaul Linf3c615b2011-04-26 16:16:45 +0000709 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000710}
wdenk8bde7f72003-06-27 21:31:46 +0000711
Mike Frysingerba69dc22008-12-30 02:59:25 -0500712U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200713 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600714 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200715 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500716);
wdenka68d3ed2002-10-11 08:38:32 +0000717#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000718#endif /* CONFIG_SPL_BUILD */
wdenka68d3ed2002-10-11 08:38:32 +0000719
720
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200721/*
wdenka68d3ed2002-10-11 08:38:32 +0000722 * Match a name / name=value pair
723 *
724 * s1 is either a simple 'name', or a 'name=value' pair.
725 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000726 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000727 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000728int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000729{
Joe Hershberger586197d2012-10-03 09:38:50 +0000730 if (s1 == NULL)
731 return -1;
732
wdenka68d3ed2002-10-11 08:38:32 +0000733 while (*s1 == env_get_char(i2++))
734 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000735 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000736
wdenka68d3ed2002-10-11 08:38:32 +0000737 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000738 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000739
Macpaul Linf3c615b2011-04-26 16:16:45 +0000740 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000741}
wdenk8bde7f72003-06-27 21:31:46 +0000742
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000743#ifndef CONFIG_SPL_BUILD
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000744static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
Igor Grinbergd09b1782011-11-07 01:13:59 +0000745 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200746{
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000747 int all = 0, flag = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000748
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000749 debug("Initial value for argc=%d\n", argc);
750 while (--argc > 0 && **++argv == '-') {
751 char *arg = *argv;
752
753 while (*++arg) {
754 switch (*arg) {
755 case 'a': /* default all */
756 all = 1;
757 break;
758 case 'f': /* force */
759 flag |= H_FORCE;
760 break;
761 default:
762 return cmd_usage(cmdtp);
763 }
764 }
765 }
766 debug("Final value for argc=%d\n", argc);
767 if (all && (argc == 0)) {
768 /* Reset the whole environment */
769 set_default_env("## Resetting to default environment\n");
770 return 0;
771 }
772 if (!all && (argc > 0)) {
773 /* Reset individual variables */
774 set_default_vars(argc, argv);
775 return 0;
776 }
777
778 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200779}
wdenk8bde7f72003-06-27 21:31:46 +0000780
Igor Grinbergd09b1782011-11-07 01:13:59 +0000781static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
782 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200783{
Joe Hershberger9d8d6612012-12-11 22:16:36 -0600784 int env_flag = H_INTERACTIVE;
785 int ret = 0;
786
787 debug("Initial value for argc=%d\n", argc);
788 while (argc > 1 && **(argv + 1) == '-') {
789 char *arg = *++argv;
790
791 --argc;
792 while (*++arg) {
793 switch (*arg) {
794 case 'f': /* force */
795 env_flag |= H_FORCE;
796 break;
797 default:
798 return CMD_RET_USAGE;
799 }
800 }
801 }
802 debug("Final value for argc=%d\n", argc);
803
804 env_id++;
805
806 while (--argc > 0) {
807 char *name = *++argv;
808
809 if (!hdelete_r(name, &env_htab, env_flag))
810 ret = 1;
811 }
812
813 return ret;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200814}
815
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500816#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200817/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100818 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200819 * -t: export as text format; if size is given, data will be
820 * padded with '\0' bytes; if not, one terminating '\0'
821 * will be added (which is included in the "filesize"
822 * setting so you can for exmple copy this to flash and
823 * keep the termination).
824 * -b: export as binary format (name=value pairs separated by
825 * '\0', list end marked by double "\0\0")
826 * -c: export as checksum protected environment format as
827 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100828 * -s size:
829 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200830 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100831 * var... List of variable names that get included into the
832 * export. Without arguments, the whole environment gets
833 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200834 *
835 * With "-c" and size is NOT given, then the export command will
836 * format the data as currently used for the persistent storage,
837 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
838 * prepend a valid CRC32 checksum and, in case of resundant
839 * environment, a "current" redundancy flag. If size is given, this
840 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
841 * checksum and redundancy flag will be inserted.
842 *
843 * With "-b" and "-t", always only the real data (including a
844 * terminating '\0' byte) will be written; here the optional size
845 * argument will be used to make sure not to overflow the user
846 * provided buffer; the command will abort if the size is not
847 * sufficient. Any remainign space will be '\0' padded.
848 *
849 * On successful return, the variable "filesize" will be set.
850 * Note that filesize includes the trailing/terminating '\0' byte(s).
851 *
852 * Usage szenario: create a text snapshot/backup of the current settings:
853 *
854 * => env export -t 100000
855 * => era ${backup_addr} +${filesize}
856 * => cp.b 100000 ${backup_addr} ${filesize}
857 *
858 * Re-import this snapshot, deleting all other settings:
859 *
860 * => env import -d -t ${backup_addr}
861 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000862static int do_env_export(cmd_tbl_t *cmdtp, int flag,
863 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200864{
865 char buf[32];
Simon Glassfd37dac2013-10-25 23:01:31 -0600866 ulong addr;
867 char *ptr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100868 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200869 ssize_t len;
870 env_t *envp;
871 char sep = '\n';
872 int chk = 0;
873 int fmt = 0;
874
875 cmd = *argv;
876
877 while (--argc > 0 && **++argv == '-') {
878 char *arg = *argv;
879 while (*++arg) {
880 switch (*arg) {
881 case 'b': /* raw binary format */
882 if (fmt++)
883 goto sep_err;
884 sep = '\0';
885 break;
886 case 'c': /* external checksum format */
887 if (fmt++)
888 goto sep_err;
889 sep = '\0';
890 chk = 1;
891 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100892 case 's': /* size given */
893 if (--argc <= 0)
894 return cmd_usage(cmdtp);
895 size = simple_strtoul(*++argv, NULL, 16);
896 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200897 case 't': /* text format */
898 if (fmt++)
899 goto sep_err;
900 sep = '\n';
901 break;
902 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000903 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200904 }
905 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100906NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200907 }
908
Macpaul Linf3c615b2011-04-26 16:16:45 +0000909 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000910 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200911
Simon Glassfd37dac2013-10-25 23:01:31 -0600912 addr = simple_strtoul(argv[0], NULL, 16);
913 ptr = map_sysmem(addr, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200914
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100915 if (size)
Simon Glassfd37dac2013-10-25 23:01:31 -0600916 memset(ptr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100917
918 argc--;
919 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200920
921 if (sep) { /* export as text file */
Wolfgang Denkea009d42013-03-23 23:50:28 +0000922 len = hexport_r(&env_htab, sep,
923 H_MATCH_KEY | H_MATCH_IDENT,
Simon Glassfd37dac2013-10-25 23:01:31 -0600924 &ptr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200925 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000926 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200927 return 1;
928 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100929 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200930 setenv("filesize", buf);
931
932 return 0;
933 }
934
Simon Glassfd37dac2013-10-25 23:01:31 -0600935 envp = (env_t *)ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200936
937 if (chk) /* export as checksum protected block */
938 res = (char *)envp->data;
939 else /* export as raw binary data */
Simon Glassfd37dac2013-10-25 23:01:31 -0600940 res = ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200941
Wolfgang Denkea009d42013-03-23 23:50:28 +0000942 len = hexport_r(&env_htab, '\0',
943 H_MATCH_KEY | H_MATCH_IDENT,
944 &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200945 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000946 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200947 return 1;
948 }
949
950 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000951 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200952#ifdef CONFIG_ENV_ADDR_REDUND
953 envp->flags = ACTIVE_FLAG;
954#endif
955 }
Simon Glass41ef3722013-02-24 17:33:22 +0000956 setenv_hex("filesize", len + offsetof(env_t, data));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200957
958 return 0;
959
960sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000961 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200962 return 1;
963}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500964#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200965
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500966#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200967/*
Alexander Hollerecd14462014-07-14 17:49:55 +0200968 * env import [-d] [-t [-r] | -b | -c] addr [size]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200969 * -d: delete existing environment before importing;
970 * otherwise overwrite / append to existion definitions
971 * -t: assume text format; either "size" must be given or the
972 * text data must be '\0' terminated
Alexander Hollerecd14462014-07-14 17:49:55 +0200973 * -r: handle CRLF like LF, that means exported variables with
974 * a content which ends with \r won't get imported. Used
975 * to import text files created with editors which are using CRLF
976 * for line endings. Only effective in addition to -t.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200977 * -b: assume binary format ('\0' separated, "\0\0" terminated)
978 * -c: assume checksum protected environment format
979 * addr: memory address to read from
980 * size: length of input data; if missing, proper '\0'
981 * termination is mandatory
982 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000983static int do_env_import(cmd_tbl_t *cmdtp, int flag,
984 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200985{
Simon Glassfd37dac2013-10-25 23:01:31 -0600986 ulong addr;
987 char *cmd, *ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200988 char sep = '\n';
989 int chk = 0;
990 int fmt = 0;
991 int del = 0;
Alexander Hollerecd14462014-07-14 17:49:55 +0200992 int crlf_is_lf = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200993 size_t size;
994
995 cmd = *argv;
996
997 while (--argc > 0 && **++argv == '-') {
998 char *arg = *argv;
999 while (*++arg) {
1000 switch (*arg) {
1001 case 'b': /* raw binary format */
1002 if (fmt++)
1003 goto sep_err;
1004 sep = '\0';
1005 break;
1006 case 'c': /* external checksum format */
1007 if (fmt++)
1008 goto sep_err;
1009 sep = '\0';
1010 chk = 1;
1011 break;
1012 case 't': /* text format */
1013 if (fmt++)
1014 goto sep_err;
1015 sep = '\n';
1016 break;
Alexander Hollerecd14462014-07-14 17:49:55 +02001017 case 'r': /* handle CRLF like LF */
1018 crlf_is_lf = 1;
1019 break;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001020 case 'd':
1021 del = 1;
1022 break;
1023 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +00001024 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001025 }
1026 }
1027 }
1028
Macpaul Linf3c615b2011-04-26 16:16:45 +00001029 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001030 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001031
1032 if (!fmt)
1033 printf("## Warning: defaulting to text format\n");
1034
Alexander Hollerecd14462014-07-14 17:49:55 +02001035 if (sep != '\n' && crlf_is_lf )
1036 crlf_is_lf = 0;
1037
Simon Glassfd37dac2013-10-25 23:01:31 -06001038 addr = simple_strtoul(argv[0], NULL, 16);
1039 ptr = map_sysmem(addr, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001040
1041 if (argc == 2) {
1042 size = simple_strtoul(argv[1], NULL, 16);
Tom Rini3775dcd2014-03-04 15:52:35 -05001043 } else if (argc == 1 && chk) {
1044 puts("## Error: external checksum format must pass size\n");
1045 return CMD_RET_FAILURE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001046 } else {
Simon Glassfd37dac2013-10-25 23:01:31 -06001047 char *s = ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001048
1049 size = 0;
1050
1051 while (size < MAX_ENV_SIZE) {
1052 if ((*s == sep) && (*(s+1) == '\0'))
1053 break;
1054 ++s;
1055 ++size;
1056 }
1057 if (size == MAX_ENV_SIZE) {
1058 printf("## Warning: Input data exceeds %d bytes"
1059 " - truncated\n", MAX_ENV_SIZE);
1060 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +00001061 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +00001062 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001063 }
1064
1065 if (chk) {
1066 uint32_t crc;
Simon Glassfd37dac2013-10-25 23:01:31 -06001067 env_t *ep = (env_t *)ptr;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001068
1069 size -= offsetof(env_t, data);
1070 memcpy(&crc, &ep->crc, sizeof(crc));
1071
1072 if (crc32(0, ep->data, size) != crc) {
1073 puts("## Error: bad CRC, import failed\n");
1074 return 1;
1075 }
Simon Glassfd37dac2013-10-25 23:01:31 -06001076 ptr = (char *)ep->data;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001077 }
1078
Alexander Hollerecd14462014-07-14 17:49:55 +02001079 if (himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR,
1080 crlf_is_lf, 0, NULL) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001081 error("Environment import failed: errno = %d\n", errno);
1082 return 1;
1083 }
1084 gd->flags |= GD_FLG_ENV_READY;
1085
1086 return 0;
1087
1088sep_err:
1089 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
1090 cmd);
1091 return 1;
1092}
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001093#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001094
Andrew Ruder88733e22013-10-22 19:07:34 -05001095#if defined(CONFIG_CMD_ENV_EXISTS)
1096static int do_env_exists(cmd_tbl_t *cmdtp, int flag, int argc,
1097 char * const argv[])
1098{
1099 ENTRY e, *ep;
1100
1101 if (argc < 2)
1102 return CMD_RET_USAGE;
1103
1104 e.key = argv[1];
1105 e.data = NULL;
1106 hsearch_r(e, FIND, &ep, &env_htab, 0);
1107
1108 return (ep == NULL) ? 1 : 0;
1109}
1110#endif
1111
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001112/*
1113 * New command line interface: "env" command with subcommands
1114 */
1115static cmd_tbl_t cmd_env_sub[] = {
1116#if defined(CONFIG_CMD_ASKENV)
1117 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
1118#endif
1119 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
Joe Hershberger9d8d6612012-12-11 22:16:36 -06001120 U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""),
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001121#if defined(CONFIG_CMD_EDITENV)
1122 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
1123#endif
Joe Hershberger5e2b3e02012-12-11 22:16:25 -06001124#if defined(CONFIG_CMD_ENV_CALLBACK)
1125 U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
1126#endif
Joe Hershbergerfffad712012-12-11 22:16:33 -06001127#if defined(CONFIG_CMD_ENV_FLAGS)
1128 U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
1129#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001130#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001131 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001132#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001133#if defined(CONFIG_CMD_GREPENV)
1134 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
1135#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001136#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001137 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -05001138#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001139 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1140#if defined(CONFIG_CMD_RUN)
1141 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1142#endif
1143#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1144 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1145#endif
1146 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
Andrew Ruder88733e22013-10-22 19:07:34 -05001147#if defined(CONFIG_CMD_ENV_EXISTS)
1148 U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""),
1149#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001150};
1151
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02001152#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +02001153void env_reloc(void)
1154{
1155 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1156}
1157#endif
1158
Macpaul Linf3c615b2011-04-26 16:16:45 +00001159static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001160{
1161 cmd_tbl_t *cp;
1162
Thomas Weber5904da02010-11-24 13:07:52 +01001163 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001164 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +01001165
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001166 /* drop initial "env" arg */
1167 argc--;
1168 argv++;
1169
1170 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1171
1172 if (cp)
1173 return cp->cmd(cmdtp, flag, argc, argv);
1174
Simon Glass4c12eeb2011-12-10 08:44:01 +00001175 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001176}
1177
Kim Phillips088f1b12012-10-29 13:34:31 +00001178#ifdef CONFIG_SYS_LONGHELP
1179static char env_help_text[] =
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001180#if defined(CONFIG_CMD_ASKENV)
1181 "ask name [message] [size] - ask for environment variable\nenv "
1182#endif
Joe Hershberger5e2b3e02012-12-11 22:16:25 -06001183#if defined(CONFIG_CMD_ENV_CALLBACK)
1184 "callbacks - print callbacks and their associated variables\nenv "
1185#endif
Gerlando Falautob64b7c32012-08-24 00:11:41 +00001186 "default [-f] -a - [forcibly] reset default environment\n"
1187 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
Joe Hershberger9d8d6612012-12-11 22:16:36 -06001188 "env delete [-f] var [...] - [forcibly] delete variable(s)\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001189#if defined(CONFIG_CMD_EDITENV)
1190 "env edit name - edit environment variable\n"
1191#endif
Andrew Ruder88733e22013-10-22 19:07:34 -05001192#if defined(CONFIG_CMD_ENV_EXISTS)
1193 "env exists name - tests for existence of variable\n"
1194#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001195#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denk37f2fe72011-11-06 22:49:44 +01001196 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001197#endif
Joe Hershbergerfffad712012-12-11 22:16:33 -06001198#if defined(CONFIG_CMD_ENV_FLAGS)
1199 "env flags - print variables that have non-default flags\n"
1200#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001201#if defined(CONFIG_CMD_GREPENV)
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001202#ifdef CONFIG_REGEX
1203 "env grep [-e] [-n | -v | -b] string [...] - search environment\n"
1204#else
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001205 "env grep [-n | -v | -b] string [...] - search environment\n"
Kim Phillipsa000b792011-04-05 07:15:14 +00001206#endif
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001207#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001208#if defined(CONFIG_CMD_IMPORTENV)
Alexander Hollerecd14462014-07-14 17:49:55 +02001209 "env import [-d] [-t [-r] | -b | -c] addr [size] - import environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001210#endif
Joe Hershbergerbe112352012-12-11 22:16:23 -06001211 "env print [-a | name ...] - print environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001212#if defined(CONFIG_CMD_RUN)
1213 "env run var [...] - run commands in an environment variable\n"
1214#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001215#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001216 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001217#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001218 "env set [-f] name [arg ...]\n";
1219#endif
1220
1221U_BOOT_CMD(
1222 env, CONFIG_SYS_MAXARGS, 1, do_env,
1223 "environment handling commands", env_help_text
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001224);
1225
1226/*
1227 * Old command line interface, kept for compatibility
1228 */
wdenk8bde7f72003-06-27 21:31:46 +00001229
Peter Tyser246c6922009-10-25 15:12:56 -05001230#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -04001231U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001232 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -05001233 "edit environment variable",
1234 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001235 " - edit environment variable 'name'",
1236 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -05001237);
1238#endif
1239
Mike Frysinger722b0612010-10-20 03:52:39 -04001240U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001241 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001242 "print environment variables",
Joe Hershbergerbe112352012-12-11 22:16:23 -06001243 "[-a]\n - print [all] values of all environment variables\n"
wdenk8bde7f72003-06-27 21:31:46 +00001244 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001245 " - print value of environment variable 'name'",
1246 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001247);
1248
Kim Phillipsa000b792011-04-05 07:15:14 +00001249#ifdef CONFIG_CMD_GREPENV
1250U_BOOT_CMD_COMPLETE(
1251 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1252 "search environment variables",
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001253#ifdef CONFIG_REGEX
1254 "[-e] [-n | -v | -b] string ...\n"
1255#else
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001256 "[-n | -v | -b] string ...\n"
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001257#endif
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001258 " - list environment name=value pairs matching 'string'\n"
Wolfgang Denkbe29df62013-03-23 23:50:32 +00001259#ifdef CONFIG_REGEX
1260 " \"-e\": enable regular expressions;\n"
1261#endif
Wolfgang Denkd87244d2013-03-23 23:50:30 +00001262 " \"-n\": search variable names; \"-v\": search values;\n"
1263 " \"-b\": search both names and values (default)",
Kim Phillipsa000b792011-04-05 07:15:14 +00001264 var_complete
1265);
1266#endif
1267
Mike Frysinger722b0612010-10-20 03:52:39 -04001268U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001269 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001270 "set environment variables",
Joe Hershberger24ab5a12012-12-11 22:16:35 -06001271 "[-f] name value ...\n"
1272 " - [forcibly] set environment variable 'name' to 'value ...'\n"
1273 "setenv [-f] name\n"
1274 " - [forcibly] delete environment variable 'name'",
Mike Frysinger722b0612010-10-20 03:52:39 -04001275 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001276);
1277
Jon Loeligerc76fe472007-07-08 18:02:23 -05001278#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001279
wdenk0d498392003-07-01 21:06:45 +00001280U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001281 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001282 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001283 "name [message] [size]\n"
Wolfgang Denk7d855912013-02-20 04:53:16 +00001284 " - get environment variable 'name' from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001285);
Jon Loeliger90253172007-07-10 11:02:44 -05001286#endif
wdenk8bde7f72003-06-27 21:31:46 +00001287
Jon Loeligerc76fe472007-07-08 18:02:23 -05001288#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001289U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001290 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001291 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001292 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001293 " - run the commands in the environment variable(s) 'var'",
1294 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001295);
Jon Loeliger90253172007-07-10 11:02:44 -05001296#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +00001297#endif /* CONFIG_SPL_BUILD */