]> git.ipfire.org Git - people/ms/u-boot.git/blame - tools/kermit/README
binman: Add add test for using an Intel MRC binary
[people/ms/u-boot.git] / tools / kermit / README
CommitLineData
5b1d7137
WD
1#
2# (C) Copyright 2001
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
5b1d7137
WD
6#
7
8This directory contains scripts that help to perform certain actions
9that need to be done frequently when working with U-Boot.
10
26d28574 11They are meant as EXAMPLE code, so it is very likely that you will
5b1d7137
WD
12have to modify them before use.
13
14
5b1d7137
WD
15Short description:
16==================
17
18dot.kermrc:
19
20 Example for "~/.kermrc" Kermit init file for use with U-Boot
21
22 by Wolfgang Denk, 24 Jun 2001
23
24flash_param:
25
8bde7f77
WD
26 "kermit" script to automatically initialize the environment
27 variables on your target. This is most useful during
28 development when your environment variables are stored in an
29 embedded flash sector which is erased whenever you install a
30 new U-Boot image.
5b1d7137
WD
31
32 by Swen Anderson, 10 May 2001
33
34send_cmd:
35
36 send_cmd U_BOOT_COMMAND
37
8bde7f77
WD
38 "kermit" script to send a U-Boot command and print the
39 results. When used from a shell with history (like the bash)
40 this indirectly adds kind of history to U-Boot ;-)
5b1d7137
WD
41
42 by Swen Anderson, 10 May 2001
43
44send_image:
45
46 send_image FILE_NAME OFFSET
47
8bde7f77
WD
48 "kermit" script to automatically download a file to the
49 target using the "loadb" command (kermit binary protocol)
5b1d7137
WD
50
51 by Swen Anderson, 10 May 2001