README 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #
  2. # (C) Copyright 2001
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. This directory contains scripts that help to perform certain actions
  8. that need to be done frequently when working with U-Boot.
  9. They are meant as EXAMPLE code, so it is very likely that you will
  10. have to modify them before use.
  11. Short description:
  12. ==================
  13. dot.kermrc:
  14. Example for "~/.kermrc" Kermit init file for use with U-Boot
  15. by Wolfgang Denk, 24 Jun 2001
  16. flash_param:
  17. "kermit" script to automatically initialize the environment
  18. variables on your target. This is most useful during
  19. development when your environment variables are stored in an
  20. embedded flash sector which is erased whenever you install a
  21. new U-Boot image.
  22. by Swen Anderson, 10 May 2001
  23. send_cmd:
  24. send_cmd U_BOOT_COMMAND
  25. "kermit" script to send a U-Boot command and print the
  26. results. When used from a shell with history (like the bash)
  27. this indirectly adds kind of history to U-Boot ;-)
  28. by Swen Anderson, 10 May 2001
  29. send_image:
  30. send_image FILE_NAME OFFSET
  31. "kermit" script to automatically download a file to the
  32. target using the "loadb" command (kermit binary protocol)
  33. by Swen Anderson, 10 May 2001