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