summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-19 09:00:56 +0300
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-05-28 11:59:27 +0300
commit8131c85a77f9d06f28ccbf121545023ef78d8e86 (patch)
tree132c687708abe3578e64eca3fa2bcf8c0a8f7b7c /doc
parentb96de9cb0c27a736bd605b6ac063f23b12c0d134 (diff)
downloadu-boot-8131c85a77f9d06f28ccbf121545023ef78d8e86.tar.xz
cmd/bootefi: correct command syntax
For indicating the address and size of a memory region other commands use a <addr>[:<size>] syntax. Do the same for bootefi. Fixes: 2058983689f0 ("cmd: bootefi: restore ability to boot arbitrary blob") Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/usage/cmd/bootefi.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/usage/cmd/bootefi.rst b/doc/usage/cmd/bootefi.rst
index 4cc8c0718c..cb03df4e1c 100644
--- a/doc/usage/cmd/bootefi.rst
+++ b/doc/usage/cmd/bootefi.rst
@@ -9,10 +9,10 @@ Synopsis
::
- bootefi [image_addr] [fdt_addr [image_size]]
- bootefi bootmgr [fdt_addr]
- bootefi hello [fdt_addr]
- bootefi selftest [fdt_addr]
+ bootefi <image_addr>[:<image_size>] [<fdt_addr>]
+ bootefi bootmgr [<fdt_addr>]
+ bootefi hello [<fdt_addr>]
+ bootefi selftest [<fdt_addr>]
Description
-----------