diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-04 17:24:45 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-19 11:10:04 -0500 |
commit | 79fc0c5f498c3982aa4740c273ab1a9255063d9c (patch) | |
tree | 63ae9ab410770442f296586ae4207fdae51cfa35 /tools/env/README | |
parent | 9a368d0f5818bb671c4567ca0e2dbabbf9c6724d (diff) | |
download | u-boot-imx-79fc0c5f498c3982aa4740c273ab1a9255063d9c.zip u-boot-imx-79fc0c5f498c3982aa4740c273ab1a9255063d9c.tar.gz u-boot-imx-79fc0c5f498c3982aa4740c273ab1a9255063d9c.tar.bz2 |
tools/env: cross-compile fw_printenv without setting HOSTCC
fw_printenv is a program which mostly runs on the target Linux.
Before switching to Kbuild, we needed to set HOSTCC at the
command line like this:
make HOSTCC=<your CC cross-compiler> env
Going forward we can cross compile it by specifying CROSS_COMPILE:
make CROSS_COMPILE=<your cross-compiler prefix> env
This looks more natural.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Tested-by: Gerhard Sittig <gsi@denx.de>
Diffstat (limited to 'tools/env/README')
-rw-r--r-- | tools/env/README | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/env/README b/tools/env/README index 1020b57..24e31bc 100644 --- a/tools/env/README +++ b/tools/env/README @@ -2,11 +2,10 @@ This is a demo implementation of a Linux command line tool to access the U-Boot's environment variables. -In the current version, there is an issue in cross-compilation. In order to cross-compile fw_printenv, run - make HOSTCC=<your CC cross-compiler> env + make CROSS_COMPILE=<your cross-compiler prefix> env in the root directory of the U-Boot distribution. For example, - make HOSTCC=arm-linux-gcc env + make CROSS_COMPILE=arm-linux- env For the run-time utility configuration uncomment the line #define CONFIG_FILE "/etc/fw_env.config" |