NameDateSize

..18-Apr-2024129

dot.kermrcH A D23-Aug-2016500

flash_paramH A D23-Aug-20161.5 KiB

READMEH A D30-Jun-20181.2 KiB

send_cmdH A D23-Aug-2016323

send_imageH A D23-Aug-2016427

README

1# SPDX-License-Identifier: GPL-2.0+
2#
3# (C) Copyright 2001
4# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
6This directory contains scripts that help to perform certain actions
7that need to be done frequently when working with U-Boot.
8
9They are meant as EXAMPLE code, so it is very likely that you will
10have to modify them before use.
11
12
13Short 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
24	"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.
29
30	by Swen Anderson, 10 May 2001
31
32send_cmd:
33
34	send_cmd U_BOOT_COMMAND
35
36	"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 ;-)
39
40	by Swen Anderson, 10 May 2001
41
42send_image:
43
44	send_image FILE_NAME OFFSET
45
46	"kermit" script to automatically download a file to the
47	target using the "loadb" command (kermit binary protocol)
48
49	by Swen Anderson, 10 May 2001
50