aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBrian Woods2021-09-02 16:52:17 -0700
committerStefano Stabellini2021-09-03 11:05:13 -0700
commitcb376bb3ad07ab88a0c02d6a241e5847510ce1be (patch)
treee578fa9222717421bae0f49290ca57c3b4c18696 /README.md
parent5c1faa5b84d22aea0995da9b53503b213528afd5 (diff)
Add support for setting LOAD_CMD in the config
Reducing what's needed in the CLI arguments to a minimum to streamline usage. The current behavior does not change and setting it on the CLI arguments will overwrite what's in the config file. Signed-off-by: Brian Woods <brian.woods@xilinx.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index f8f8022..bf6e374 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,7 @@ To use it, first write a config file like `config`:
MEMORY_START="0x0"
MEMORY_END="0x80000000"
EFI=y
+LOAD_CMD="tftpb"
DEVICE_TREE="mpsoc.dtb"
XEN="xen"
@@ -62,6 +63,11 @@ FIT="boot.fit"
Where:
- MEMORY_START and MEMORY_END specify the start and end of RAM.
+- LOAD_CMD specifies the u-boot command used to load the binaries. This
+ can be left out of the config and be (over)written by the -t CLI
+ argument. It has to be set either in the config file or CLI argument
+ though.
+
- EFI specifies if the bootefi boot command should be used over booti.
If set to anything other than "n", "no", or "false" it will enable
bootefi.