smegw01: Fix inverted CONFIG_SYS_BOOT_LOCKED logic
[platform/kernel/u-boot.git] / cmd / nvedit.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000-2013
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  *
6  * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7  * Andreas Heppel <aheppel@sysgo.de>
8  *
9  * Copyright 2011 Freescale Semiconductor, Inc.
10  */
11
12 /*
13  * Support for persistent environment data
14  *
15  * The "environment" is stored on external storage as a list of '\0'
16  * terminated "name=value" strings. The end of the list is marked by
17  * a double '\0'. The environment is preceded by a 32 bit CRC over
18  * the data part and, in case of redundant environment, a byte of
19  * flags.
20  *
21  * This linearized representation will also be used before
22  * relocation, i. e. as long as we don't have a full C runtime
23  * environment. After that, we use a hash table.
24  */
25
26 #include <common.h>
27 #include <cli.h>
28 #include <command.h>
29 #include <console.h>
30 #include <env.h>
31 #include <env_internal.h>
32 #include <log.h>
33 #include <search.h>
34 #include <errno.h>
35 #include <malloc.h>
36 #include <mapmem.h>
37 #include <asm/global_data.h>
38 #include <linux/bitops.h>
39 #include <u-boot/crc.h>
40 #include <linux/stddef.h>
41 #include <asm/byteorder.h>
42 #include <asm/io.h>
43
44 DECLARE_GLOBAL_DATA_PTR;
45
46 /*
47  * Maximum expected input data size for import command
48  */
49 #define MAX_ENV_SIZE    (1 << 20)       /* 1 MiB */
50
51 /*
52  * This variable is incremented on each do_env_set(), so it can
53  * be used via env_get_id() as an indication, if the environment
54  * has changed or not. So it is possible to reread an environment
55  * variable only if the environment was changed ... done so for
56  * example in NetInitLoop()
57  */
58 static int env_id = 1;
59
60 int env_get_id(void)
61 {
62         return env_id;
63 }
64
65 #ifndef CONFIG_SPL_BUILD
66 /*
67  * Command interface: print one or all environment variables
68  *
69  * Returns 0 in case of error, or length of printed string
70  */
71 static int env_print(char *name, int flag)
72 {
73         char *res = NULL;
74         ssize_t len;
75
76         if (name) {             /* print a single name */
77                 struct env_entry e, *ep;
78
79                 e.key = name;
80                 e.data = NULL;
81                 hsearch_r(e, ENV_FIND, &ep, &env_htab, flag);
82                 if (ep == NULL)
83                         return 0;
84                 len = printf("%s=%s\n", ep->key, ep->data);
85                 return len;
86         }
87
88         /* print whole list */
89         len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
90
91         if (len > 0) {
92                 puts(res);
93                 free(res);
94                 return len;
95         }
96
97         /* should never happen */
98         printf("## Error: cannot export environment\n");
99         return 0;
100 }
101
102 static int do_env_print(struct cmd_tbl *cmdtp, int flag, int argc,
103                         char *const argv[])
104 {
105         int i;
106         int rcode = 0;
107         int env_flag = H_HIDE_DOT;
108
109 #if defined(CONFIG_CMD_NVEDIT_EFI)
110         if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
111                 return do_env_print_efi(cmdtp, flag, --argc, ++argv);
112 #endif
113
114         if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
115                 argc--;
116                 argv++;
117                 env_flag &= ~H_HIDE_DOT;
118         }
119
120         if (argc == 1) {
121                 /* print all env vars */
122                 rcode = env_print(NULL, env_flag);
123                 if (!rcode)
124                         return 1;
125                 printf("\nEnvironment size: %d/%ld bytes\n",
126                         rcode, (ulong)ENV_SIZE);
127                 return 0;
128         }
129
130         /* print selected env vars */
131         env_flag &= ~H_HIDE_DOT;
132         for (i = 1; i < argc; ++i) {
133                 int rc = env_print(argv[i], env_flag);
134                 if (!rc) {
135                         printf("## Error: \"%s\" not defined\n", argv[i]);
136                         ++rcode;
137                 }
138         }
139
140         return rcode;
141 }
142
143 #ifdef CONFIG_CMD_GREPENV
144 static int do_env_grep(struct cmd_tbl *cmdtp, int flag,
145                        int argc, char *const argv[])
146 {
147         char *res = NULL;
148         int len, grep_how, grep_what;
149
150         if (argc < 2)
151                 return CMD_RET_USAGE;
152
153         grep_how  = H_MATCH_SUBSTR;     /* default: substring search    */
154         grep_what = H_MATCH_BOTH;       /* default: grep names and values */
155
156         while (--argc > 0 && **++argv == '-') {
157                 char *arg = *argv;
158                 while (*++arg) {
159                         switch (*arg) {
160 #ifdef CONFIG_REGEX
161                         case 'e':               /* use regex matching */
162                                 grep_how  = H_MATCH_REGEX;
163                                 break;
164 #endif
165                         case 'n':               /* grep for name */
166                                 grep_what = H_MATCH_KEY;
167                                 break;
168                         case 'v':               /* grep for value */
169                                 grep_what = H_MATCH_DATA;
170                                 break;
171                         case 'b':               /* grep for both */
172                                 grep_what = H_MATCH_BOTH;
173                                 break;
174                         case '-':
175                                 goto DONE;
176                         default:
177                                 return CMD_RET_USAGE;
178                         }
179                 }
180         }
181
182 DONE:
183         len = hexport_r(&env_htab, '\n',
184                         flag | grep_what | grep_how,
185                         &res, 0, argc, argv);
186
187         if (len > 0) {
188                 puts(res);
189                 free(res);
190         }
191
192         if (len < 2)
193                 return 1;
194
195         return 0;
196 }
197 #endif
198 #endif /* CONFIG_SPL_BUILD */
199
200 /*
201  * Set a new environment variable,
202  * or replace or delete an existing one.
203  */
204 static int _do_env_set(int flag, int argc, char *const argv[], int env_flag)
205 {
206         int   i, len;
207         char  *name, *value, *s;
208         struct env_entry e, *ep;
209
210         debug("Initial value for argc=%d\n", argc);
211
212 #if !IS_ENABLED(CONFIG_SPL_BUILD) && IS_ENABLED(CONFIG_CMD_NVEDIT_EFI)
213         if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
214                 return do_env_set_efi(NULL, flag, --argc, ++argv);
215 #endif
216
217         while (argc > 1 && **(argv + 1) == '-') {
218                 char *arg = *++argv;
219
220                 --argc;
221                 while (*++arg) {
222                         switch (*arg) {
223                         case 'f':               /* force */
224                                 env_flag |= H_FORCE;
225                                 break;
226                         default:
227                                 return CMD_RET_USAGE;
228                         }
229                 }
230         }
231         debug("Final value for argc=%d\n", argc);
232         name = argv[1];
233
234         if (strchr(name, '=')) {
235                 printf("## Error: illegal character '='"
236                        "in variable name \"%s\"\n", name);
237                 return 1;
238         }
239
240         env_id++;
241
242         /* Delete only ? */
243         if (argc < 3 || argv[2] == NULL) {
244                 int rc = hdelete_r(name, &env_htab, env_flag);
245
246                 /* If the variable didn't exist, don't report an error */
247                 return rc && rc != -ENOENT ? 1 : 0;
248         }
249
250         /*
251          * Insert / replace new value
252          */
253         for (i = 2, len = 0; i < argc; ++i)
254                 len += strlen(argv[i]) + 1;
255
256         value = malloc(len);
257         if (value == NULL) {
258                 printf("## Can't malloc %d bytes\n", len);
259                 return 1;
260         }
261         for (i = 2, s = value; i < argc; ++i) {
262                 char *v = argv[i];
263
264                 while ((*s++ = *v++) != '\0')
265                         ;
266                 *(s - 1) = ' ';
267         }
268         if (s != value)
269                 *--s = '\0';
270
271         e.key   = name;
272         e.data  = value;
273         hsearch_r(e, ENV_ENTER, &ep, &env_htab, env_flag);
274         free(value);
275         if (!ep) {
276                 printf("## Error inserting \"%s\" variable, errno=%d\n",
277                         name, errno);
278                 return 1;
279         }
280
281         return 0;
282 }
283
284 int env_set(const char *varname, const char *varvalue)
285 {
286         const char * const argv[4] = { "setenv", varname, varvalue, NULL };
287
288         /* before import into hashtable */
289         if (!(gd->flags & GD_FLG_ENV_READY))
290                 return 1;
291
292         if (varvalue == NULL || varvalue[0] == '\0')
293                 return _do_env_set(0, 2, (char * const *)argv, H_PROGRAMMATIC);
294         else
295                 return _do_env_set(0, 3, (char * const *)argv, H_PROGRAMMATIC);
296 }
297
298 #ifndef CONFIG_SPL_BUILD
299 static int do_env_set(struct cmd_tbl *cmdtp, int flag, int argc,
300                       char *const argv[])
301 {
302         if (argc < 2)
303                 return CMD_RET_USAGE;
304
305         return _do_env_set(flag, argc, argv, H_INTERACTIVE);
306 }
307
308 /*
309  * Prompt for environment variable
310  */
311 #if defined(CONFIG_CMD_ASKENV)
312 int do_env_ask(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
313 {
314         char message[CONFIG_SYS_CBSIZE];
315         int i, len, pos, size;
316         char *local_args[4];
317         char *endptr;
318
319         local_args[0] = argv[0];
320         local_args[1] = argv[1];
321         local_args[2] = NULL;
322         local_args[3] = NULL;
323
324         /*
325          * Check the syntax:
326          *
327          * env_ask envname [message1 ...] [size]
328          */
329         if (argc == 1)
330                 return CMD_RET_USAGE;
331
332         /*
333          * We test the last argument if it can be converted
334          * into a decimal number.  If yes, we assume it's
335          * the size.  Otherwise we echo it as part of the
336          * message.
337          */
338         i = dectoul(argv[argc - 1], &endptr);
339         if (*endptr != '\0') {                  /* no size */
340                 size = CONFIG_SYS_CBSIZE - 1;
341         } else {                                /* size given */
342                 size = i;
343                 --argc;
344         }
345
346         if (argc <= 2) {
347                 sprintf(message, "Please enter '%s': ", argv[1]);
348         } else {
349                 /* env_ask envname message1 ... messagen [size] */
350                 for (i = 2, pos = 0; i < argc && pos+1 < sizeof(message); i++) {
351                         if (pos)
352                                 message[pos++] = ' ';
353
354                         strncpy(message + pos, argv[i], sizeof(message) - pos);
355                         pos += strlen(argv[i]);
356                 }
357                 if (pos < sizeof(message) - 1) {
358                         message[pos++] = ' ';
359                         message[pos] = '\0';
360                 } else
361                         message[CONFIG_SYS_CBSIZE - 1] = '\0';
362         }
363
364         if (size >= CONFIG_SYS_CBSIZE)
365                 size = CONFIG_SYS_CBSIZE - 1;
366
367         if (size <= 0)
368                 return 1;
369
370         /* prompt for input */
371         len = cli_readline(message);
372
373         if (size < len)
374                 console_buffer[size] = '\0';
375
376         len = 2;
377         if (console_buffer[0] != '\0') {
378                 local_args[2] = console_buffer;
379                 len = 3;
380         }
381
382         /* Continue calling setenv code */
383         return _do_env_set(flag, len, local_args, H_INTERACTIVE);
384 }
385 #endif
386
387 #if defined(CONFIG_CMD_ENV_CALLBACK)
388 static int print_static_binding(const char *var_name, const char *callback_name,
389                                 void *priv)
390 {
391         printf("\t%-20s %-20s\n", var_name, callback_name);
392
393         return 0;
394 }
395
396 static int print_active_callback(struct env_entry *entry)
397 {
398         struct env_clbk_tbl *clbkp;
399         int i;
400         int num_callbacks;
401
402         if (entry->callback == NULL)
403                 return 0;
404
405         /* look up the callback in the linker-list */
406         num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
407         for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
408              i < num_callbacks;
409              i++, clbkp++) {
410 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
411                 if (entry->callback == clbkp->callback + gd->reloc_off)
412 #else
413                 if (entry->callback == clbkp->callback)
414 #endif
415                         break;
416         }
417
418         if (i == num_callbacks)
419                 /* this should probably never happen, but just in case... */
420                 printf("\t%-20s %p\n", entry->key, entry->callback);
421         else
422                 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
423
424         return 0;
425 }
426
427 /*
428  * Print the callbacks available and what they are bound to
429  */
430 int do_env_callback(struct cmd_tbl *cmdtp, int flag, int argc,
431                     char *const argv[])
432 {
433         struct env_clbk_tbl *clbkp;
434         int i;
435         int num_callbacks;
436
437         /* Print the available callbacks */
438         puts("Available callbacks:\n");
439         puts("\tCallback Name\n");
440         puts("\t-------------\n");
441         num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
442         for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
443              i < num_callbacks;
444              i++, clbkp++)
445                 printf("\t%s\n", clbkp->name);
446         puts("\n");
447
448         /* Print the static bindings that may exist */
449         puts("Static callback bindings:\n");
450         printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
451         printf("\t%-20s %-20s\n", "-------------", "-------------");
452         env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding, NULL);
453         puts("\n");
454
455         /* walk through each variable and print the callback if it has one */
456         puts("Active callback bindings:\n");
457         printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
458         printf("\t%-20s %-20s\n", "-------------", "-------------");
459         hwalk_r(&env_htab, print_active_callback);
460         return 0;
461 }
462 #endif
463
464 #if defined(CONFIG_CMD_ENV_FLAGS)
465 static int print_static_flags(const char *var_name, const char *flags,
466                               void *priv)
467 {
468         enum env_flags_vartype type = env_flags_parse_vartype(flags);
469         enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
470
471         printf("\t%-20s %-20s %-20s\n", var_name,
472                 env_flags_get_vartype_name(type),
473                 env_flags_get_varaccess_name(access));
474
475         return 0;
476 }
477
478 static int print_active_flags(struct env_entry *entry)
479 {
480         enum env_flags_vartype type;
481         enum env_flags_varaccess access;
482
483         if (entry->flags == 0)
484                 return 0;
485
486         type = (enum env_flags_vartype)
487                 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
488         access = env_flags_parse_varaccess_from_binflags(entry->flags);
489         printf("\t%-20s %-20s %-20s\n", entry->key,
490                 env_flags_get_vartype_name(type),
491                 env_flags_get_varaccess_name(access));
492
493         return 0;
494 }
495
496 /*
497  * Print the flags available and what variables have flags
498  */
499 int do_env_flags(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
500 {
501         /* Print the available variable types */
502         printf("Available variable type flags (position %d):\n",
503                 ENV_FLAGS_VARTYPE_LOC);
504         puts("\tFlag\tVariable Type Name\n");
505         puts("\t----\t------------------\n");
506         env_flags_print_vartypes();
507         puts("\n");
508
509         /* Print the available variable access types */
510         printf("Available variable access flags (position %d):\n",
511                 ENV_FLAGS_VARACCESS_LOC);
512         puts("\tFlag\tVariable Access Name\n");
513         puts("\t----\t--------------------\n");
514         env_flags_print_varaccess();
515         puts("\n");
516
517         /* Print the static flags that may exist */
518         puts("Static flags:\n");
519         printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
520                 "Variable Access");
521         printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
522                 "---------------");
523         env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags, NULL);
524         puts("\n");
525
526         /* walk through each variable and print the flags if non-default */
527         puts("Active flags:\n");
528         printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
529                 "Variable Access");
530         printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
531                 "---------------");
532         hwalk_r(&env_htab, print_active_flags);
533         return 0;
534 }
535 #endif
536
537 /*
538  * Interactively edit an environment variable
539  */
540 #if defined(CONFIG_CMD_EDITENV)
541 static int do_env_edit(struct cmd_tbl *cmdtp, int flag, int argc,
542                        char *const argv[])
543 {
544         char buffer[CONFIG_SYS_CBSIZE];
545         char *init_val;
546
547         if (argc < 2)
548                 return CMD_RET_USAGE;
549
550         /* before import into hashtable */
551         if (!(gd->flags & GD_FLG_ENV_READY))
552                 return 1;
553
554         /* Set read buffer to initial value or empty sting */
555         init_val = env_get(argv[1]);
556         if (init_val)
557                 snprintf(buffer, CONFIG_SYS_CBSIZE, "%s", init_val);
558         else
559                 buffer[0] = '\0';
560
561         if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)
562                 return 1;
563
564         if (buffer[0] == '\0') {
565                 const char * const _argv[3] = { "setenv", argv[1], NULL };
566
567                 return _do_env_set(0, 2, (char * const *)_argv, H_INTERACTIVE);
568         } else {
569                 const char * const _argv[4] = { "setenv", argv[1], buffer,
570                         NULL };
571
572                 return _do_env_set(0, 3, (char * const *)_argv, H_INTERACTIVE);
573         }
574 }
575 #endif /* CONFIG_CMD_EDITENV */
576
577 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
578 static int do_env_save(struct cmd_tbl *cmdtp, int flag, int argc,
579                        char *const argv[])
580 {
581         return env_save() ? 1 : 0;
582 }
583
584 U_BOOT_CMD(
585         saveenv, 1, 0,  do_env_save,
586         "save environment variables to persistent storage",
587         ""
588 );
589
590 #if defined(CONFIG_CMD_ERASEENV)
591 static int do_env_erase(struct cmd_tbl *cmdtp, int flag, int argc,
592                         char *const argv[])
593 {
594         return env_erase() ? 1 : 0;
595 }
596
597 U_BOOT_CMD(
598         eraseenv, 1, 0, do_env_erase,
599         "erase environment variables from persistent storage",
600         ""
601 );
602 #endif
603 #endif
604
605 #if defined(CONFIG_CMD_NVEDIT_LOAD)
606 static int do_env_load(struct cmd_tbl *cmdtp, int flag, int argc,
607                        char *const argv[])
608 {
609         return env_reload() ? 1 : 0;
610 }
611 #endif
612
613 #if defined(CONFIG_CMD_NVEDIT_SELECT)
614 static int do_env_select(struct cmd_tbl *cmdtp, int flag, int argc,
615                          char *const argv[])
616 {
617         return env_select(argv[1]) ? 1 : 0;
618 }
619 #endif
620
621 #endif /* CONFIG_SPL_BUILD */
622
623 #ifndef CONFIG_SPL_BUILD
624 static int do_env_default(struct cmd_tbl *cmdtp, int flag,
625                           int argc, char *const argv[])
626 {
627         int all = 0, env_flag = H_INTERACTIVE;
628
629         debug("Initial value for argc=%d\n", argc);
630         while (--argc > 0 && **++argv == '-') {
631                 char *arg = *argv;
632
633                 while (*++arg) {
634                         switch (*arg) {
635                         case 'a':               /* default all */
636                                 all = 1;
637                                 break;
638                         case 'f':               /* force */
639                                 env_flag |= H_FORCE;
640                                 break;
641                         default:
642                                 return cmd_usage(cmdtp);
643                         }
644                 }
645         }
646         debug("Final value for argc=%d\n", argc);
647         if (all && (argc == 0)) {
648                 /* Reset the whole environment */
649                 env_set_default("## Resetting to default environment\n",
650                                 env_flag);
651                 return 0;
652         }
653         if (!all && (argc > 0)) {
654                 /* Reset individual variables */
655                 env_set_default_vars(argc, argv, env_flag);
656                 return 0;
657         }
658
659         return cmd_usage(cmdtp);
660 }
661
662 static int do_env_delete(struct cmd_tbl *cmdtp, int flag,
663                          int argc, char *const argv[])
664 {
665         int env_flag = H_INTERACTIVE;
666         int ret = 0;
667
668         debug("Initial value for argc=%d\n", argc);
669         while (argc > 1 && **(argv + 1) == '-') {
670                 char *arg = *++argv;
671
672                 --argc;
673                 while (*++arg) {
674                         switch (*arg) {
675                         case 'f':               /* force */
676                                 env_flag |= H_FORCE;
677                                 break;
678                         default:
679                                 return CMD_RET_USAGE;
680                         }
681                 }
682         }
683         debug("Final value for argc=%d\n", argc);
684
685         env_id++;
686
687         while (--argc > 0) {
688                 char *name = *++argv;
689
690                 if (hdelete_r(name, &env_htab, env_flag))
691                         ret = 1;
692         }
693
694         return ret;
695 }
696
697 #ifdef CONFIG_CMD_EXPORTENV
698 /*
699  * env export [-t | -b | -c] [-s size] addr [var ...]
700  *      -t:     export as text format; if size is given, data will be
701  *              padded with '\0' bytes; if not, one terminating '\0'
702  *              will be added (which is included in the "filesize"
703  *              setting so you can for exmple copy this to flash and
704  *              keep the termination).
705  *      -b:     export as binary format (name=value pairs separated by
706  *              '\0', list end marked by double "\0\0")
707  *      -c:     export as checksum protected environment format as
708  *              used for example by "saveenv" command
709  *      -s size:
710  *              size of output buffer
711  *      addr:   memory address where environment gets stored
712  *      var...  List of variable names that get included into the
713  *              export. Without arguments, the whole environment gets
714  *              exported.
715  *
716  * With "-c" and size is NOT given, then the export command will
717  * format the data as currently used for the persistent storage,
718  * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
719  * prepend a valid CRC32 checksum and, in case of redundant
720  * environment, a "current" redundancy flag. If size is given, this
721  * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
722  * checksum and redundancy flag will be inserted.
723  *
724  * With "-b" and "-t", always only the real data (including a
725  * terminating '\0' byte) will be written; here the optional size
726  * argument will be used to make sure not to overflow the user
727  * provided buffer; the command will abort if the size is not
728  * sufficient. Any remaining space will be '\0' padded.
729  *
730  * On successful return, the variable "filesize" will be set.
731  * Note that filesize includes the trailing/terminating '\0' byte(s).
732  *
733  * Usage scenario:  create a text snapshot/backup of the current settings:
734  *
735  *      => env export -t 100000
736  *      => era ${backup_addr} +${filesize}
737  *      => cp.b 100000 ${backup_addr} ${filesize}
738  *
739  * Re-import this snapshot, deleting all other settings:
740  *
741  *      => env import -d -t ${backup_addr}
742  */
743 static int do_env_export(struct cmd_tbl *cmdtp, int flag,
744                          int argc, char *const argv[])
745 {
746         char    buf[32];
747         ulong   addr;
748         char    *ptr, *cmd, *res;
749         size_t  size = 0;
750         ssize_t len;
751         env_t   *envp;
752         char    sep = '\n';
753         int     chk = 0;
754         int     fmt = 0;
755
756         cmd = *argv;
757
758         while (--argc > 0 && **++argv == '-') {
759                 char *arg = *argv;
760                 while (*++arg) {
761                         switch (*arg) {
762                         case 'b':               /* raw binary format */
763                                 if (fmt++)
764                                         goto sep_err;
765                                 sep = '\0';
766                                 break;
767                         case 'c':               /* external checksum format */
768                                 if (fmt++)
769                                         goto sep_err;
770                                 sep = '\0';
771                                 chk = 1;
772                                 break;
773                         case 's':               /* size given */
774                                 if (--argc <= 0)
775                                         return cmd_usage(cmdtp);
776                                 size = hextoul(*++argv, NULL);
777                                 goto NXTARG;
778                         case 't':               /* text format */
779                                 if (fmt++)
780                                         goto sep_err;
781                                 sep = '\n';
782                                 break;
783                         default:
784                                 return CMD_RET_USAGE;
785                         }
786                 }
787 NXTARG:         ;
788         }
789
790         if (argc < 1)
791                 return CMD_RET_USAGE;
792
793         addr = hextoul(argv[0], NULL);
794         ptr = map_sysmem(addr, size);
795
796         if (size)
797                 memset(ptr, '\0', size);
798
799         argc--;
800         argv++;
801
802         if (sep) {              /* export as text file */
803                 len = hexport_r(&env_htab, sep,
804                                 H_MATCH_KEY | H_MATCH_IDENT,
805                                 &ptr, size, argc, argv);
806                 if (len < 0) {
807                         pr_err("## Error: Cannot export environment: errno = %d\n",
808                                errno);
809                         return 1;
810                 }
811                 sprintf(buf, "%zX", (size_t)len);
812                 env_set("filesize", buf);
813
814                 return 0;
815         }
816
817         envp = (env_t *)ptr;
818
819         if (chk)                /* export as checksum protected block */
820                 res = (char *)envp->data;
821         else                    /* export as raw binary data */
822                 res = ptr;
823
824         len = hexport_r(&env_htab, '\0',
825                         H_MATCH_KEY | H_MATCH_IDENT,
826                         &res, ENV_SIZE, argc, argv);
827         if (len < 0) {
828                 pr_err("## Error: Cannot export environment: errno = %d\n",
829                        errno);
830                 return 1;
831         }
832
833         if (chk) {
834                 envp->crc = crc32(0, envp->data,
835                                 size ? size - offsetof(env_t, data) : ENV_SIZE);
836 #ifdef CONFIG_ENV_ADDR_REDUND
837                 envp->flags = ENV_REDUND_ACTIVE;
838 #endif
839         }
840         env_set_hex("filesize", len + offsetof(env_t, data));
841
842         return 0;
843
844 sep_err:
845         printf("## Error: %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
846                cmd);
847         return 1;
848 }
849 #endif
850
851 #ifdef CONFIG_CMD_IMPORTENV
852 /*
853  * env import [-d] [-t [-r] | -b | -c] addr [size] [var ...]
854  *      -d:     delete existing environment before importing if no var is
855  *              passed; if vars are passed, if one var is in the current
856  *              environment but not in the environment at addr, delete var from
857  *              current environment;
858  *              otherwise overwrite / append to existing definitions
859  *      -t:     assume text format; either "size" must be given or the
860  *              text data must be '\0' terminated
861  *      -r:     handle CRLF like LF, that means exported variables with
862  *              a content which ends with \r won't get imported. Used
863  *              to import text files created with editors which are using CRLF
864  *              for line endings. Only effective in addition to -t.
865  *      -b:     assume binary format ('\0' separated, "\0\0" terminated)
866  *      -c:     assume checksum protected environment format
867  *      addr:   memory address to read from
868  *      size:   length of input data; if missing, proper '\0'
869  *              termination is mandatory
870  *              if var is set and size should be missing (i.e. '\0'
871  *              termination), set size to '-'
872  *      var...  List of the names of the only variables that get imported from
873  *              the environment at address 'addr'. Without arguments, the whole
874  *              environment gets imported.
875  */
876 static int do_env_import(struct cmd_tbl *cmdtp, int flag,
877                          int argc, char *const argv[])
878 {
879         ulong   addr;
880         char    *cmd, *ptr;
881         char    sep = '\n';
882         int     chk = 0;
883         int     fmt = 0;
884         int     del = 0;
885         int     crlf_is_lf = 0;
886         int     wl = 0;
887         size_t  size;
888
889         cmd = *argv;
890
891         while (--argc > 0 && **++argv == '-') {
892                 char *arg = *argv;
893                 while (*++arg) {
894                         switch (*arg) {
895                         case 'b':               /* raw binary format */
896                                 if (fmt++)
897                                         goto sep_err;
898                                 sep = '\0';
899                                 break;
900                         case 'c':               /* external checksum format */
901                                 if (fmt++)
902                                         goto sep_err;
903                                 sep = '\0';
904                                 chk = 1;
905                                 break;
906                         case 't':               /* text format */
907                                 if (fmt++)
908                                         goto sep_err;
909                                 sep = '\n';
910                                 break;
911                         case 'r':               /* handle CRLF like LF */
912                                 crlf_is_lf = 1;
913                                 break;
914                         case 'd':
915                                 del = 1;
916                                 break;
917                         default:
918                                 return CMD_RET_USAGE;
919                         }
920                 }
921         }
922
923         if (argc < 1)
924                 return CMD_RET_USAGE;
925
926         if (!fmt)
927                 printf("## Warning: defaulting to text format\n");
928
929         if (sep != '\n' && crlf_is_lf )
930                 crlf_is_lf = 0;
931
932         addr = hextoul(argv[0], NULL);
933         ptr = map_sysmem(addr, 0);
934
935         if (argc >= 2 && strcmp(argv[1], "-")) {
936                 size = hextoul(argv[1], NULL);
937         } else if (chk) {
938                 puts("## Error: external checksum format must pass size\n");
939                 return CMD_RET_FAILURE;
940         } else {
941                 char *s = ptr;
942
943                 size = 0;
944
945                 while (size < MAX_ENV_SIZE) {
946                         if ((*s == sep) && (*(s+1) == '\0'))
947                                 break;
948                         ++s;
949                         ++size;
950                 }
951                 if (size == MAX_ENV_SIZE) {
952                         printf("## Warning: Input data exceeds %d bytes"
953                                 " - truncated\n", MAX_ENV_SIZE);
954                 }
955                 size += 2;
956                 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
957         }
958
959         if (argc > 2)
960                 wl = 1;
961
962         if (chk) {
963                 uint32_t crc;
964                 env_t *ep = (env_t *)ptr;
965
966                 if (size <= offsetof(env_t, data)) {
967                         printf("## Error: Invalid size 0x%zX\n", size);
968                         return 1;
969                 }
970
971                 size -= offsetof(env_t, data);
972                 memcpy(&crc, &ep->crc, sizeof(crc));
973
974                 if (crc32(0, ep->data, size) != crc) {
975                         puts("## Error: bad CRC, import failed\n");
976                         return 1;
977                 }
978                 ptr = (char *)ep->data;
979         }
980
981         if (!himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR,
982                        crlf_is_lf, wl ? argc - 2 : 0, wl ? &argv[2] : NULL)) {
983                 pr_err("## Error: Environment import failed: errno = %d\n",
984                        errno);
985                 return 1;
986         }
987         gd->flags |= GD_FLG_ENV_READY;
988
989         return 0;
990
991 sep_err:
992         printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
993                 cmd);
994         return 1;
995 }
996 #endif
997
998 #if defined(CONFIG_CMD_NVEDIT_INDIRECT)
999 static int do_env_indirect(struct cmd_tbl *cmdtp, int flag,
1000                        int argc, char *const argv[])
1001 {
1002         char *to = argv[1];
1003         char *from = argv[2];
1004         char *default_value = NULL;
1005         int ret = 0;
1006         char *val;
1007
1008         if (argc < 3 || argc > 4) {
1009                 return CMD_RET_USAGE;
1010         }
1011
1012         if (argc == 4) {
1013                 default_value = argv[3];
1014         }
1015
1016         val = env_get(from) ?: default_value;
1017         if (!val) {
1018                 printf("## env indirect: Environment variable for <from> (%s) does not exist.\n", from);
1019
1020                 return CMD_RET_FAILURE;
1021         }
1022
1023         ret = env_set(to, val);
1024
1025         if (ret == 0) {
1026                 return CMD_RET_SUCCESS;
1027         }
1028         else {
1029                 return CMD_RET_FAILURE;
1030         }
1031 }
1032 #endif
1033
1034 #if defined(CONFIG_CMD_NVEDIT_INFO)
1035 /*
1036  * print_env_info - print environment information
1037  */
1038 static int print_env_info(void)
1039 {
1040         const char *value;
1041
1042         /* print environment validity value */
1043         switch (gd->env_valid) {
1044         case ENV_INVALID:
1045                 value = "invalid";
1046                 break;
1047         case ENV_VALID:
1048                 value = "valid";
1049                 break;
1050         case ENV_REDUND:
1051                 value = "redundant";
1052                 break;
1053         default:
1054                 value = "unknown";
1055                 break;
1056         }
1057         printf("env_valid = %s\n", value);
1058
1059         /* print environment ready flag */
1060         value = gd->flags & GD_FLG_ENV_READY ? "true" : "false";
1061         printf("env_ready = %s\n", value);
1062
1063         /* print environment using default flag */
1064         value = gd->flags & GD_FLG_ENV_DEFAULT ? "true" : "false";
1065         printf("env_use_default = %s\n", value);
1066
1067         return CMD_RET_SUCCESS;
1068 }
1069
1070 #define ENV_INFO_IS_DEFAULT     BIT(0) /* default environment bit mask */
1071 #define ENV_INFO_IS_PERSISTED   BIT(1) /* environment persistence bit mask */
1072
1073 /*
1074  * env info - display environment information
1075  * env info [-d] - evaluate whether default environment is used
1076  * env info [-p] - evaluate whether environment can be persisted
1077  *      Add [-q] - quiet mode, use only for command result, for test by example:
1078  *                 test env info -p -d -q
1079  */
1080 static int do_env_info(struct cmd_tbl *cmdtp, int flag,
1081                        int argc, char *const argv[])
1082 {
1083         int eval_flags = 0;
1084         int eval_results = 0;
1085         bool quiet = false;
1086 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1087         enum env_location loc;
1088 #endif
1089
1090         /* display environment information */
1091         if (argc <= 1)
1092                 return print_env_info();
1093
1094         /* process options */
1095         while (--argc > 0 && **++argv == '-') {
1096                 char *arg = *argv;
1097
1098                 while (*++arg) {
1099                         switch (*arg) {
1100                         case 'd':
1101                                 eval_flags |= ENV_INFO_IS_DEFAULT;
1102                                 break;
1103                         case 'p':
1104                                 eval_flags |= ENV_INFO_IS_PERSISTED;
1105                                 break;
1106                         case 'q':
1107                                 quiet = true;
1108                                 break;
1109                         default:
1110                                 return CMD_RET_USAGE;
1111                         }
1112                 }
1113         }
1114
1115         /* evaluate whether default environment is used */
1116         if (eval_flags & ENV_INFO_IS_DEFAULT) {
1117                 if (gd->flags & GD_FLG_ENV_DEFAULT) {
1118                         if (!quiet)
1119                                 printf("Default environment is used\n");
1120                         eval_results |= ENV_INFO_IS_DEFAULT;
1121                 } else {
1122                         if (!quiet)
1123                                 printf("Environment was loaded from persistent storage\n");
1124                 }
1125         }
1126
1127         /* evaluate whether environment can be persisted */
1128         if (eval_flags & ENV_INFO_IS_PERSISTED) {
1129 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1130                 loc = env_get_location(ENVOP_SAVE, gd->env_load_prio);
1131                 if (ENVL_NOWHERE != loc && ENVL_UNKNOWN != loc) {
1132                         if (!quiet)
1133                                 printf("Environment can be persisted\n");
1134                         eval_results |= ENV_INFO_IS_PERSISTED;
1135                 } else {
1136                         if (!quiet)
1137                                 printf("Environment cannot be persisted\n");
1138                 }
1139 #else
1140                 if (!quiet)
1141                         printf("Environment cannot be persisted\n");
1142 #endif
1143         }
1144
1145         /* The result of evaluations is combined with AND */
1146         if (eval_flags != eval_results)
1147                 return CMD_RET_FAILURE;
1148
1149         return CMD_RET_SUCCESS;
1150 }
1151 #endif
1152
1153 #if defined(CONFIG_CMD_ENV_EXISTS)
1154 static int do_env_exists(struct cmd_tbl *cmdtp, int flag, int argc,
1155                          char *const argv[])
1156 {
1157         struct env_entry e, *ep;
1158
1159         if (argc < 2)
1160                 return CMD_RET_USAGE;
1161
1162         e.key = argv[1];
1163         e.data = NULL;
1164         hsearch_r(e, ENV_FIND, &ep, &env_htab, 0);
1165
1166         return (ep == NULL) ? 1 : 0;
1167 }
1168 #endif
1169
1170 /*
1171  * New command line interface: "env" command with subcommands
1172  */
1173 static struct cmd_tbl cmd_env_sub[] = {
1174 #if defined(CONFIG_CMD_ASKENV)
1175         U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
1176 #endif
1177         U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
1178         U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""),
1179 #if defined(CONFIG_CMD_EDITENV)
1180         U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
1181 #endif
1182 #if defined(CONFIG_CMD_ENV_CALLBACK)
1183         U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
1184 #endif
1185 #if defined(CONFIG_CMD_ENV_FLAGS)
1186         U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
1187 #endif
1188 #if defined(CONFIG_CMD_EXPORTENV)
1189         U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
1190 #endif
1191 #if defined(CONFIG_CMD_GREPENV)
1192         U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
1193 #endif
1194 #if defined(CONFIG_CMD_IMPORTENV)
1195         U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
1196 #endif
1197 #if defined(CONFIG_CMD_NVEDIT_INDIRECT)
1198         U_BOOT_CMD_MKENT(indirect, 3, 0, do_env_indirect, "", ""),
1199 #endif
1200 #if defined(CONFIG_CMD_NVEDIT_INFO)
1201         U_BOOT_CMD_MKENT(info, 3, 0, do_env_info, "", ""),
1202 #endif
1203 #if defined(CONFIG_CMD_NVEDIT_LOAD)
1204         U_BOOT_CMD_MKENT(load, 1, 0, do_env_load, "", ""),
1205 #endif
1206         U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1207 #if defined(CONFIG_CMD_RUN)
1208         U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1209 #endif
1210 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1211         U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1212 #if defined(CONFIG_CMD_ERASEENV)
1213         U_BOOT_CMD_MKENT(erase, 1, 0, do_env_erase, "", ""),
1214 #endif
1215 #endif
1216 #if defined(CONFIG_CMD_NVEDIT_SELECT)
1217         U_BOOT_CMD_MKENT(select, 2, 0, do_env_select, "", ""),
1218 #endif
1219         U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
1220 #if defined(CONFIG_CMD_ENV_EXISTS)
1221         U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""),
1222 #endif
1223 };
1224
1225 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
1226 void env_reloc(void)
1227 {
1228         fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1229 }
1230 #endif
1231
1232 static int do_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
1233 {
1234         struct cmd_tbl *cp;
1235
1236         if (argc < 2)
1237                 return CMD_RET_USAGE;
1238
1239         /* drop initial "env" arg */
1240         argc--;
1241         argv++;
1242
1243         cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1244
1245         if (cp)
1246                 return cp->cmd(cmdtp, flag, argc, argv);
1247
1248         return CMD_RET_USAGE;
1249 }
1250
1251 #ifdef CONFIG_SYS_LONGHELP
1252 static char env_help_text[] =
1253 #if defined(CONFIG_CMD_ASKENV)
1254         "ask name [message] [size] - ask for environment variable\nenv "
1255 #endif
1256 #if defined(CONFIG_CMD_ENV_CALLBACK)
1257         "callbacks - print callbacks and their associated variables\nenv "
1258 #endif
1259         "default [-f] -a - [forcibly] reset default environment\n"
1260         "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
1261         "env delete [-f] var [...] - [forcibly] delete variable(s)\n"
1262 #if defined(CONFIG_CMD_EDITENV)
1263         "env edit name - edit environment variable\n"
1264 #endif
1265 #if defined(CONFIG_CMD_ENV_EXISTS)
1266         "env exists name - tests for existence of variable\n"
1267 #endif
1268 #if defined(CONFIG_CMD_EXPORTENV)
1269         "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
1270 #endif
1271 #if defined(CONFIG_CMD_ENV_FLAGS)
1272         "env flags - print variables that have non-default flags\n"
1273 #endif
1274 #if defined(CONFIG_CMD_GREPENV)
1275 #ifdef CONFIG_REGEX
1276         "env grep [-e] [-n | -v | -b] string [...] - search environment\n"
1277 #else
1278         "env grep [-n | -v | -b] string [...] - search environment\n"
1279 #endif
1280 #endif
1281 #if defined(CONFIG_CMD_IMPORTENV)
1282         "env import [-d] [-t [-r] | -b | -c] addr [size] [var ...] - import environment\n"
1283 #endif
1284 #if defined(CONFIG_CMD_NVEDIT_INDIRECT)
1285         "env indirect <to> <from> [default] - sets <to> to the value of <from>, using [default] when unset\n"
1286 #endif
1287 #if defined(CONFIG_CMD_NVEDIT_INFO)
1288         "env info - display environment information\n"
1289         "env info [-d] [-p] [-q] - evaluate environment information\n"
1290         "      \"-d\": default environment is used\n"
1291         "      \"-p\": environment can be persisted\n"
1292         "      \"-q\": quiet output\n"
1293 #endif
1294         "env print [-a | name ...] - print environment\n"
1295 #if defined(CONFIG_CMD_NVEDIT_EFI)
1296         "env print -e [-guid guid] [-n] [name ...] - print UEFI environment\n"
1297 #endif
1298 #if defined(CONFIG_CMD_RUN)
1299         "env run var [...] - run commands in an environment variable\n"
1300 #endif
1301 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1302         "env save - save environment\n"
1303 #if defined(CONFIG_CMD_ERASEENV)
1304         "env erase - erase environment\n"
1305 #endif
1306 #endif
1307 #if defined(CONFIG_CMD_NVEDIT_LOAD)
1308         "env load - load environment\n"
1309 #endif
1310 #if defined(CONFIG_CMD_NVEDIT_SELECT)
1311         "env select [target] - select environment target\n"
1312 #endif
1313 #if defined(CONFIG_CMD_NVEDIT_EFI)
1314         "env set -e [-nv][-bs][-rt][-at][-a][-i addr:size][-v] name [arg ...]\n"
1315         "    - set UEFI variable; unset if '-i' or 'arg' not specified\n"
1316 #endif
1317         "env set [-f] name [arg ...]\n";
1318 #endif
1319
1320 U_BOOT_CMD(
1321         env, CONFIG_SYS_MAXARGS, 1, do_env,
1322         "environment handling commands", env_help_text
1323 );
1324
1325 /*
1326  * Old command line interface, kept for compatibility
1327  */
1328
1329 #if defined(CONFIG_CMD_EDITENV)
1330 U_BOOT_CMD_COMPLETE(
1331         editenv, 2, 0,  do_env_edit,
1332         "edit environment variable",
1333         "name\n"
1334         "    - edit environment variable 'name'",
1335         var_complete
1336 );
1337 #endif
1338
1339 U_BOOT_CMD_COMPLETE(
1340         printenv, CONFIG_SYS_MAXARGS, 1,        do_env_print,
1341         "print environment variables",
1342         "[-a]\n    - print [all] values of all environment variables\n"
1343 #if defined(CONFIG_CMD_NVEDIT_EFI)
1344         "printenv -e [-guid guid][-n] [name ...]\n"
1345         "    - print UEFI variable 'name' or all the variables\n"
1346         "      \"-guid\": GUID xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n"
1347         "      \"-n\": suppress dumping variable's value\n"
1348 #endif
1349         "printenv name ...\n"
1350         "    - print value of environment variable 'name'",
1351         var_complete
1352 );
1353
1354 #ifdef CONFIG_CMD_GREPENV
1355 U_BOOT_CMD_COMPLETE(
1356         grepenv, CONFIG_SYS_MAXARGS, 0,  do_env_grep,
1357         "search environment variables",
1358 #ifdef CONFIG_REGEX
1359         "[-e] [-n | -v | -b] string ...\n"
1360 #else
1361         "[-n | -v | -b] string ...\n"
1362 #endif
1363         "    - list environment name=value pairs matching 'string'\n"
1364 #ifdef CONFIG_REGEX
1365         "      \"-e\": enable regular expressions;\n"
1366 #endif
1367         "      \"-n\": search variable names; \"-v\": search values;\n"
1368         "      \"-b\": search both names and values (default)",
1369         var_complete
1370 );
1371 #endif
1372
1373 U_BOOT_CMD_COMPLETE(
1374         setenv, CONFIG_SYS_MAXARGS, 0,  do_env_set,
1375         "set environment variables",
1376 #if defined(CONFIG_CMD_NVEDIT_EFI)
1377         "-e [-guid guid][-nv][-bs][-rt][-at][-a][-v]\n"
1378         "        [-i addr:size name], or [name [value ...]]\n"
1379         "    - set UEFI variable 'name' to 'value' ...'\n"
1380         "      \"-guid\": GUID xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n"
1381         "      \"-nv\": set non-volatile attribute\n"
1382         "      \"-bs\": set boot-service attribute\n"
1383         "      \"-rt\": set runtime attribute\n"
1384         "      \"-at\": set time-based authentication attribute\n"
1385         "      \"-a\": append-write\n"
1386         "      \"-i addr,size\": use <addr,size> as variable's value\n"
1387         "      \"-v\": verbose message\n"
1388         "    - delete UEFI variable 'name' if 'value' not specified\n"
1389 #endif
1390         "setenv [-f] name value ...\n"
1391         "    - [forcibly] set environment variable 'name' to 'value ...'\n"
1392         "setenv [-f] name\n"
1393         "    - [forcibly] delete environment variable 'name'",
1394         var_complete
1395 );
1396
1397 #if defined(CONFIG_CMD_ASKENV)
1398
1399 U_BOOT_CMD(
1400         askenv, CONFIG_SYS_MAXARGS,     1,      do_env_ask,
1401         "get environment variables from stdin",
1402         "name [message] [size]\n"
1403         "    - get environment variable 'name' from stdin (max 'size' chars)"
1404 );
1405 #endif
1406
1407 #if defined(CONFIG_CMD_RUN)
1408 U_BOOT_CMD_COMPLETE(
1409         run,    CONFIG_SYS_MAXARGS,     1,      do_run,
1410         "run commands in an environment variable",
1411         "var [...]\n"
1412         "    - run the commands in the environment variable(s) 'var'",
1413         var_complete
1414 );
1415 #endif
1416 #endif /* CONFIG_SPL_BUILD */