]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - tools/scripts/README
Initial revision
[karo-tx-uboot.git] / tools / scripts / README
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
31
32 Short description:
33 ==================
34
35 dot.kermrc:
36
37         Example for "~/.kermrc" Kermit init file for use with U-Boot
38
39         by Wolfgang Denk, 24 Jun 2001
40
41 flash_param:
42
43         "kermit" script to automatically initialize the environment
44         variables on your target. This is most useful during
45         development when your environment variables are stored in an
46         embedded flash sector which is erased whenever you install a
47         new U-Boot image.
48
49         by Swen Anderson, 10 May 2001
50
51 send_cmd:
52
53         send_cmd U_BOOT_COMMAND
54
55         "kermit" script to send a U-Boot command and print the
56         results. When used from a shell with history (like the bash)
57         this indirectly adds kind of history to U-Boot ;-)
58
59         by Swen Anderson, 10 May 2001
60
61 send_image:
62
63         send_image FILE_NAME OFFSET
64
65         "kermit" script to automatically download a file to the
66         target using the "loadb" command (kermit binary protocol)
67
68         by Swen Anderson, 10 May 2001