Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2001 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 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 | |
Masahiro Yamada | 26d2857 | 2013-12-24 14:59:19 +0900 | [diff] [blame] | 9 | They are meant as EXAMPLE code, so it is very likely that you will |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 10 | have to modify them before use. |
| 11 | |
| 12 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 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 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 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. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 29 | |
| 30 | by Swen Anderson, 10 May 2001 |
| 31 | |
| 32 | send_cmd: |
| 33 | |
| 34 | send_cmd U_BOOT_COMMAND |
| 35 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 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 ;-) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 39 | |
| 40 | by Swen Anderson, 10 May 2001 |
| 41 | |
| 42 | send_image: |
| 43 | |
| 44 | send_image FILE_NAME OFFSET |
| 45 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 46 | "kermit" script to automatically download a file to the |
| 47 | target using the "loadb" command (kermit binary protocol) |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 48 | |
| 49 | by Swen Anderson, 10 May 2001 |