Home | History | Annotate | only in /external/u-boot/tools/kermit
Up to higher level directory
NameDateSize
dot.kermrc22-Oct-2020500
flash_param22-Oct-20201.5K
README22-Oct-20201.2K
send_cmd22-Oct-2020323
send_image22-Oct-2020427

README

      1 # SPDX-License-Identifier: GPL-2.0+
      2 #
      3 # (C) Copyright 2001
      4 # Wolfgang Denk, DENX Software Engineering, wd (a] denx.de.
      5 
      6 This directory contains scripts that help to perform certain actions
      7 that need to be done frequently when working with U-Boot.
      8 
      9 They are meant as EXAMPLE code, so it is very likely that you will
     10 have to modify them before use.
     11 
     12 
     13 Short description:
     14 ==================
     15 
     16 dot.kermrc:
     17 
     18 	Example for "~/.kermrc" Kermit init file for use with U-Boot
     19 
     20 	by Wolfgang Denk, 24 Jun 2001
     21 
     22 flash_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 
     32 send_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 
     42 send_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