README 1.2 KB

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