2 * (C) Copyright 2000-2013
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 * SPDX-License-Identifier: GPL-2.0+
14 * Support for persistent environment data
16 * 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
22 * 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.
30 #include <environment.h>
36 #include <linux/stddef.h>
37 #include <asm/byteorder.h>
40 DECLARE_GLOBAL_DATA_PTR;
42 #if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
43 !defined(CONFIG_ENV_IS_IN_FLASH) && \
44 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
45 !defined(CONFIG_ENV_IS_IN_MMC) && \
46 !defined(CONFIG_ENV_IS_IN_FAT) && \
47 !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) && \
51 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
52 !defined(CONFIG_ENV_IS_IN_UBI) && \
53 !defined(CONFIG_ENV_IS_NOWHERE)
54 # error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
55 SPI_FLASH|NVRAM|MMC|FAT|REMOTE|UBI} or CONFIG_ENV_IS_NOWHERE
59 * Maximum expected input data size for import command
61 #define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
64 * This variable is incremented on each do_env_set(), so it can
65 * 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()
70 static int env_id = 1;
77 #ifndef CONFIG_SPL_BUILD
79 * Command interface: print one or all environment variables
81 * Returns 0 in case of error, or length of printed string
83 static int env_print(char *name, int flag)
88 if (name) { /* print a single name */
93 hsearch_r(e, FIND, &ep, &env_htab, flag);
96 len = printf("%s=%s\n", ep->key, ep->data);
100 /* print whole list */
101 len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
109 /* should never happen */
110 printf("## Error: cannot export environment\n");
114 static int do_env_print(cmd_tbl_t *cmdtp, int flag, int argc,
119 int env_flag = H_HIDE_DOT;
121 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
124 env_flag &= ~H_HIDE_DOT;
128 /* print all env vars */
129 rcode = env_print(NULL, env_flag);
132 printf("\nEnvironment size: %d/%ld bytes\n",
133 rcode, (ulong)ENV_SIZE);
137 /* print selected env vars */
138 env_flag &= ~H_HIDE_DOT;
139 for (i = 1; i < argc; ++i) {
140 int rc = env_print(argv[i], env_flag);
142 printf("## Error: \"%s\" not defined\n", argv[i]);
150 #ifdef CONFIG_CMD_GREPENV
151 static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
152 int argc, char * const argv[])
155 int len, grep_how, grep_what;
158 return CMD_RET_USAGE;
160 grep_how = H_MATCH_SUBSTR; /* default: substring search */
161 grep_what = H_MATCH_BOTH; /* default: grep names and values */
163 while (--argc > 0 && **++argv == '-') {
168 case 'e': /* use regex matching */
169 grep_how = H_MATCH_REGEX;
172 case 'n': /* grep for name */
173 grep_what = H_MATCH_KEY;
175 case 'v': /* grep for value */
176 grep_what = H_MATCH_DATA;
178 case 'b': /* grep for both */
179 grep_what = H_MATCH_BOTH;
184 return CMD_RET_USAGE;
190 len = hexport_r(&env_htab, '\n',
191 flag | grep_what | grep_how,
192 &res, 0, argc, argv);
205 #endif /* CONFIG_SPL_BUILD */
208 * Set a new environment variable,
209 * or replace or delete an existing one.
211 static int _do_env_set(int flag, int argc, char * const argv[])
214 char *name, *value, *s;
216 int env_flag = H_INTERACTIVE;
218 debug("Initial value for argc=%d\n", argc);
219 while (argc > 1 && **(argv + 1) == '-') {
225 case 'f': /* force */
229 return CMD_RET_USAGE;
233 debug("Final value for argc=%d\n", argc);
237 if (strchr(name, '=')) {
238 printf("## Error: illegal character '='"
239 "in variable name \"%s\"\n", name);
246 if (argc < 3 || argv[2] == NULL) {
247 int rc = hdelete_r(name, &env_htab, env_flag);
252 * Insert / replace new value
254 for (i = 2, len = 0; i < argc; ++i)
255 len += strlen(argv[i]) + 1;
259 printf("## Can't malloc %d bytes\n", len);
262 for (i = 2, s = value; i < argc; ++i) {
265 while ((*s++ = *v++) != '\0')
274 hsearch_r(e, ENTER, &ep, &env_htab, env_flag);
277 printf("## Error inserting \"%s\" variable, errno=%d\n",
285 int setenv(const char *varname, const char *varvalue)
287 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
289 /* before import into hashtable */
290 if (!(gd->flags & GD_FLG_ENV_READY))
293 if (varvalue == NULL || varvalue[0] == '\0')
294 return _do_env_set(0, 2, (char * const *)argv);
296 return _do_env_set(0, 3, (char * const *)argv);
300 * Set an environment variable to an integer value
302 * @param varname Environment variable to set
303 * @param value Value to set it to
304 * @return 0 if ok, 1 on error
306 int setenv_ulong(const char *varname, ulong value)
308 /* TODO: this should be unsigned */
309 char *str = simple_itoa(value);
311 return setenv(varname, str);
315 * Set an environment variable to an value in hex
317 * @param varname Environment variable to set
318 * @param value Value to set it to
319 * @return 0 if ok, 1 on error
321 int setenv_hex(const char *varname, ulong value)
325 sprintf(str, "%lx", value);
326 return setenv(varname, str);
329 ulong getenv_hex(const char *varname, ulong default_val)
337 value = simple_strtoul(s, &endp, 16);
344 #ifndef CONFIG_SPL_BUILD
345 static int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
348 return CMD_RET_USAGE;
350 return _do_env_set(flag, argc, argv);
354 * Prompt for environment variable
356 #if defined(CONFIG_CMD_ASKENV)
357 int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
359 char message[CONFIG_SYS_CBSIZE];
360 int i, len, pos, size;
364 local_args[0] = argv[0];
365 local_args[1] = argv[1];
366 local_args[2] = NULL;
367 local_args[3] = NULL;
372 * env_ask envname [message1 ...] [size]
375 return CMD_RET_USAGE;
378 * We test the last argument if it can be converted
379 * into a decimal number. If yes, we assume it's
380 * the size. Otherwise we echo it as part of the
383 i = simple_strtoul(argv[argc - 1], &endptr, 10);
384 if (*endptr != '\0') { /* no size */
385 size = CONFIG_SYS_CBSIZE - 1;
386 } else { /* size given */
392 sprintf(message, "Please enter '%s': ", argv[1]);
394 /* env_ask envname message1 ... messagen [size] */
395 for (i = 2, pos = 0; i < argc; i++) {
397 message[pos++] = ' ';
399 strcpy(message + pos, argv[i]);
400 pos += strlen(argv[i]);
402 message[pos++] = ' ';
406 if (size >= CONFIG_SYS_CBSIZE)
407 size = CONFIG_SYS_CBSIZE - 1;
412 /* prompt for input */
413 len = cli_readline(message);
416 console_buffer[size] = '\0';
419 if (console_buffer[0] != '\0') {
420 local_args[2] = console_buffer;
424 /* Continue calling setenv code */
425 return _do_env_set(flag, len, local_args);
429 #if defined(CONFIG_CMD_ENV_CALLBACK)
430 static int print_static_binding(const char *var_name, const char *callback_name)
432 printf("\t%-20s %-20s\n", var_name, callback_name);
437 static int print_active_callback(ENTRY *entry)
439 struct env_clbk_tbl *clbkp;
443 if (entry->callback == NULL)
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);
451 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
452 if (entry->callback == clbkp->callback + gd->reloc_off)
454 if (entry->callback == clbkp->callback)
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);
463 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
469 * Print the callbacks available and what they are bound to
471 int do_env_callback(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
473 struct env_clbk_tbl *clbkp;
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);
485 printf("\t%s\n", clbkp->name);
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", "-------------", "-------------");
492 env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding);
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);
504 #if defined(CONFIG_CMD_ENV_FLAGS)
505 static int print_static_flags(const char *var_name, const char *flags)
507 enum env_flags_vartype type = env_flags_parse_vartype(flags);
508 enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
510 printf("\t%-20s %-20s %-20s\n", var_name,
511 env_flags_get_vartype_name(type),
512 env_flags_get_varaccess_name(access));
517 static int print_active_flags(ENTRY *entry)
519 enum env_flags_vartype type;
520 enum env_flags_varaccess access;
522 if (entry->flags == 0)
525 type = (enum env_flags_vartype)
526 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
527 access = env_flags_parse_varaccess_from_binflags(entry->flags);
528 printf("\t%-20s %-20s %-20s\n", entry->key,
529 env_flags_get_vartype_name(type),
530 env_flags_get_varaccess_name(access));
536 * Print the flags available and what variables have flags
538 int do_env_flags(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
540 /* Print the available variable types */
541 printf("Available variable type flags (position %d):\n",
542 ENV_FLAGS_VARTYPE_LOC);
543 puts("\tFlag\tVariable Type Name\n");
544 puts("\t----\t------------------\n");
545 env_flags_print_vartypes();
548 /* Print the available variable access types */
549 printf("Available variable access flags (position %d):\n",
550 ENV_FLAGS_VARACCESS_LOC);
551 puts("\tFlag\tVariable Access Name\n");
552 puts("\t----\t--------------------\n");
553 env_flags_print_varaccess();
556 /* Print the static flags that may exist */
557 puts("Static flags:\n");
558 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
560 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
562 env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags);
565 /* walk through each variable and print the flags if non-default */
566 puts("Active flags:\n");
567 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
569 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
571 hwalk_r(&env_htab, print_active_flags);
577 * Interactively edit an environment variable
579 #if defined(CONFIG_CMD_EDITENV)
580 static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc,
583 char buffer[CONFIG_SYS_CBSIZE];
587 return CMD_RET_USAGE;
589 /* Set read buffer to initial value or empty sting */
590 init_val = getenv(argv[1]);
592 sprintf(buffer, "%s", init_val);
596 if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)
599 return setenv(argv[1], buffer);
601 #endif /* CONFIG_CMD_EDITENV */
602 #endif /* CONFIG_SPL_BUILD */
605 * Look up variable from environment,
606 * return address of storage for that variable,
607 * or NULL if not found
609 char *getenv(const char *name)
611 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
618 hsearch_r(e, FIND, &ep, &env_htab, 0);
620 return ep ? ep->data : NULL;
623 /* restricted capabilities before import */
624 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
625 return (char *)(gd->env_buf);
631 * Look up variable from environment for restricted C runtime env.
633 int getenv_f(const char *name, char *buf, unsigned len)
637 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
640 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
641 if (nxt >= CONFIG_ENV_SIZE)
645 val = envmatch((uchar *)name, i);
649 /* found; copy out */
650 for (n = 0; n < len; ++n, ++buf) {
651 *buf = env_get_char(val++);
659 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
669 * Decode the integer value of an environment variable and return it.
671 * @param name Name of environemnt variable
672 * @param base Number base to use (normally 10, or 16 for hex)
673 * @param default_val Default value to return if the variable is not
675 * @return the decoded value, or default_val if not found
677 ulong getenv_ulong(const char *name, int base, ulong default_val)
680 * We can use getenv() here, even before relocation, since the
681 * environment variable value is an integer and thus short.
683 const char *str = getenv(name);
685 return str ? simple_strtoul(str, NULL, base) : default_val;
688 #ifndef CONFIG_SPL_BUILD
689 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
690 static int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc,
693 printf("Saving Environment to %s...\n", env_name_spec);
695 return saveenv() ? 1 : 0;
699 saveenv, 1, 0, do_env_save,
700 "save environment variables to persistent storage",
704 #endif /* CONFIG_SPL_BUILD */
708 * Match a name / name=value pair
710 * s1 is either a simple 'name', or a 'name=value' pair.
711 * i2 is the environment index for a 'name2=value2' pair.
712 * If the names match, return the index for the value2, else -1.
714 int envmatch(uchar *s1, int i2)
719 while (*s1 == env_get_char(i2++))
723 if (*s1 == '\0' && env_get_char(i2-1) == '=')
729 #ifndef CONFIG_SPL_BUILD
730 static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
731 int argc, char * const argv[])
733 int all = 0, flag = 0;
735 debug("Initial value for argc=%d\n", argc);
736 while (--argc > 0 && **++argv == '-') {
741 case 'a': /* default all */
744 case 'f': /* force */
748 return cmd_usage(cmdtp);
752 debug("Final value for argc=%d\n", argc);
753 if (all && (argc == 0)) {
754 /* Reset the whole environment */
755 set_default_env("## Resetting to default environment\n");
758 if (!all && (argc > 0)) {
759 /* Reset individual variables */
760 set_default_vars(argc, argv);
764 return cmd_usage(cmdtp);
767 static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
768 int argc, char * const argv[])
770 int env_flag = H_INTERACTIVE;
773 debug("Initial value for argc=%d\n", argc);
774 while (argc > 1 && **(argv + 1) == '-') {
780 case 'f': /* force */
784 return CMD_RET_USAGE;
788 debug("Final value for argc=%d\n", argc);
793 char *name = *++argv;
795 if (!hdelete_r(name, &env_htab, env_flag))
802 #ifdef CONFIG_CMD_EXPORTENV
804 * env export [-t | -b | -c] [-s size] addr [var ...]
805 * -t: export as text format; if size is given, data will be
806 * padded with '\0' bytes; if not, one terminating '\0'
807 * will be added (which is included in the "filesize"
808 * setting so you can for exmple copy this to flash and
809 * keep the termination).
810 * -b: export as binary format (name=value pairs separated by
811 * '\0', list end marked by double "\0\0")
812 * -c: export as checksum protected environment format as
813 * used for example by "saveenv" command
815 * size of output buffer
816 * addr: memory address where environment gets stored
817 * var... List of variable names that get included into the
818 * export. Without arguments, the whole environment gets
821 * With "-c" and size is NOT given, then the export command will
822 * format the data as currently used for the persistent storage,
823 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
824 * prepend a valid CRC32 checksum and, in case of resundant
825 * environment, a "current" redundancy flag. If size is given, this
826 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
827 * checksum and redundancy flag will be inserted.
829 * With "-b" and "-t", always only the real data (including a
830 * terminating '\0' byte) will be written; here the optional size
831 * argument will be used to make sure not to overflow the user
832 * provided buffer; the command will abort if the size is not
833 * sufficient. Any remainign space will be '\0' padded.
835 * On successful return, the variable "filesize" will be set.
836 * Note that filesize includes the trailing/terminating '\0' byte(s).
838 * Usage szenario: create a text snapshot/backup of the current settings:
840 * => env export -t 100000
841 * => era ${backup_addr} +${filesize}
842 * => cp.b 100000 ${backup_addr} ${filesize}
844 * Re-import this snapshot, deleting all other settings:
846 * => env import -d -t ${backup_addr}
848 static int do_env_export(cmd_tbl_t *cmdtp, int flag,
849 int argc, char * const argv[])
853 char *ptr, *cmd, *res;
863 while (--argc > 0 && **++argv == '-') {
867 case 'b': /* raw binary format */
872 case 'c': /* external checksum format */
878 case 's': /* size given */
880 return cmd_usage(cmdtp);
881 size = simple_strtoul(*++argv, NULL, 16);
883 case 't': /* text format */
889 return CMD_RET_USAGE;
896 return CMD_RET_USAGE;
898 addr = simple_strtoul(argv[0], NULL, 16);
899 ptr = map_sysmem(addr, size);
902 memset(ptr, '\0', size);
907 if (sep) { /* export as text file */
908 len = hexport_r(&env_htab, sep,
909 H_MATCH_KEY | H_MATCH_IDENT,
910 &ptr, size, argc, argv);
912 error("Cannot export environment: errno = %d\n", errno);
915 sprintf(buf, "%zX", (size_t)len);
916 setenv("filesize", buf);
923 if (chk) /* export as checksum protected block */
924 res = (char *)envp->data;
925 else /* export as raw binary data */
928 len = hexport_r(&env_htab, '\0',
929 H_MATCH_KEY | H_MATCH_IDENT,
930 &res, ENV_SIZE, argc, argv);
932 error("Cannot export environment: errno = %d\n", errno);
937 envp->crc = crc32(0, envp->data, ENV_SIZE);
938 #ifdef CONFIG_ENV_ADDR_REDUND
939 envp->flags = ACTIVE_FLAG;
942 setenv_hex("filesize", len + offsetof(env_t, data));
947 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
952 #ifdef CONFIG_CMD_IMPORTENV
954 * env import [-d] [-t [-r] | -b | -c] addr [size]
955 * -d: delete existing environment before importing;
956 * otherwise overwrite / append to existion definitions
957 * -t: assume text format; either "size" must be given or the
958 * text data must be '\0' terminated
959 * -r: handle CRLF like LF, that means exported variables with
960 * a content which ends with \r won't get imported. Used
961 * to import text files created with editors which are using CRLF
962 * for line endings. Only effective in addition to -t.
963 * -b: assume binary format ('\0' separated, "\0\0" terminated)
964 * -c: assume checksum protected environment format
965 * addr: memory address to read from
966 * size: length of input data; if missing, proper '\0'
967 * termination is mandatory
969 static int do_env_import(cmd_tbl_t *cmdtp, int flag,
970 int argc, char * const argv[])
983 while (--argc > 0 && **++argv == '-') {
987 case 'b': /* raw binary format */
992 case 'c': /* external checksum format */
998 case 't': /* text format */
1003 case 'r': /* handle CRLF like LF */
1010 return CMD_RET_USAGE;
1016 return CMD_RET_USAGE;
1019 printf("## Warning: defaulting to text format\n");
1021 if (sep != '\n' && crlf_is_lf )
1024 addr = simple_strtoul(argv[0], NULL, 16);
1025 ptr = map_sysmem(addr, 0);
1028 size = simple_strtoul(argv[1], NULL, 16);
1029 } else if (argc == 1 && chk) {
1030 puts("## Error: external checksum format must pass size\n");
1031 return CMD_RET_FAILURE;
1037 while (size < MAX_ENV_SIZE) {
1038 if ((*s == sep) && (*(s+1) == '\0'))
1043 if (size == MAX_ENV_SIZE) {
1044 printf("## Warning: Input data exceeds %d bytes"
1045 " - truncated\n", MAX_ENV_SIZE);
1048 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
1053 env_t *ep = (env_t *)ptr;
1055 size -= offsetof(env_t, data);
1056 memcpy(&crc, &ep->crc, sizeof(crc));
1058 if (crc32(0, ep->data, size) != crc) {
1059 puts("## Error: bad CRC, import failed\n");
1062 ptr = (char *)ep->data;
1065 if (himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR,
1066 crlf_is_lf, 0, NULL) == 0) {
1067 error("Environment import failed: errno = %d\n", errno);
1070 gd->flags |= GD_FLG_ENV_READY;
1075 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
1081 #if defined(CONFIG_CMD_ENV_EXISTS)
1082 static int do_env_exists(cmd_tbl_t *cmdtp, int flag, int argc,
1083 char * const argv[])
1088 return CMD_RET_USAGE;
1092 hsearch_r(e, FIND, &ep, &env_htab, 0);
1094 return (ep == NULL) ? 1 : 0;
1099 * New command line interface: "env" command with subcommands
1101 static cmd_tbl_t cmd_env_sub[] = {
1102 #if defined(CONFIG_CMD_ASKENV)
1103 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
1105 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
1106 U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""),
1107 #if defined(CONFIG_CMD_EDITENV)
1108 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
1110 #if defined(CONFIG_CMD_ENV_CALLBACK)
1111 U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
1113 #if defined(CONFIG_CMD_ENV_FLAGS)
1114 U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
1116 #if defined(CONFIG_CMD_EXPORTENV)
1117 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
1119 #if defined(CONFIG_CMD_GREPENV)
1120 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
1122 #if defined(CONFIG_CMD_IMPORTENV)
1123 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
1125 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1126 #if defined(CONFIG_CMD_RUN)
1127 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1129 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1130 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1132 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
1133 #if defined(CONFIG_CMD_ENV_EXISTS)
1134 U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""),
1138 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
1139 void env_reloc(void)
1141 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1145 static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1150 return CMD_RET_USAGE;
1152 /* drop initial "env" arg */
1156 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1159 return cp->cmd(cmdtp, flag, argc, argv);
1161 return CMD_RET_USAGE;
1164 #ifdef CONFIG_SYS_LONGHELP
1165 static char env_help_text[] =
1166 #if defined(CONFIG_CMD_ASKENV)
1167 "ask name [message] [size] - ask for environment variable\nenv "
1169 #if defined(CONFIG_CMD_ENV_CALLBACK)
1170 "callbacks - print callbacks and their associated variables\nenv "
1172 "default [-f] -a - [forcibly] reset default environment\n"
1173 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
1174 "env delete [-f] var [...] - [forcibly] delete variable(s)\n"
1175 #if defined(CONFIG_CMD_EDITENV)
1176 "env edit name - edit environment variable\n"
1178 #if defined(CONFIG_CMD_ENV_EXISTS)
1179 "env exists name - tests for existence of variable\n"
1181 #if defined(CONFIG_CMD_EXPORTENV)
1182 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
1184 #if defined(CONFIG_CMD_ENV_FLAGS)
1185 "env flags - print variables that have non-default flags\n"
1187 #if defined(CONFIG_CMD_GREPENV)
1189 "env grep [-e] [-n | -v | -b] string [...] - search environment\n"
1191 "env grep [-n | -v | -b] string [...] - search environment\n"
1194 #if defined(CONFIG_CMD_IMPORTENV)
1195 "env import [-d] [-t [-r] | -b | -c] addr [size] - import environment\n"
1197 "env print [-a | name ...] - print environment\n"
1198 #if defined(CONFIG_CMD_RUN)
1199 "env run var [...] - run commands in an environment variable\n"
1201 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1202 "env save - save environment\n"
1204 "env set [-f] name [arg ...]\n";
1208 env, CONFIG_SYS_MAXARGS, 1, do_env,
1209 "environment handling commands", env_help_text
1213 * Old command line interface, kept for compatibility
1216 #if defined(CONFIG_CMD_EDITENV)
1217 U_BOOT_CMD_COMPLETE(
1218 editenv, 2, 0, do_env_edit,
1219 "edit environment variable",
1221 " - edit environment variable 'name'",
1226 U_BOOT_CMD_COMPLETE(
1227 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
1228 "print environment variables",
1229 "[-a]\n - print [all] values of all environment variables\n"
1230 "printenv name ...\n"
1231 " - print value of environment variable 'name'",
1235 #ifdef CONFIG_CMD_GREPENV
1236 U_BOOT_CMD_COMPLETE(
1237 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1238 "search environment variables",
1240 "[-e] [-n | -v | -b] string ...\n"
1242 "[-n | -v | -b] string ...\n"
1244 " - list environment name=value pairs matching 'string'\n"
1246 " \"-e\": enable regular expressions;\n"
1248 " \"-n\": search variable names; \"-v\": search values;\n"
1249 " \"-b\": search both names and values (default)",
1254 U_BOOT_CMD_COMPLETE(
1255 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
1256 "set environment variables",
1257 "[-f] name value ...\n"
1258 " - [forcibly] set environment variable 'name' to 'value ...'\n"
1259 "setenv [-f] name\n"
1260 " - [forcibly] delete environment variable 'name'",
1264 #if defined(CONFIG_CMD_ASKENV)
1267 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
1268 "get environment variables from stdin",
1269 "name [message] [size]\n"
1270 " - get environment variable 'name' from stdin (max 'size' chars)"
1274 #if defined(CONFIG_CMD_RUN)
1275 U_BOOT_CMD_COMPLETE(
1276 run, CONFIG_SYS_MAXARGS, 1, do_run,
1277 "run commands in an environment variable",
1279 " - run the commands in the environment variable(s) 'var'",
1283 #endif /* CONFIG_SPL_BUILD */