wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 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 | |
| 24 | This directory contains scripts that help to perform certain actions |
| 25 | that need to be done frequently when working with U-Boot. |
| 26 | |
| 27 | They are meant as EXAMPLE code, so it is very likely that you will |
| 28 | have to modify them before use. |
| 29 | |
| 30 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 31 | Short description: |
| 32 | ================== |
| 33 | |
| 34 | dot.kermrc: |
| 35 | |
| 36 | Example for "~/.kermrc" Kermit init file for use with U-Boot |
| 37 | |
| 38 | by Wolfgang Denk, 24 Jun 2001 |
| 39 | |
| 40 | flash_param: |
| 41 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 42 | "kermit" script to automatically initialize the environment |
| 43 | variables on your target. This is most useful during |
| 44 | development when your environment variables are stored in an |
| 45 | embedded flash sector which is erased whenever you install a |
| 46 | new U-Boot image. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 47 | |
| 48 | by Swen Anderson, 10 May 2001 |
| 49 | |
| 50 | send_cmd: |
| 51 | |
| 52 | send_cmd U_BOOT_COMMAND |
| 53 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 54 | "kermit" script to send a U-Boot command and print the |
| 55 | results. When used from a shell with history (like the bash) |
| 56 | this indirectly adds kind of history to U-Boot ;-) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 57 | |
| 58 | by Swen Anderson, 10 May 2001 |
| 59 | |
| 60 | send_image: |
| 61 | |
| 62 | send_image FILE_NAME OFFSET |
| 63 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 64 | "kermit" script to automatically download a file to the |
| 65 | target using the "loadb" command (kermit binary protocol) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 66 | |
| 67 | by Swen Anderson, 10 May 2001 |