2018-05-06 21:58:06 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:07:02 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2001
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
|
|
|
|
This directory contains scripts that help to perform certain actions
|
|
|
|
that need to be done frequently when working with U-Boot.
|
|
|
|
|
2013-12-24 05:59:19 +00:00
|
|
|
They are meant as EXAMPLE code, so it is very likely that you will
|
2002-11-03 00:07:02 +00:00
|
|
|
have to modify them before use.
|
|
|
|
|
|
|
|
|
|
|
|
Short description:
|
|
|
|
==================
|
|
|
|
|
|
|
|
dot.kermrc:
|
|
|
|
|
|
|
|
Example for "~/.kermrc" Kermit init file for use with U-Boot
|
|
|
|
|
|
|
|
by Wolfgang Denk, 24 Jun 2001
|
|
|
|
|
|
|
|
flash_param:
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
"kermit" script to automatically initialize the environment
|
|
|
|
variables on your target. This is most useful during
|
|
|
|
development when your environment variables are stored in an
|
|
|
|
embedded flash sector which is erased whenever you install a
|
|
|
|
new U-Boot image.
|
2002-11-03 00:07:02 +00:00
|
|
|
|
|
|
|
by Swen Anderson, 10 May 2001
|
|
|
|
|
|
|
|
send_cmd:
|
|
|
|
|
|
|
|
send_cmd U_BOOT_COMMAND
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
"kermit" script to send a U-Boot command and print the
|
|
|
|
results. When used from a shell with history (like the bash)
|
|
|
|
this indirectly adds kind of history to U-Boot ;-)
|
2002-11-03 00:07:02 +00:00
|
|
|
|
|
|
|
by Swen Anderson, 10 May 2001
|
|
|
|
|
|
|
|
send_image:
|
|
|
|
|
|
|
|
send_image FILE_NAME OFFSET
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
"kermit" script to automatically download a file to the
|
|
|
|
target using the "loadb" command (kermit binary protocol)
|
2002-11-03 00:07:02 +00:00
|
|
|
|
|
|
|
by Swen Anderson, 10 May 2001
|