blob: 709251383c6dc22eead9521b195fd389de6b45ed [file] [log] [blame]
wdenk6aff3112002-12-17 01:51:00 +00001
2This is a demo implementation of a Linux command line tool to access
3the U-Boot's environment variables.
4
Luca Ceresoli56c17692011-04-07 22:11:20 +00005In order to cross-compile fw_printenv, run
Simon Glass57332952017-09-05 01:53:58 -06006 make CROSS_COMPILE=<your cross-compiler prefix> envtools
Luca Ceresoli56c17692011-04-07 22:11:20 +00007in the root directory of the U-Boot distribution. For example,
Simon Glass57332952017-09-05 01:53:58 -06008 make CROSS_COMPILE=arm-linux- envtools
Luca Ceresoli56c17692011-04-07 22:11:20 +00009
Simon Glass84a42062017-09-05 01:53:59 -060010You should then create a symlink from fw_setenv to fw_printenv. They use
11the same program and its function depends on its basename.
12
Robert P. J. Day55011532013-02-27 11:28:45 +000013For the run-time utility configuration uncomment the line
wdenkd0fb80c2003-01-11 09:48:40 +000014#define CONFIG_FILE "/etc/fw_env.config"
15in fw_env.h.
16
Markus Klotzbücher6de66b32007-11-27 10:23:20 +010017For building against older versions of the MTD headers (meaning before
18v2.6.8-rc1) it is required to pass the argument "MTD_VERSION=old" to
19make.
20
wdenkd0fb80c2003-01-11 09:48:40 +000021See comments in the fw_env.config file for definitions for the
22particular board.
23
24Configuration can also be done via #defines in the fw_env.h file. The
wdenk6aff3112002-12-17 01:51:00 +000025following lines are relevant:
26
27#define HAVE_REDUND /* For systems with 2 env sectors */
28#define DEVICE1_NAME "/dev/mtd1"
29#define DEVICE2_NAME "/dev/mtd2"
wdenkd0fb80c2003-01-11 09:48:40 +000030#define DEVICE1_OFFSET 0x0000
31#define ENV1_SIZE 0x4000
32#define DEVICE1_ESIZE 0x4000
Guennadi Liakhovetski56086922008-09-04 13:01:49 +020033#define DEVICE1_ENVSECTORS 2
wdenkd0fb80c2003-01-11 09:48:40 +000034#define DEVICE2_OFFSET 0x0000
35#define ENV2_SIZE 0x4000
36#define DEVICE2_ESIZE 0x4000
Guennadi Liakhovetski56086922008-09-04 13:01:49 +020037#define DEVICE2_ENVSECTORS 2
wdenk6aff3112002-12-17 01:51:00 +000038
Robert P. J. Day55011532013-02-27 11:28:45 +000039Un-define HAVE_REDUND, if you want to use the utilities on a system
wdenkd0fb80c2003-01-11 09:48:40 +000040that does not have support for redundant environment enabled.
41If HAVE_REDUND is undefined, DEVICE2_NAME is ignored,
42as is ENV2_SIZE and DEVICE2_ESIZE.
43
44The DEVICEx_NAME constants define which MTD character devices are to
45be used to access the environment.
46
47The DEVICEx_OFFSET constants define the environment offset within the
48MTD character device.
49
50ENVx_SIZE defines the size in bytes taken by the environment, which
51may be less then flash sector size, if the environment takes less
52then 1 sector.
53
wdenk6aff3112002-12-17 01:51:00 +000054DEVICEx_ESIZE defines the size of the first sector in the flash
wdenkd0fb80c2003-01-11 09:48:40 +000055partition where the environment resides.
Guennadi Liakhovetski56086922008-09-04 13:01:49 +020056
57DEVICEx_ENVSECTORS defines the number of sectors that may be used for
58this environment instance. On NAND this is used to limit the range
59within which bad blocks are skipped, on NOR it is not used.
Joe Hershberger1c4ea782012-10-04 08:31:00 +000060
61To prevent losing changes to the environment and to prevent confusing the MTD
62drivers, a lock file at /var/lock/fw_printenv.lock is used to serialize access
63to the environment.