diff options
author | Heinrich Schuchardt | 2022-05-19 08:00:56 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2022-05-28 10:59:27 +0200 |
commit | 8131c85a77f9d06f28ccbf121545023ef78d8e86 (patch) | |
tree | 132c687708abe3578e64eca3fa2bcf8c0a8f7b7c /doc/usage | |
parent | b96de9cb0c27a736bd605b6ac063f23b12c0d134 (diff) |
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/usage')
-rw-r--r-- | doc/usage/cmd/bootefi.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/usage/cmd/bootefi.rst b/doc/usage/cmd/bootefi.rst index 4cc8c0718c5..cb03df4e1ca 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 ----------- |