README 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. This is a demo implementation of a Linux command line tool to access
  2. the U-Boot's environment variables.
  3. In order to cross-compile fw_printenv, run
  4. make CROSS_COMPILE=<your cross-compiler prefix> env
  5. in the root directory of the U-Boot distribution. For example,
  6. make CROSS_COMPILE=arm-linux- env
  7. For the run-time utility configuration uncomment the line
  8. #define CONFIG_FILE "/etc/fw_env.config"
  9. in fw_env.h.
  10. For building against older versions of the MTD headers (meaning before
  11. v2.6.8-rc1) it is required to pass the argument "MTD_VERSION=old" to
  12. make.
  13. See comments in the fw_env.config file for definitions for the
  14. particular board.
  15. Configuration can also be done via #defines in the fw_env.h file. The
  16. following lines are relevant:
  17. #define HAVE_REDUND /* For systems with 2 env sectors */
  18. #define DEVICE1_NAME "/dev/mtd1"
  19. #define DEVICE2_NAME "/dev/mtd2"
  20. #define DEVICE1_OFFSET 0x0000
  21. #define ENV1_SIZE 0x4000
  22. #define DEVICE1_ESIZE 0x4000
  23. #define DEVICE1_ENVSECTORS 2
  24. #define DEVICE2_OFFSET 0x0000
  25. #define ENV2_SIZE 0x4000
  26. #define DEVICE2_ESIZE 0x4000
  27. #define DEVICE2_ENVSECTORS 2
  28. Un-define HAVE_REDUND, if you want to use the utilities on a system
  29. that does not have support for redundant environment enabled.
  30. If HAVE_REDUND is undefined, DEVICE2_NAME is ignored,
  31. as is ENV2_SIZE and DEVICE2_ESIZE.
  32. The DEVICEx_NAME constants define which MTD character devices are to
  33. be used to access the environment.
  34. The DEVICEx_OFFSET constants define the environment offset within the
  35. MTD character device.
  36. ENVx_SIZE defines the size in bytes taken by the environment, which
  37. may be less then flash sector size, if the environment takes less
  38. then 1 sector.
  39. DEVICEx_ESIZE defines the size of the first sector in the flash
  40. partition where the environment resides.
  41. DEVICEx_ENVSECTORS defines the number of sectors that may be used for
  42. this environment instance. On NAND this is used to limit the range
  43. within which bad blocks are skipped, on NOR it is not used.
  44. To prevent losing changes to the environment and to prevent confusing the MTD
  45. drivers, a lock file at /var/lock/fw_printenv.lock is used to serialize access
  46. to the environment.