2 * (C) Copyright 2000-2010
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
8 * Copyright 2011 Freescale Semiconductor, Inc.
10 * See file CREDITS for list of people who contributed to this
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * Support for persistent environment data
32 * The "environment" is stored on external storage as a list of '\0'
33 * terminated "name=value" strings. The end of the list is marked by
34 * a double '\0'. The environment is preceeded by a 32 bit CRC over
35 * the data part and, in case of redundant environment, a byte of
38 * This linearized representation will also be used before
39 * relocation, i. e. as long as we don't have a full C runtime
40 * environment. After that, we use a hash table.
45 #include <environment.h>
50 #include <linux/stddef.h>
51 #include <asm/byteorder.h>
53 DECLARE_GLOBAL_DATA_PTR;
55 #if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
56 !defined(CONFIG_ENV_IS_IN_FLASH) && \
57 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
58 !defined(CONFIG_ENV_IS_IN_MMC) && \
59 !defined(CONFIG_ENV_IS_IN_FAT) && \
60 !defined(CONFIG_ENV_IS_IN_NAND) && \
61 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
62 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
63 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
64 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
65 !defined(CONFIG_ENV_IS_NOWHERE)
66 # error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
67 SPI_FLASH|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE
71 * Maximum expected input data size for import command
73 #define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
76 * This variable is incremented on each do_env_set(), so it can
77 * be used via get_env_id() as an indication, if the environment
78 * has changed or not. So it is possible to reread an environment
79 * variable only if the environment was changed ... done so for
80 * example in NetInitLoop()
82 static int env_id = 1;
89 #ifndef CONFIG_SPL_BUILD
91 * Command interface: print one or all environment variables
93 * Returns 0 in case of error, or length of printed string
95 static int env_print(char *name, int flag)
100 if (name) { /* print a single name */
105 hsearch_r(e, FIND, &ep, &env_htab, flag);
108 len = printf("%s=%s\n", ep->key, ep->data);
112 /* print whole list */
113 len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
121 /* should never happen */
125 static int do_env_print(cmd_tbl_t *cmdtp, int flag, int argc,
130 int env_flag = H_HIDE_DOT;
132 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
135 env_flag &= ~H_HIDE_DOT;
139 /* print all env vars */
140 rcode = env_print(NULL, env_flag);
143 printf("\nEnvironment size: %d/%ld bytes\n",
144 rcode, (ulong)ENV_SIZE);
148 /* print selected env vars */
149 env_flag &= ~H_HIDE_DOT;
150 for (i = 1; i < argc; ++i) {
151 int rc = env_print(argv[i], env_flag);
153 printf("## Error: \"%s\" not defined\n", argv[i]);
161 #ifdef CONFIG_CMD_GREPENV
162 static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
163 int argc, char * const argv[])
166 unsigned char matched[env_htab.size / 8];
167 int rcode = 1, arg = 1, idx;
170 return CMD_RET_USAGE;
172 memset(matched, 0, env_htab.size / 8);
174 while (arg <= argc) {
176 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
177 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
183 matched[idx / 8] |= 1 << (idx & 7);
192 #endif /* CONFIG_SPL_BUILD */
195 * Set a new environment variable,
196 * or replace or delete an existing one.
198 static int _do_env_set(int flag, int argc, char * const argv[])
201 char *name, *value, *s;
207 if (strchr(name, '=')) {
208 printf("## Error: illegal character '='"
209 "in variable name \"%s\"\n", name);
216 if (argc < 3 || argv[2] == NULL) {
217 int rc = hdelete_r(name, &env_htab, H_INTERACTIVE);
222 * Insert / replace new value
224 for (i = 2, len = 0; i < argc; ++i)
225 len += strlen(argv[i]) + 1;
229 printf("## Can't malloc %d bytes\n", len);
232 for (i = 2, s = value; i < argc; ++i) {
235 while ((*s++ = *v++) != '\0')
244 hsearch_r(e, ENTER, &ep, &env_htab, H_INTERACTIVE);
247 printf("## Error inserting \"%s\" variable, errno=%d\n",
255 int setenv(const char *varname, const char *varvalue)
257 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
259 if (varvalue == NULL || varvalue[0] == '\0')
260 return _do_env_set(0, 2, (char * const *)argv);
262 return _do_env_set(0, 3, (char * const *)argv);
266 * Set an environment variable to an integer value
268 * @param varname Environmet variable to set
269 * @param value Value to set it to
270 * @return 0 if ok, 1 on error
272 int setenv_ulong(const char *varname, ulong value)
274 /* TODO: this should be unsigned */
275 char *str = simple_itoa(value);
277 return setenv(varname, str);
281 * Set an environment variable to an address in hex
283 * @param varname Environmet variable to set
284 * @param addr Value to set it to
285 * @return 0 if ok, 1 on error
287 int setenv_addr(const char *varname, const void *addr)
291 sprintf(str, "%lx", (uintptr_t)addr);
292 return setenv(varname, str);
295 #ifndef CONFIG_SPL_BUILD
296 static int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
299 return CMD_RET_USAGE;
301 return _do_env_set(flag, argc, argv);
305 * Prompt for environment variable
307 #if defined(CONFIG_CMD_ASKENV)
308 int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
310 char message[CONFIG_SYS_CBSIZE];
311 int size = CONFIG_SYS_CBSIZE - 1;
315 local_args[0] = argv[0];
316 local_args[1] = argv[1];
317 local_args[2] = NULL;
318 local_args[3] = NULL;
320 /* Check the syntax */
323 return CMD_RET_USAGE;
325 case 2: /* env_ask envname */
326 sprintf(message, "Please enter '%s':", argv[1]);
329 case 3: /* env_ask envname size */
330 sprintf(message, "Please enter '%s':", argv[1]);
331 size = simple_strtoul(argv[2], NULL, 10);
334 default: /* env_ask envname message1 ... messagen size */
335 for (i = 2, pos = 0; i < argc - 1; i++) {
337 message[pos++] = ' ';
339 strcpy(message + pos, argv[i]);
340 pos += strlen(argv[i]);
344 size = simple_strtoul(argv[argc - 1], NULL, 10);
348 if (size >= CONFIG_SYS_CBSIZE)
349 size = CONFIG_SYS_CBSIZE - 1;
354 /* prompt for input */
355 len = readline(message);
358 console_buffer[size] = '\0';
361 if (console_buffer[0] != '\0') {
362 local_args[2] = console_buffer;
366 /* Continue calling setenv code */
367 return _do_env_set(flag, len, local_args);
371 #if defined(CONFIG_CMD_ENV_CALLBACK)
372 static int print_static_binding(const char *var_name, const char *callback_name)
374 printf("\t%-20s %-20s\n", var_name, callback_name);
379 static int print_active_callback(ENTRY *entry)
381 struct env_clbk_tbl *clbkp;
385 if (entry->callback == NULL)
388 /* look up the callback in the linker-list */
389 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
390 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
393 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
394 if (entry->callback == clbkp->callback + gd->reloc_off)
396 if (entry->callback == clbkp->callback)
401 if (i == num_callbacks)
402 /* this should probably never happen, but just in case... */
403 printf("\t%-20s %p\n", entry->key, entry->callback);
405 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
411 * Print the callbacks available and what they are bound to
413 int do_env_callback(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
415 struct env_clbk_tbl *clbkp;
419 /* Print the available callbacks */
420 puts("Available callbacks:\n");
421 puts("\tCallback Name\n");
422 puts("\t-------------\n");
423 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
424 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
427 printf("\t%s\n", clbkp->name);
430 /* Print the static bindings that may exist */
431 puts("Static callback bindings:\n");
432 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
433 printf("\t%-20s %-20s\n", "-------------", "-------------");
434 env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding);
437 /* walk through each variable and print the callback if it has one */
438 puts("Active callback bindings:\n");
439 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
440 printf("\t%-20s %-20s\n", "-------------", "-------------");
441 hwalk_r(&env_htab, print_active_callback);
446 #if defined(CONFIG_CMD_ENV_FLAGS)
447 static int print_static_flags(const char *var_name, const char *flags)
449 enum env_flags_vartype type = env_flags_parse_vartype(flags);
450 enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
452 printf("\t%-20s %-20s %-20s\n", var_name,
453 env_flags_get_vartype_name(type),
454 env_flags_get_varaccess_name(access));
459 static int print_active_flags(ENTRY *entry)
461 enum env_flags_vartype type;
462 enum env_flags_varaccess access;
464 if (entry->flags == 0)
467 type = (enum env_flags_vartype)
468 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
469 access = env_flags_parse_varaccess_from_binflags(entry->flags);
470 printf("\t%-20s %-20s %-20s\n", entry->key,
471 env_flags_get_vartype_name(type),
472 env_flags_get_varaccess_name(access));
478 * Print the flags available and what variables have flags
480 int do_env_flags(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
482 /* Print the available variable types */
483 printf("Available variable type flags (position %d):\n",
484 ENV_FLAGS_VARTYPE_LOC);
485 puts("\tFlag\tVariable Type Name\n");
486 puts("\t----\t------------------\n");
487 env_flags_print_vartypes();
490 /* Print the available variable access types */
491 printf("Available variable access flags (position %d):\n",
492 ENV_FLAGS_VARACCESS_LOC);
493 puts("\tFlag\tVariable Access Name\n");
494 puts("\t----\t--------------------\n");
495 env_flags_print_varaccess();
498 /* Print the static flags that may exist */
499 puts("Static flags:\n");
500 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
502 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
504 env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags);
507 /* walk through each variable and print the flags if non-default */
508 puts("Active flags:\n");
509 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
511 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
513 hwalk_r(&env_htab, print_active_flags);
519 * Interactively edit an environment variable
521 #if defined(CONFIG_CMD_EDITENV)
522 static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc,
525 char buffer[CONFIG_SYS_CBSIZE];
529 return CMD_RET_USAGE;
531 /* Set read buffer to initial value or empty sting */
532 init_val = getenv(argv[1]);
534 sprintf(buffer, "%s", init_val);
538 readline_into_buffer("edit: ", buffer, 0);
540 return setenv(argv[1], buffer);
542 #endif /* CONFIG_CMD_EDITENV */
543 #endif /* CONFIG_SPL_BUILD */
546 * Look up variable from environment,
547 * return address of storage for that variable,
548 * or NULL if not found
550 char *getenv(const char *name)
552 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
559 hsearch_r(e, FIND, &ep, &env_htab, 0);
561 return ep ? ep->data : NULL;
564 /* restricted capabilities before import */
565 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
566 return (char *)(gd->env_buf);
572 * Look up variable from environment for restricted C runtime env.
574 int getenv_f(const char *name, char *buf, unsigned len)
578 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
581 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
582 if (nxt >= CONFIG_ENV_SIZE)
586 val = envmatch((uchar *)name, i);
590 /* found; copy out */
591 for (n = 0; n < len; ++n, ++buf) {
592 *buf = env_get_char(val++);
600 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
610 * Decode the integer value of an environment variable and return it.
612 * @param name Name of environemnt variable
613 * @param base Number base to use (normally 10, or 16 for hex)
614 * @param default_val Default value to return if the variable is not
616 * @return the decoded value, or default_val if not found
618 ulong getenv_ulong(const char *name, int base, ulong default_val)
621 * We can use getenv() here, even before relocation, since the
622 * environment variable value is an integer and thus short.
624 const char *str = getenv(name);
626 return str ? simple_strtoul(str, NULL, base) : default_val;
629 #ifndef CONFIG_SPL_BUILD
630 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
631 static int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc,
634 printf("Saving Environment to %s...\n", env_name_spec);
636 return saveenv() ? 1 : 0;
640 saveenv, 1, 0, do_env_save,
641 "save environment variables to persistent storage",
645 #endif /* CONFIG_SPL_BUILD */
649 * Match a name / name=value pair
651 * s1 is either a simple 'name', or a 'name=value' pair.
652 * i2 is the environment index for a 'name2=value2' pair.
653 * If the names match, return the index for the value2, else -1.
655 int envmatch(uchar *s1, int i2)
660 while (*s1 == env_get_char(i2++))
664 if (*s1 == '\0' && env_get_char(i2-1) == '=')
670 #ifndef CONFIG_SPL_BUILD
671 static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
672 int argc, char * const argv[])
674 int all = 0, flag = 0;
676 debug("Initial value for argc=%d\n", argc);
677 while (--argc > 0 && **++argv == '-') {
682 case 'a': /* default all */
685 case 'f': /* force */
689 return cmd_usage(cmdtp);
693 debug("Final value for argc=%d\n", argc);
694 if (all && (argc == 0)) {
695 /* Reset the whole environment */
696 set_default_env("## Resetting to default environment\n");
699 if (!all && (argc > 0)) {
700 /* Reset individual variables */
701 set_default_vars(argc, argv);
705 return cmd_usage(cmdtp);
708 static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
709 int argc, char * const argv[])
711 printf("Not implemented yet\n");
715 #ifdef CONFIG_CMD_EXPORTENV
717 * env export [-t | -b | -c] [-s size] addr [var ...]
718 * -t: export as text format; if size is given, data will be
719 * padded with '\0' bytes; if not, one terminating '\0'
720 * will be added (which is included in the "filesize"
721 * setting so you can for exmple copy this to flash and
722 * keep the termination).
723 * -b: export as binary format (name=value pairs separated by
724 * '\0', list end marked by double "\0\0")
725 * -c: export as checksum protected environment format as
726 * used for example by "saveenv" command
728 * size of output buffer
729 * addr: memory address where environment gets stored
730 * var... List of variable names that get included into the
731 * export. Without arguments, the whole environment gets
734 * With "-c" and size is NOT given, then the export command will
735 * format the data as currently used for the persistent storage,
736 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
737 * prepend a valid CRC32 checksum and, in case of resundant
738 * environment, a "current" redundancy flag. If size is given, this
739 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
740 * checksum and redundancy flag will be inserted.
742 * With "-b" and "-t", always only the real data (including a
743 * terminating '\0' byte) will be written; here the optional size
744 * argument will be used to make sure not to overflow the user
745 * provided buffer; the command will abort if the size is not
746 * sufficient. Any remainign space will be '\0' padded.
748 * On successful return, the variable "filesize" will be set.
749 * Note that filesize includes the trailing/terminating '\0' byte(s).
751 * Usage szenario: create a text snapshot/backup of the current settings:
753 * => env export -t 100000
754 * => era ${backup_addr} +${filesize}
755 * => cp.b 100000 ${backup_addr} ${filesize}
757 * Re-import this snapshot, deleting all other settings:
759 * => env import -d -t ${backup_addr}
761 static int do_env_export(cmd_tbl_t *cmdtp, int flag,
762 int argc, char * const argv[])
765 char *addr, *cmd, *res;
775 while (--argc > 0 && **++argv == '-') {
779 case 'b': /* raw binary format */
784 case 'c': /* external checksum format */
790 case 's': /* size given */
792 return cmd_usage(cmdtp);
793 size = simple_strtoul(*++argv, NULL, 16);
795 case 't': /* text format */
801 return CMD_RET_USAGE;
808 return CMD_RET_USAGE;
810 addr = (char *)simple_strtoul(argv[0], NULL, 16);
813 memset(addr, '\0', size);
818 if (sep) { /* export as text file */
819 len = hexport_r(&env_htab, sep, 0, &addr, size, argc, argv);
821 error("Cannot export environment: errno = %d\n", errno);
824 sprintf(buf, "%zX", (size_t)len);
825 setenv("filesize", buf);
830 envp = (env_t *)addr;
832 if (chk) /* export as checksum protected block */
833 res = (char *)envp->data;
834 else /* export as raw binary data */
837 len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, argc, argv);
839 error("Cannot export environment: errno = %d\n", errno);
844 envp->crc = crc32(0, envp->data, ENV_SIZE);
845 #ifdef CONFIG_ENV_ADDR_REDUND
846 envp->flags = ACTIVE_FLAG;
849 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
850 setenv("filesize", buf);
855 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
860 #ifdef CONFIG_CMD_IMPORTENV
862 * env import [-d] [-t | -b | -c] addr [size]
863 * -d: delete existing environment before importing;
864 * otherwise overwrite / append to existion definitions
865 * -t: assume text format; either "size" must be given or the
866 * text data must be '\0' terminated
867 * -b: assume binary format ('\0' separated, "\0\0" terminated)
868 * -c: assume checksum protected environment format
869 * addr: memory address to read from
870 * size: length of input data; if missing, proper '\0'
871 * termination is mandatory
873 static int do_env_import(cmd_tbl_t *cmdtp, int flag,
874 int argc, char * const argv[])
885 while (--argc > 0 && **++argv == '-') {
889 case 'b': /* raw binary format */
894 case 'c': /* external checksum format */
900 case 't': /* text format */
909 return CMD_RET_USAGE;
915 return CMD_RET_USAGE;
918 printf("## Warning: defaulting to text format\n");
920 addr = (char *)simple_strtoul(argv[0], NULL, 16);
923 size = simple_strtoul(argv[1], NULL, 16);
929 while (size < MAX_ENV_SIZE) {
930 if ((*s == sep) && (*(s+1) == '\0'))
935 if (size == MAX_ENV_SIZE) {
936 printf("## Warning: Input data exceeds %d bytes"
937 " - truncated\n", MAX_ENV_SIZE);
940 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
945 env_t *ep = (env_t *)addr;
947 size -= offsetof(env_t, data);
948 memcpy(&crc, &ep->crc, sizeof(crc));
950 if (crc32(0, ep->data, size) != crc) {
951 puts("## Error: bad CRC, import failed\n");
954 addr = (char *)ep->data;
957 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR,
959 error("Environment import failed: errno = %d\n", errno);
962 gd->flags |= GD_FLG_ENV_READY;
967 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
974 * New command line interface: "env" command with subcommands
976 static cmd_tbl_t cmd_env_sub[] = {
977 #if defined(CONFIG_CMD_ASKENV)
978 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
980 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
981 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
982 #if defined(CONFIG_CMD_EDITENV)
983 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
985 #if defined(CONFIG_CMD_ENV_CALLBACK)
986 U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
988 #if defined(CONFIG_CMD_ENV_FLAGS)
989 U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
991 #if defined(CONFIG_CMD_EXPORTENV)
992 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
994 #if defined(CONFIG_CMD_GREPENV)
995 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
997 #if defined(CONFIG_CMD_IMPORTENV)
998 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
1000 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1001 #if defined(CONFIG_CMD_RUN)
1002 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1004 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1005 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1007 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
1010 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
1011 void env_reloc(void)
1013 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1017 static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1022 return CMD_RET_USAGE;
1024 /* drop initial "env" arg */
1028 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1031 return cp->cmd(cmdtp, flag, argc, argv);
1033 return CMD_RET_USAGE;
1036 #ifdef CONFIG_SYS_LONGHELP
1037 static char env_help_text[] =
1038 #if defined(CONFIG_CMD_ASKENV)
1039 "ask name [message] [size] - ask for environment variable\nenv "
1041 #if defined(CONFIG_CMD_ENV_CALLBACK)
1042 "callbacks - print callbacks and their associated variables\nenv "
1044 "default [-f] -a - [forcibly] reset default environment\n"
1045 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
1046 #if defined(CONFIG_CMD_EDITENV)
1047 "env edit name - edit environment variable\n"
1049 #if defined(CONFIG_CMD_EXPORTENV)
1050 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
1052 #if defined(CONFIG_CMD_ENV_FLAGS)
1053 "env flags - print variables that have non-default flags\n"
1055 #if defined(CONFIG_CMD_GREPENV)
1056 "env grep string [...] - search environment\n"
1058 #if defined(CONFIG_CMD_IMPORTENV)
1059 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
1061 "env print [-a | name ...] - print environment\n"
1062 #if defined(CONFIG_CMD_RUN)
1063 "env run var [...] - run commands in an environment variable\n"
1065 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1066 "env save - save environment\n"
1068 "env set [-f] name [arg ...]\n";
1072 env, CONFIG_SYS_MAXARGS, 1, do_env,
1073 "environment handling commands", env_help_text
1077 * Old command line interface, kept for compatibility
1080 #if defined(CONFIG_CMD_EDITENV)
1081 U_BOOT_CMD_COMPLETE(
1082 editenv, 2, 0, do_env_edit,
1083 "edit environment variable",
1085 " - edit environment variable 'name'",
1090 U_BOOT_CMD_COMPLETE(
1091 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
1092 "print environment variables",
1093 "[-a]\n - print [all] values of all environment variables\n"
1094 "printenv name ...\n"
1095 " - print value of environment variable 'name'",
1099 #ifdef CONFIG_CMD_GREPENV
1100 U_BOOT_CMD_COMPLETE(
1101 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1102 "search environment variables",
1104 " - list environment name=value pairs matching 'string'",
1109 U_BOOT_CMD_COMPLETE(
1110 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
1111 "set environment variables",
1113 " - set environment variable 'name' to 'value ...'\n"
1115 " - delete environment variable 'name'",
1119 #if defined(CONFIG_CMD_ASKENV)
1122 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
1123 "get environment variables from stdin",
1124 "name [message] [size]\n"
1125 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1127 " - get environment variable 'name' from stdin\n"
1128 "askenv name size\n"
1129 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1130 "askenv name [message] size\n"
1131 " - display 'message' string and get environment variable 'name'"
1132 "from stdin (max 'size' chars)"
1136 #if defined(CONFIG_CMD_RUN)
1137 U_BOOT_CMD_COMPLETE(
1138 run, CONFIG_SYS_MAXARGS, 1, do_run,
1139 "run commands in an environment variable",
1141 " - run the commands in the environment variable(s) 'var'",
1145 #endif /* CONFIG_SPL_BUILD */