blob: c3b491aa55767f2a678f8ddd94d780f731801505 [file] [log] [blame]
wdenk5b1d7132002-11-03 00:07:02 +00001#
2# (C) Copyright 2001
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk5b1d7132002-11-03 00:07:02 +00006#
7
8This directory contains scripts that help to perform certain actions
9that need to be done frequently when working with U-Boot.
10
Masahiro Yamada26d28572013-12-24 14:59:19 +090011They are meant as EXAMPLE code, so it is very likely that you will
wdenk5b1d7132002-11-03 00:07:02 +000012have to modify them before use.
13
14
wdenk5b1d7132002-11-03 00:07:02 +000015Short 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
wdenk8bde7f72003-06-27 21:31:46 +000026 "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.
wdenk5b1d7132002-11-03 00:07:02 +000031
32 by Swen Anderson, 10 May 2001
33
34send_cmd:
35
36 send_cmd U_BOOT_COMMAND
37
wdenk8bde7f72003-06-27 21:31:46 +000038 "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 ;-)
wdenk5b1d7132002-11-03 00:07:02 +000041
42 by Swen Anderson, 10 May 2001
43
44send_image:
45
46 send_image FILE_NAME OFFSET
47
wdenk8bde7f72003-06-27 21:31:46 +000048 "kermit" script to automatically download a file to the
49 target using the "loadb" command (kermit binary protocol)
wdenk5b1d7132002-11-03 00:07:02 +000050
51 by Swen Anderson, 10 May 2001