1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2013
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Copyright 2011 Freescale Semiconductor, Inc.
13 * Support for persistent environment data
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
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.
31 #include <env_internal.h>
37 #include <asm/global_data.h>
38 #include <linux/bitops.h>
39 #include <linux/printk.h>
40 #include <u-boot/crc.h>
41 #include <linux/stddef.h>
42 #include <asm/byteorder.h>
45 DECLARE_GLOBAL_DATA_PTR;
48 * Maximum expected input data size for import command
50 #define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
52 #ifndef CONFIG_SPL_BUILD
54 * Command interface: print one or all environment variables
56 * Returns 0 in case of error, or length of printed string
58 static int env_print(char *name, int flag)
63 if (name) { /* print a single name */
64 struct env_entry e, *ep;
68 hsearch_r(e, ENV_FIND, &ep, &env_htab, flag);
71 len = printf("%s=%s\n", ep->key, ep->data);
75 /* print whole list */
76 len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
84 /* should never happen */
85 printf("## Error: cannot export environment\n");
89 static int do_env_print(struct cmd_tbl *cmdtp, int flag, int argc,
94 int env_flag = H_HIDE_DOT;
96 #if defined(CONFIG_CMD_NVEDIT_EFI)
97 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
98 return do_env_print_efi(cmdtp, flag, --argc, ++argv);
101 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
104 env_flag &= ~H_HIDE_DOT;
108 /* print all env vars */
109 rcode = env_print(NULL, env_flag);
112 printf("\nEnvironment size: %d/%ld bytes\n",
113 rcode, (ulong)ENV_SIZE);
117 /* print selected env vars */
118 env_flag &= ~H_HIDE_DOT;
119 for (i = 1; i < argc; ++i) {
120 int rc = env_print(argv[i], env_flag);
122 printf("## Error: \"%s\" not defined\n", argv[i]);
130 #ifdef CONFIG_CMD_GREPENV
131 static int do_env_grep(struct cmd_tbl *cmdtp, int flag,
132 int argc, char *const argv[])
135 int len, grep_how, grep_what;
138 return CMD_RET_USAGE;
140 grep_how = H_MATCH_SUBSTR; /* default: substring search */
141 grep_what = H_MATCH_BOTH; /* default: grep names and values */
143 while (--argc > 0 && **++argv == '-') {
148 case 'e': /* use regex matching */
149 grep_how = H_MATCH_REGEX;
152 case 'n': /* grep for name */
153 grep_what = H_MATCH_KEY;
155 case 'v': /* grep for value */
156 grep_what = H_MATCH_DATA;
158 case 'b': /* grep for both */
159 grep_what = H_MATCH_BOTH;
164 return CMD_RET_USAGE;
170 len = hexport_r(&env_htab, '\n',
171 flag | grep_what | grep_how,
172 &res, 0, argc, argv);
185 #endif /* CONFIG_SPL_BUILD */
187 #ifndef CONFIG_SPL_BUILD
188 static int do_env_set(struct cmd_tbl *cmdtp, int flag, int argc,
192 return CMD_RET_USAGE;
194 return env_do_env_set(flag, argc, argv, H_INTERACTIVE);
198 * Prompt for environment variable
200 #if defined(CONFIG_CMD_ASKENV)
201 int do_env_ask(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
203 char message[CONFIG_SYS_CBSIZE];
204 int i, len, pos, size;
208 local_args[0] = argv[0];
209 local_args[1] = argv[1];
210 local_args[2] = NULL;
211 local_args[3] = NULL;
216 * env_ask envname [message1 ...] [size]
219 return CMD_RET_USAGE;
222 * We test the last argument if it can be converted
223 * into a decimal number. If yes, we assume it's
224 * the size. Otherwise we echo it as part of the
227 i = dectoul(argv[argc - 1], &endptr);
228 if (*endptr != '\0') { /* no size */
229 size = CONFIG_SYS_CBSIZE - 1;
230 } else { /* size given */
236 sprintf(message, "Please enter '%s': ", argv[1]);
238 /* env_ask envname message1 ... messagen [size] */
239 for (i = 2, pos = 0; i < argc && pos+1 < sizeof(message); i++) {
241 message[pos++] = ' ';
243 strncpy(message + pos, argv[i], sizeof(message) - pos);
244 pos += strlen(argv[i]);
246 if (pos < sizeof(message) - 1) {
247 message[pos++] = ' ';
250 message[CONFIG_SYS_CBSIZE - 1] = '\0';
253 if (size >= CONFIG_SYS_CBSIZE)
254 size = CONFIG_SYS_CBSIZE - 1;
259 /* prompt for input */
260 len = cli_readline(message);
263 console_buffer[size] = '\0';
266 if (console_buffer[0] != '\0') {
267 local_args[2] = console_buffer;
271 /* Continue calling setenv code */
272 return env_do_env_set(flag, len, local_args, H_INTERACTIVE);
276 #if defined(CONFIG_CMD_ENV_CALLBACK)
277 static int print_static_binding(const char *var_name, const char *callback_name,
280 printf("\t%-20s %-20s\n", var_name, callback_name);
285 static int print_active_callback(struct env_entry *entry)
287 struct env_clbk_tbl *clbkp;
291 if (entry->callback == NULL)
294 /* look up the callback in the linker-list */
295 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
296 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
299 if (entry->callback == clbkp->callback)
303 if (i == num_callbacks)
304 /* this should probably never happen, but just in case... */
305 printf("\t%-20s %p\n", entry->key, entry->callback);
307 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
313 * Print the callbacks available and what they are bound to
315 int do_env_callback(struct cmd_tbl *cmdtp, int flag, int argc,
318 struct env_clbk_tbl *clbkp;
322 /* Print the available callbacks */
323 puts("Available callbacks:\n");
324 puts("\tCallback Name\n");
325 puts("\t-------------\n");
326 num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
327 for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
330 printf("\t%s\n", clbkp->name);
333 /* Print the static bindings that may exist */
334 puts("Static callback bindings:\n");
335 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
336 printf("\t%-20s %-20s\n", "-------------", "-------------");
337 env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding, NULL);
340 /* walk through each variable and print the callback if it has one */
341 puts("Active callback bindings:\n");
342 printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
343 printf("\t%-20s %-20s\n", "-------------", "-------------");
344 hwalk_r(&env_htab, print_active_callback);
349 #if defined(CONFIG_CMD_ENV_FLAGS)
350 static int print_static_flags(const char *var_name, const char *flags,
353 enum env_flags_vartype type = env_flags_parse_vartype(flags);
354 enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
356 printf("\t%-20s %-20s %-20s\n", var_name,
357 env_flags_get_vartype_name(type),
358 env_flags_get_varaccess_name(access));
363 static int print_active_flags(struct env_entry *entry)
365 enum env_flags_vartype type;
366 enum env_flags_varaccess access;
368 if (entry->flags == 0)
371 type = (enum env_flags_vartype)
372 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
373 access = env_flags_parse_varaccess_from_binflags(entry->flags);
374 printf("\t%-20s %-20s %-20s\n", entry->key,
375 env_flags_get_vartype_name(type),
376 env_flags_get_varaccess_name(access));
382 * Print the flags available and what variables have flags
384 int do_env_flags(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
386 /* Print the available variable types */
387 printf("Available variable type flags (position %d):\n",
388 ENV_FLAGS_VARTYPE_LOC);
389 puts("\tFlag\tVariable Type Name\n");
390 puts("\t----\t------------------\n");
391 env_flags_print_vartypes();
394 /* Print the available variable access types */
395 printf("Available variable access flags (position %d):\n",
396 ENV_FLAGS_VARACCESS_LOC);
397 puts("\tFlag\tVariable Access Name\n");
398 puts("\t----\t--------------------\n");
399 env_flags_print_varaccess();
402 /* Print the static flags that may exist */
403 puts("Static flags:\n");
404 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
406 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
408 env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags, NULL);
411 /* walk through each variable and print the flags if non-default */
412 puts("Active flags:\n");
413 printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
415 printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
417 hwalk_r(&env_htab, print_active_flags);
423 * Interactively edit an environment variable
425 #if defined(CONFIG_CMD_EDITENV)
426 static int do_env_edit(struct cmd_tbl *cmdtp, int flag, int argc,
429 char buffer[CONFIG_SYS_CBSIZE];
433 return CMD_RET_USAGE;
435 /* before import into hashtable */
436 if (!(gd->flags & GD_FLG_ENV_READY))
439 /* Set read buffer to initial value or empty sting */
440 init_val = env_get(argv[1]);
442 snprintf(buffer, CONFIG_SYS_CBSIZE, "%s", init_val);
446 if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)
449 if (buffer[0] == '\0') {
450 const char * const _argv[3] = { "setenv", argv[1], NULL };
452 return env_do_env_set(0, 2, (char * const *)_argv, H_INTERACTIVE);
454 const char * const _argv[4] = { "setenv", argv[1], buffer,
457 return env_do_env_set(0, 3, (char * const *)_argv, H_INTERACTIVE);
460 #endif /* CONFIG_CMD_EDITENV */
462 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
463 static int do_env_save(struct cmd_tbl *cmdtp, int flag, int argc,
466 return env_save() ? 1 : 0;
470 saveenv, 1, 0, do_env_save,
471 "save environment variables to persistent storage",
475 #if defined(CONFIG_CMD_ERASEENV)
476 static int do_env_erase(struct cmd_tbl *cmdtp, int flag, int argc,
479 return env_erase() ? 1 : 0;
483 eraseenv, 1, 0, do_env_erase,
484 "erase environment variables from persistent storage",
490 #if defined(CONFIG_CMD_NVEDIT_LOAD)
491 static int do_env_load(struct cmd_tbl *cmdtp, int flag, int argc,
494 return env_reload() ? 1 : 0;
498 #if defined(CONFIG_CMD_NVEDIT_SELECT)
499 static int do_env_select(struct cmd_tbl *cmdtp, int flag, int argc,
502 return env_select(argv[1]) ? 1 : 0;
506 #endif /* CONFIG_SPL_BUILD */
508 #ifndef CONFIG_SPL_BUILD
509 static int do_env_default(struct cmd_tbl *cmdtp, int flag,
510 int argc, char *const argv[])
512 int all = 0, env_flag = H_INTERACTIVE;
514 debug("Initial value for argc=%d\n", argc);
515 while (--argc > 0 && **++argv == '-') {
520 case 'a': /* default all */
523 case 'f': /* force */
527 return cmd_usage(cmdtp);
531 debug("Final value for argc=%d\n", argc);
532 if (all && (argc == 0)) {
533 /* Reset the whole environment */
534 env_set_default("## Resetting to default environment\n",
538 if (!all && (argc > 0)) {
539 /* Reset individual variables */
540 env_set_default_vars(argc, argv, env_flag);
544 return cmd_usage(cmdtp);
547 static int do_env_delete(struct cmd_tbl *cmdtp, int flag,
548 int argc, char *const argv[])
550 int env_flag = H_INTERACTIVE;
553 debug("Initial value for argc=%d\n", argc);
554 while (argc > 1 && **(argv + 1) == '-') {
560 case 'f': /* force */
564 return CMD_RET_USAGE;
568 debug("Final value for argc=%d\n", argc);
573 char *name = *++argv;
575 if (hdelete_r(name, &env_htab, env_flag))
582 #ifdef CONFIG_CMD_EXPORTENV
584 * env export [-t | -b | -c] [-s size] addr [var ...]
585 * -t: export as text format; if size is given, data will be
586 * padded with '\0' bytes; if not, one terminating '\0'
587 * will be added (which is included in the "filesize"
588 * setting so you can for exmple copy this to flash and
589 * keep the termination).
590 * -b: export as binary format (name=value pairs separated by
591 * '\0', list end marked by double "\0\0")
592 * -c: export as checksum protected environment format as
593 * used for example by "saveenv" command
595 * size of output buffer
596 * addr: memory address where environment gets stored
597 * var... List of variable names that get included into the
598 * export. Without arguments, the whole environment gets
601 * With "-c" and size is NOT given, then the export command will
602 * format the data as currently used for the persistent storage,
603 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
604 * prepend a valid CRC32 checksum and, in case of redundant
605 * environment, a "current" redundancy flag. If size is given, this
606 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
607 * checksum and redundancy flag will be inserted.
609 * With "-b" and "-t", always only the real data (including a
610 * terminating '\0' byte) will be written; here the optional size
611 * argument will be used to make sure not to overflow the user
612 * provided buffer; the command will abort if the size is not
613 * sufficient. Any remaining space will be '\0' padded.
615 * On successful return, the variable "filesize" will be set.
616 * Note that filesize includes the trailing/terminating '\0' byte(s).
618 * Usage scenario: create a text snapshot/backup of the current settings:
620 * => env export -t 100000
621 * => era ${backup_addr} +${filesize}
622 * => cp.b 100000 ${backup_addr} ${filesize}
624 * Re-import this snapshot, deleting all other settings:
626 * => env import -d -t ${backup_addr}
628 static int do_env_export(struct cmd_tbl *cmdtp, int flag,
629 int argc, char *const argv[])
633 char *ptr, *cmd, *res;
643 while (--argc > 0 && **++argv == '-') {
647 case 'b': /* raw binary format */
652 case 'c': /* external checksum format */
658 case 's': /* size given */
660 return cmd_usage(cmdtp);
661 size = hextoul(*++argv, NULL);
663 case 't': /* text format */
669 return CMD_RET_USAGE;
676 return CMD_RET_USAGE;
678 addr = hextoul(argv[0], NULL);
679 ptr = map_sysmem(addr, size);
682 memset(ptr, '\0', size);
687 if (sep) { /* export as text file */
688 len = hexport_r(&env_htab, sep,
689 H_MATCH_KEY | H_MATCH_IDENT,
690 &ptr, size, argc, argv);
692 pr_err("## Error: Cannot export environment: errno = %d\n",
696 sprintf(buf, "%zX", (size_t)len);
697 env_set("filesize", buf);
704 if (chk) /* export as checksum protected block */
705 res = (char *)envp->data;
706 else /* export as raw binary data */
709 len = hexport_r(&env_htab, '\0',
710 H_MATCH_KEY | H_MATCH_IDENT,
711 &res, ENV_SIZE, argc, argv);
713 pr_err("## Error: Cannot export environment: errno = %d\n",
719 envp->crc = crc32(0, envp->data,
720 size ? size - offsetof(env_t, data) : ENV_SIZE);
721 #ifdef CONFIG_ENV_ADDR_REDUND
722 envp->flags = ENV_REDUND_ACTIVE;
725 env_set_hex("filesize", len + offsetof(env_t, data));
730 printf("## Error: %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
736 #ifdef CONFIG_CMD_IMPORTENV
738 * env import [-d] [-t [-r] | -b | -c] addr [size] [var ...]
739 * -d: delete existing environment before importing if no var is
740 * passed; if vars are passed, if one var is in the current
741 * environment but not in the environment at addr, delete var from
742 * current environment;
743 * otherwise overwrite / append to existing definitions
744 * -t: assume text format; either "size" must be given or the
745 * text data must be '\0' terminated
746 * -r: handle CRLF like LF, that means exported variables with
747 * a content which ends with \r won't get imported. Used
748 * to import text files created with editors which are using CRLF
749 * for line endings. Only effective in addition to -t.
750 * -b: assume binary format ('\0' separated, "\0\0" terminated)
751 * -c: assume checksum protected environment format
752 * addr: memory address to read from
753 * size: length of input data; if missing, proper '\0'
754 * termination is mandatory
755 * if var is set and size should be missing (i.e. '\0'
756 * termination), set size to '-'
757 * var... List of the names of the only variables that get imported from
758 * the environment at address 'addr'. Without arguments, the whole
759 * environment gets imported.
761 static int do_env_import(struct cmd_tbl *cmdtp, int flag,
762 int argc, char *const argv[])
776 while (--argc > 0 && **++argv == '-') {
780 case 'b': /* raw binary format */
785 case 'c': /* external checksum format */
791 case 't': /* text format */
796 case 'r': /* handle CRLF like LF */
803 return CMD_RET_USAGE;
809 return CMD_RET_USAGE;
812 printf("## Warning: defaulting to text format\n");
814 if (sep != '\n' && crlf_is_lf )
817 addr = hextoul(argv[0], NULL);
818 ptr = map_sysmem(addr, 0);
820 if (argc >= 2 && strcmp(argv[1], "-")) {
821 size = hextoul(argv[1], NULL);
823 puts("## Error: external checksum format must pass size\n");
824 return CMD_RET_FAILURE;
830 while (size < MAX_ENV_SIZE) {
831 if ((*s == sep) && (*(s+1) == '\0'))
836 if (size == MAX_ENV_SIZE) {
837 printf("## Warning: Input data exceeds %d bytes"
838 " - truncated\n", MAX_ENV_SIZE);
841 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
849 env_t *ep = (env_t *)ptr;
851 if (size <= offsetof(env_t, data)) {
852 printf("## Error: Invalid size 0x%zX\n", size);
856 size -= offsetof(env_t, data);
857 memcpy(&crc, &ep->crc, sizeof(crc));
859 if (crc32(0, ep->data, size) != crc) {
860 puts("## Error: bad CRC, import failed\n");
863 ptr = (char *)ep->data;
866 if (!himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR,
867 crlf_is_lf, wl ? argc - 2 : 0, wl ? &argv[2] : NULL)) {
868 pr_err("## Error: Environment import failed: errno = %d\n",
872 gd->flags |= GD_FLG_ENV_READY;
877 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
883 #if defined(CONFIG_CMD_NVEDIT_INDIRECT)
884 static int do_env_indirect(struct cmd_tbl *cmdtp, int flag,
885 int argc, char *const argv[])
888 char *from = argv[2];
889 char *default_value = NULL;
893 if (argc < 3 || argc > 4) {
894 return CMD_RET_USAGE;
898 default_value = argv[3];
901 val = env_get(from) ?: default_value;
903 printf("## env indirect: Environment variable for <from> (%s) does not exist.\n", from);
905 return CMD_RET_FAILURE;
908 ret = env_set(to, val);
911 return CMD_RET_SUCCESS;
914 return CMD_RET_FAILURE;
919 #if defined(CONFIG_CMD_NVEDIT_INFO)
921 * print_env_info - print environment information
923 static int print_env_info(void)
927 /* print environment validity value */
928 switch (gd->env_valid) {
942 printf("env_valid = %s\n", value);
944 /* print environment ready flag */
945 value = gd->flags & GD_FLG_ENV_READY ? "true" : "false";
946 printf("env_ready = %s\n", value);
948 /* print environment using default flag */
949 value = gd->flags & GD_FLG_ENV_DEFAULT ? "true" : "false";
950 printf("env_use_default = %s\n", value);
952 return CMD_RET_SUCCESS;
955 #define ENV_INFO_IS_DEFAULT BIT(0) /* default environment bit mask */
956 #define ENV_INFO_IS_PERSISTED BIT(1) /* environment persistence bit mask */
959 * env info - display environment information
960 * env info [-d] - evaluate whether default environment is used
961 * env info [-p] - evaluate whether environment can be persisted
962 * Add [-q] - quiet mode, use only for command result, for test by example:
963 * test env info -p -d -q
965 static int do_env_info(struct cmd_tbl *cmdtp, int flag,
966 int argc, char *const argv[])
969 int eval_results = 0;
971 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
972 enum env_location loc;
975 /* display environment information */
977 return print_env_info();
979 /* process options */
980 while (--argc > 0 && **++argv == '-') {
986 eval_flags |= ENV_INFO_IS_DEFAULT;
989 eval_flags |= ENV_INFO_IS_PERSISTED;
995 return CMD_RET_USAGE;
1000 /* evaluate whether default environment is used */
1001 if (eval_flags & ENV_INFO_IS_DEFAULT) {
1002 if (gd->flags & GD_FLG_ENV_DEFAULT) {
1004 printf("Default environment is used\n");
1005 eval_results |= ENV_INFO_IS_DEFAULT;
1008 printf("Environment was loaded from persistent storage\n");
1012 /* evaluate whether environment can be persisted */
1013 if (eval_flags & ENV_INFO_IS_PERSISTED) {
1014 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1015 loc = env_get_location(ENVOP_SAVE, gd->env_load_prio);
1016 if (ENVL_NOWHERE != loc && ENVL_UNKNOWN != loc) {
1018 printf("Environment can be persisted\n");
1019 eval_results |= ENV_INFO_IS_PERSISTED;
1022 printf("Environment cannot be persisted\n");
1026 printf("Environment cannot be persisted\n");
1030 /* The result of evaluations is combined with AND */
1031 if (eval_flags != eval_results)
1032 return CMD_RET_FAILURE;
1034 return CMD_RET_SUCCESS;
1038 #if defined(CONFIG_CMD_ENV_EXISTS)
1039 static int do_env_exists(struct cmd_tbl *cmdtp, int flag, int argc,
1042 struct env_entry e, *ep;
1045 return CMD_RET_USAGE;
1049 hsearch_r(e, ENV_FIND, &ep, &env_htab, 0);
1051 return (ep == NULL) ? 1 : 0;
1056 * New command line interface: "env" command with subcommands
1058 static struct cmd_tbl cmd_env_sub[] = {
1059 #if defined(CONFIG_CMD_ASKENV)
1060 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
1062 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
1063 U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""),
1064 #if defined(CONFIG_CMD_EDITENV)
1065 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
1067 #if defined(CONFIG_CMD_ENV_CALLBACK)
1068 U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
1070 #if defined(CONFIG_CMD_ENV_FLAGS)
1071 U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
1073 #if defined(CONFIG_CMD_EXPORTENV)
1074 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
1076 #if defined(CONFIG_CMD_GREPENV)
1077 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
1079 #if defined(CONFIG_CMD_IMPORTENV)
1080 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
1082 #if defined(CONFIG_CMD_NVEDIT_INDIRECT)
1083 U_BOOT_CMD_MKENT(indirect, 3, 0, do_env_indirect, "", ""),
1085 #if defined(CONFIG_CMD_NVEDIT_INFO)
1086 U_BOOT_CMD_MKENT(info, 3, 0, do_env_info, "", ""),
1088 #if defined(CONFIG_CMD_NVEDIT_LOAD)
1089 U_BOOT_CMD_MKENT(load, 1, 0, do_env_load, "", ""),
1091 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1092 #if defined(CONFIG_CMD_RUN)
1093 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1095 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1096 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1097 #if defined(CONFIG_CMD_ERASEENV)
1098 U_BOOT_CMD_MKENT(erase, 1, 0, do_env_erase, "", ""),
1101 #if defined(CONFIG_CMD_NVEDIT_SELECT)
1102 U_BOOT_CMD_MKENT(select, 2, 0, do_env_select, "", ""),
1104 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
1105 #if defined(CONFIG_CMD_ENV_EXISTS)
1106 U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""),
1110 static int do_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
1115 return CMD_RET_USAGE;
1117 /* drop initial "env" arg */
1121 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1124 return cp->cmd(cmdtp, flag, argc, argv);
1126 return CMD_RET_USAGE;
1129 U_BOOT_LONGHELP(env,
1130 #if defined(CONFIG_CMD_ASKENV)
1131 "ask name [message] [size] - ask for environment variable\nenv "
1133 #if defined(CONFIG_CMD_ENV_CALLBACK)
1134 "callbacks - print callbacks and their associated variables\nenv "
1136 "default [-f] -a - [forcibly] reset default environment\n"
1137 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
1138 "env delete [-f] var [...] - [forcibly] delete variable(s)\n"
1139 #if defined(CONFIG_CMD_EDITENV)
1140 "env edit name - edit environment variable\n"
1142 #if defined(CONFIG_CMD_ENV_EXISTS)
1143 "env exists name - tests for existence of variable\n"
1145 #if defined(CONFIG_CMD_EXPORTENV)
1146 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
1148 #if defined(CONFIG_CMD_ENV_FLAGS)
1149 "env flags - print variables that have non-default flags\n"
1151 #if defined(CONFIG_CMD_GREPENV)
1153 "env grep [-e] [-n | -v | -b] string [...] - search environment\n"
1155 "env grep [-n | -v | -b] string [...] - search environment\n"
1158 #if defined(CONFIG_CMD_IMPORTENV)
1159 "env import [-d] [-t [-r] | -b | -c] addr [size] [var ...] - import environment\n"
1161 #if defined(CONFIG_CMD_NVEDIT_INDIRECT)
1162 "env indirect <to> <from> [default] - sets <to> to the value of <from>, using [default] when unset\n"
1164 #if defined(CONFIG_CMD_NVEDIT_INFO)
1165 "env info - display environment information\n"
1166 "env info [-d] [-p] [-q] - evaluate environment information\n"
1167 " \"-d\": default environment is used\n"
1168 " \"-p\": environment can be persisted\n"
1169 " \"-q\": quiet output\n"
1171 "env print [-a | name ...] - print environment\n"
1172 #if defined(CONFIG_CMD_NVEDIT_EFI)
1173 "env print -e [-guid guid] [-n] [name ...] - print UEFI environment\n"
1175 #if defined(CONFIG_CMD_RUN)
1176 "env run var [...] - run commands in an environment variable\n"
1178 #if defined(CONFIG_CMD_SAVEENV) && !IS_ENABLED(CONFIG_ENV_IS_DEFAULT)
1179 "env save - save environment\n"
1180 #if defined(CONFIG_CMD_ERASEENV)
1181 "env erase - erase environment\n"
1184 #if defined(CONFIG_CMD_NVEDIT_LOAD)
1185 "env load - load environment\n"
1187 #if defined(CONFIG_CMD_NVEDIT_SELECT)
1188 "env select [target] - select environment target\n"
1190 #if defined(CONFIG_CMD_NVEDIT_EFI)
1191 "env set -e [-nv][-bs][-rt][-at][-a][-i addr:size][-v] name [arg ...]\n"
1192 " - set UEFI variable; unset if '-i' or 'arg' not specified\n"
1194 "env set [-f] name [arg ...]\n");
1197 env, CONFIG_SYS_MAXARGS, 1, do_env,
1198 "environment handling commands", env_help_text
1202 * Old command line interface, kept for compatibility
1205 #if defined(CONFIG_CMD_EDITENV)
1206 U_BOOT_CMD_COMPLETE(
1207 editenv, 2, 0, do_env_edit,
1208 "edit environment variable",
1210 " - edit environment variable 'name'",
1215 U_BOOT_CMD_COMPLETE(
1216 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
1217 "print environment variables",
1218 "[-a]\n - print [all] values of all environment variables\n"
1219 #if defined(CONFIG_CMD_NVEDIT_EFI)
1220 "printenv -e [-guid guid][-n] [name ...]\n"
1221 " - print UEFI variable 'name' or all the variables\n"
1222 " \"-guid\": GUID xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n"
1223 " \"-n\": suppress dumping variable's value\n"
1225 "printenv name ...\n"
1226 " - print value of environment variable 'name'",
1230 #ifdef CONFIG_CMD_GREPENV
1231 U_BOOT_CMD_COMPLETE(
1232 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1233 "search environment variables",
1235 "[-e] [-n | -v | -b] string ...\n"
1237 "[-n | -v | -b] string ...\n"
1239 " - list environment name=value pairs matching 'string'\n"
1241 " \"-e\": enable regular expressions;\n"
1243 " \"-n\": search variable names; \"-v\": search values;\n"
1244 " \"-b\": search both names and values (default)",
1249 U_BOOT_CMD_COMPLETE(
1250 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
1251 "set environment variables",
1252 #if defined(CONFIG_CMD_NVEDIT_EFI)
1253 "-e [-guid guid][-nv][-bs][-rt][-at][-a][-v]\n"
1254 " [-i addr:size name], or [name [value ...]]\n"
1255 " - set UEFI variable 'name' to 'value' ...'\n"
1256 " \"-guid\": GUID xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n"
1257 " \"-nv\": set non-volatile attribute\n"
1258 " \"-bs\": set boot-service attribute\n"
1259 " \"-rt\": set runtime attribute\n"
1260 " \"-at\": set time-based authentication attribute\n"
1261 " \"-a\": append-write\n"
1262 " \"-i addr,size\": use <addr,size> as variable's value\n"
1263 " \"-v\": verbose message\n"
1264 " - delete UEFI variable 'name' if 'value' not specified\n"
1266 "setenv [-f] name value ...\n"
1267 " - [forcibly] set environment variable 'name' to 'value ...'\n"
1268 "setenv [-f] name\n"
1269 " - [forcibly] delete environment variable 'name'",
1273 #if defined(CONFIG_CMD_ASKENV)
1276 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
1277 "get environment variables from stdin",
1278 "name [message] [size]\n"
1279 " - get environment variable 'name' from stdin (max 'size' chars)"
1283 #if defined(CONFIG_CMD_RUN)
1284 U_BOOT_CMD_COMPLETE(
1285 run, CONFIG_SYS_MAXARGS, 1, do_run,
1286 "run commands in an environment variable",
1288 " - run the commands in the environment variable(s) 'var'",
1292 #endif /* CONFIG_SPL_BUILD */