README 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #
  2. # (C) Copyright 2001
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # See file CREDITS for list of people who contributed to this
  6. # project.
  7. #
  8. # The files in this directory are free software; you can redistribute
  9. # them and/or modify them under the terms of the GNU General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2 of the License, or (at your option) any later version.
  12. #
  13. # These files are distributed in the hope that they will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. # MA 02111-1307 USA
  22. #
  23. This directory contains scripts that help to perform certain actions
  24. that need to be done frequently when working with U-Boot.
  25. They are meant as EXAMPLE code, so it is very likely that you will
  26. have to modify them before use.
  27. Short description:
  28. ==================
  29. dot.kermrc:
  30. Example for "~/.kermrc" Kermit init file for use with U-Boot
  31. by Wolfgang Denk, 24 Jun 2001
  32. flash_param:
  33. "kermit" script to automatically initialize the environment
  34. variables on your target. This is most useful during
  35. development when your environment variables are stored in an
  36. embedded flash sector which is erased whenever you install a
  37. new U-Boot image.
  38. by Swen Anderson, 10 May 2001
  39. send_cmd:
  40. send_cmd U_BOOT_COMMAND
  41. "kermit" script to send a U-Boot command and print the
  42. results. When used from a shell with history (like the bash)
  43. this indirectly adds kind of history to U-Boot ;-)
  44. by Swen Anderson, 10 May 2001
  45. send_image:
  46. send_image FILE_NAME OFFSET
  47. "kermit" script to automatically download a file to the
  48. target using the "loadb" command (kermit binary protocol)
  49. by Swen Anderson, 10 May 2001