diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2009-01-28 19:08:14 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-02-18 00:47:43 +0100 | 
| commit | bdab39d358e63aa47f400a8a76b8d5f283842df3 (patch) | |
| tree | f6ac6ae5f50baba778552758fe18919339acc83b /common/cmd_nvedit.c | |
| parent | 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101 (diff) | |
| download | olio-uboot-2014.01-bdab39d358e63aa47f400a8a76b8d5f283842df3.tar.xz olio-uboot-2014.01-bdab39d358e63aa47f400a8a76b8d5f283842df3.zip | |
rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
rather than a generic "env" command, or anything else related to the
environment.  So, let's make sure the define is named accordingly.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'common/cmd_nvedit.c')
| -rw-r--r-- | common/cmd_nvedit.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index 1fcb4c96a..02b18ec32 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -546,7 +546,7 @@ int getenv_r (char *name, char *buf, unsigned len)  	return (-1);  } -#if defined(CONFIG_CMD_ENV) && !defined(CONFIG_ENV_IS_NOWHERE) +#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)  int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  { |