blob: 046c1d411ca44b5b79e45a43b400252f5af6014f [file] [log] [blame]
wdenk5b1d7132002-11-03 00:07:02 +00001#
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
24This directory contains scripts that help to perform certain actions
25that need to be done frequently when working with U-Boot.
26
27They are meant as EXAMPLE code, so it is very likely that you will
28have to modify them before use.
29
30
wdenk5b1d7132002-11-03 00:07:02 +000031Short description:
32==================
33
34dot.kermrc:
35
36 Example for "~/.kermrc" Kermit init file for use with U-Boot
37
38 by Wolfgang Denk, 24 Jun 2001
39
40flash_param:
41
wdenk8bde7f72003-06-27 21:31:46 +000042 "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.
wdenk5b1d7132002-11-03 00:07:02 +000047
48 by Swen Anderson, 10 May 2001
49
50send_cmd:
51
52 send_cmd U_BOOT_COMMAND
53
wdenk8bde7f72003-06-27 21:31:46 +000054 "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 ;-)
wdenk5b1d7132002-11-03 00:07:02 +000057
58 by Swen Anderson, 10 May 2001
59
60send_image:
61
62 send_image FILE_NAME OFFSET
63
wdenk8bde7f72003-06-27 21:31:46 +000064 "kermit" script to automatically download a file to the
65 target using the "loadb" command (kermit binary protocol)
wdenk5b1d7132002-11-03 00:07:02 +000066
67 by Swen Anderson, 10 May 2001