blob: 2b3f0b5cd48fe46e1cbcb13ead8a3258e991669d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
wdenk5b1d7132002-11-03 00:07:02 +00002#
3# (C) Copyright 2001
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk5b1d7132002-11-03 00:07:02 +00005
6This directory contains scripts that help to perform certain actions
7that need to be done frequently when working with U-Boot.
8
Masahiro Yamada26d28572013-12-24 14:59:19 +09009They are meant as EXAMPLE code, so it is very likely that you will
wdenk5b1d7132002-11-03 00:07:02 +000010have to modify them before use.
11
12
wdenk5b1d7132002-11-03 00:07:02 +000013Short description:
14==================
15
16dot.kermrc:
17
18 Example for "~/.kermrc" Kermit init file for use with U-Boot
19
20 by Wolfgang Denk, 24 Jun 2001
21
22flash_param:
23
wdenk8bde7f72003-06-27 21:31:46 +000024 "kermit" script to automatically initialize the environment
25 variables on your target. This is most useful during
26 development when your environment variables are stored in an
27 embedded flash sector which is erased whenever you install a
28 new U-Boot image.
wdenk5b1d7132002-11-03 00:07:02 +000029
30 by Swen Anderson, 10 May 2001
31
32send_cmd:
33
34 send_cmd U_BOOT_COMMAND
35
wdenk8bde7f72003-06-27 21:31:46 +000036 "kermit" script to send a U-Boot command and print the
37 results. When used from a shell with history (like the bash)
38 this indirectly adds kind of history to U-Boot ;-)
wdenk5b1d7132002-11-03 00:07:02 +000039
40 by Swen Anderson, 10 May 2001
41
42send_image:
43
44 send_image FILE_NAME OFFSET
45
wdenk8bde7f72003-06-27 21:31:46 +000046 "kermit" script to automatically download a file to the
47 target using the "loadb" command (kermit binary protocol)
wdenk5b1d7132002-11-03 00:07:02 +000048
49 by Swen Anderson, 10 May 2001