Blame view

tools/kermit/README 1.2 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  # SPDX-License-Identifier: GPL-2.0+
5b1d71372   wdenk   Initial revision
2
3
4
  #
  # (C) Copyright 2001
  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5b1d71372   wdenk   Initial revision
5
6
7
  
  This directory contains scripts that help to perform certain actions
  that need to be done frequently when working with U-Boot.
26d285748   Masahiro Yamada   cosmetic: tools/s...
8
  They are meant as EXAMPLE code, so it is very likely that you will
5b1d71372   wdenk   Initial revision
9
  have to modify them before use.
5b1d71372   wdenk   Initial revision
10
11
12
13
14
15
16
17
18
19
  Short description:
  ==================
  
  dot.kermrc:
  
  	Example for "~/.kermrc" Kermit init file for use with U-Boot
  
  	by Wolfgang Denk, 24 Jun 2001
  
  flash_param:
8bde7f776   wdenk   * Code cleanup:
20
21
22
23
24
  	"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.
5b1d71372   wdenk   Initial revision
25
26
27
28
29
30
  
  	by Swen Anderson, 10 May 2001
  
  send_cmd:
  
  	send_cmd U_BOOT_COMMAND
8bde7f776   wdenk   * Code cleanup:
31
32
33
  	"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 ;-)
5b1d71372   wdenk   Initial revision
34
35
36
37
38
39
  
  	by Swen Anderson, 10 May 2001
  
  send_image:
  
  	send_image FILE_NAME OFFSET
8bde7f776   wdenk   * Code cleanup:
40
41
  	"kermit" script to automatically download a file to the
  	target using the "loadb" command (kermit binary protocol)
5b1d71372   wdenk   Initial revision
42
43
  
  	by Swen Anderson, 10 May 2001