summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--tools/env/README4
2 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 020ebd50ad2..70971b11014 100644
--- a/Makefile
+++ b/Makefile
@@ -1465,14 +1465,14 @@ checkarmreloc: u-boot
false; \
fi
-environ: scripts_basic
+envtools: scripts_basic
$(Q)$(MAKE) $(build)=tools/env
tools-only: scripts_basic $(version_h) $(timestamp_h)
$(Q)$(MAKE) $(build)=tools
tools-all: export HOST_TOOLS_ALL=y
-tools-all: environ tools ;
+tools-all: envtools tools ;
cross_tools: export CROSS_BUILD_TOOLS=y
cross_tools: tools ;
diff --git a/tools/env/README b/tools/env/README
index 24e31bc9f80..bc6e2c11efd 100644
--- a/tools/env/README
+++ b/tools/env/README
@@ -3,9 +3,9 @@ This is a demo implementation of a Linux command line tool to access
the U-Boot's environment variables.
In order to cross-compile fw_printenv, run
- make CROSS_COMPILE=<your cross-compiler prefix> env
+ make CROSS_COMPILE=<your cross-compiler prefix> envtools
in the root directory of the U-Boot distribution. For example,
- make CROSS_COMPILE=arm-linux- env
+ make CROSS_COMPILE=arm-linux- envtools
For the run-time utility configuration uncomment the line
#define CONFIG_FILE "/etc/fw_env.config"