summaryrefslogtreecommitdiffstats
path: root/common/env_flash.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-01-28 19:08:14 -0500
committerWolfgang Denk <wd@denx.de>2009-02-18 00:47:43 +0100
commitbdab39d358e63aa47f400a8a76b8d5f283842df3 (patch)
treef6ac6ae5f50baba778552758fe18919339acc83b /common/env_flash.c
parent8b0592b89e0f9f81c9e150c81d96f8a43e4d6101 (diff)
downloadblackbird-obmc-uboot-bdab39d358e63aa47f400a8a76b8d5f283842df3.tar.gz
blackbird-obmc-uboot-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/env_flash.c')
-rw-r--r--common/env_flash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/env_flash.c b/common/env_flash.c
index 75ee8ddc89..00792cd38c 100644
--- a/common/env_flash.c
+++ b/common/env_flash.c
@@ -34,10 +34,10 @@
DECLARE_GLOBAL_DATA_PTR;
-#if defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)
+#if defined(CONFIG_CMD_SAVEENV) && defined(CONFIG_CMD_FLASH)
#define CMD_SAVEENV
#elif defined(CONFIG_ENV_ADDR_REDUND)
-#error Cannot use CONFIG_ENV_ADDR_REDUND without CONFIG_CMD_ENV & CONFIG_CMD_FLASH
+#error Cannot use CONFIG_ENV_ADDR_REDUND without CONFIG_CMD_SAVEENV & CONFIG_CMD_FLASH
#endif
#if defined(CONFIG_ENV_SIZE_REDUND) && (CONFIG_ENV_SIZE_REDUND < CONFIG_ENV_SIZE)
OpenPOWER on IntegriCloud