README 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. This is a demo implementation of a Linux command line tool to access
  2. the U-Boot's environment variables.
  3. For the run-time utiltity configuration uncomment the line
  4. #define CONFIG_FILE "/etc/fw_env.config"
  5. in fw_env.h.
  6. See comments in the fw_env.config file for definitions for the
  7. particular board.
  8. Configuration can also be done via #defines in the fw_env.h file. The
  9. following lines are relevant:
  10. #define HAVE_REDUND /* For systems with 2 env sectors */
  11. #define DEVICE1_NAME "/dev/mtd1"
  12. #define DEVICE2_NAME "/dev/mtd2"
  13. #define DEVICE1_OFFSET 0x0000
  14. #define ENV1_SIZE 0x4000
  15. #define DEVICE1_ESIZE 0x4000
  16. #define DEVICE2_OFFSET 0x0000
  17. #define ENV2_SIZE 0x4000
  18. #define DEVICE2_ESIZE 0x4000
  19. Current configuration matches the environment layout of the TRAB
  20. board.
  21. Un-define HAVE_REDUND, if you want to use the utlities on a system
  22. that does not have support for redundant environment enabled.
  23. If HAVE_REDUND is undefined, DEVICE2_NAME is ignored,
  24. as is ENV2_SIZE and DEVICE2_ESIZE.
  25. The DEVICEx_NAME constants define which MTD character devices are to
  26. be used to access the environment.
  27. The DEVICEx_OFFSET constants define the environment offset within the
  28. MTD character device.
  29. ENVx_SIZE defines the size in bytes taken by the environment, which
  30. may be less then flash sector size, if the environment takes less
  31. then 1 sector.
  32. DEVICEx_ESIZE defines the size of the first sector in the flash
  33. partition where the environment resides.