aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBrian Woods2021-01-28 19:28:15 -0800
committerStefano Stabellini2021-02-01 13:15:02 -0800
commit6f1950c30cfec0fee35a6c977166148274f037dd (patch)
treedaea72f2c16166aa47c2014fbf85e4a1c14b055a /README.md
parent04f503477ced16176f7db24f363e6378c2ac528b (diff)
Add/fix support for SCSI/SD aliases for load cmds
With the -t option, the "sd" was an alias for the "load scsi 0:1" load command. Change that to a "load mmc 0:1" alias and then add a "scsi" alias which is "load scsi 0:1". To make sure these aliases and manually setting the load command works, a parsing the command and setting the correct partition and devs was also added. Signed-off-by: Brian Woods <brian.woods@xilinx.com> Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0df4e4b..f7da514 100644
--- a/README.md
+++ b/README.md
@@ -97,9 +97,10 @@ Where:\
-d specifies the "root" directory (paths in the config file are relative
to it), this is not a working directory (any output file locations
are specified in the config and any temporary files are in /tmp)\
--t specifies the u-boot command to load the binaries. "tftp" and "sd"
- are shorthands for "tftpb" and "load scsi 0:1", but actually any
- arbitrary command can be used, for instance -t "fatload" is valid.\
+-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.\
-o specifies the output filename for the uboot script and its source.\