aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorStefano Stabellini2021-04-16 13:36:20 -0700
committerStefano Stabellini2021-05-17 14:50:54 -0700
commita2b5ba41fed282f50b34f80e72e1a3d6c8ee3b4d (patch)
tree6fe05cecc0331f669fa8feeab659537c9d488e8a /README.md
parenta277dc17751ffb5eef3e6452e05a5a4e0f5953d3 (diff)
Add LOAD_CMD parsing to disk_image
Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com> Reviewed-by: Brian Woods <brian.woods@xilinx.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index c9a9850..4adb9dc 100644
--- a/README.md
+++ b/README.md
@@ -130,7 +130,8 @@ script, disk_image is run as follows:
```
$ sudo bash ./scripts/disk_image -c /path/to/config-file -d . \
-w /path/to/tmp/dir \
- -o /path/to/output/disk.img
+ -o /path/to/output/disk.img \
+ -t "sd"
```
Where:\
@@ -140,3 +141,7 @@ Where:\
-w specifies the temporary working directory that the script uses for
building the disk image, and if not set, one is created in /tmp\
-o specifies the output disk image file name\
+-t specifies the u-boot command to load the binaries. "tftp", "sd" and
+ "scsi" are shorthands for "tftpb", "load mmc 0:1" and
+ "load scsi 0:1", but actually any arbitrary command can be used, for
+ instance -t "fatload" is valid.