]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
doc: sort env sub-commands alphabetically
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Wed, 17 Apr 2024 08:06:12 +0000 (10:06 +0200)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 20 Apr 2024 06:17:56 +0000 (08:17 +0200)
The 'env' man-page is currently only partially sorted.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
doc/usage/cmd/env.rst

index a7e21693a672d8eb177571201d79483fcd690e03..60a294328e82940bf3cbd8c998a2b4be512943f8 100644 (file)
@@ -16,18 +16,18 @@ Synopsis
        env default [-f] (-a | var [...])
        env delete [-f] var [...]
        env edit name
+       env erase
        env exists name
        env export [-t | -b | -c] [-s size] addr [var ...]
        env flags
        env grep [-e] [-n | -v | -b] string [...]
        env import [-d] [-t [-r] | -b | -c] addr [size] [var ...]
        env info [-d] [-p] [-q]
+       env load
        env print [-a | name ...]
        env print -e [-guid guid] [-n] [name ...]
        env run var [...]
        env save
-       env erase
-       env load
        env select [target]
        env set [-f] name [value]
        env set -e [-nv][-bs][-rt][-at][-a][-i addr:size][-v] name [value]
@@ -40,11 +40,11 @@ the UEFI variables.
 
 The next commands are kept as alias and for compatibility:
 
++ *askenv* = *env ask*
 + *editenv* = *env edit*
 + *grepenv* = *env grep*
-+ *setenv* = *env set*
-+ *askenv* = *env ask*
 + *run* = *env run*
++ *setenv* = *env set*
 
 Ask
 ~~~
@@ -103,6 +103,11 @@ The *env edit* command edits an environment variable.
     name
         name of the variable.
 
+Erase
+~~~~~
+
+The *env erase* command erases the U-Boot environment.
+
 Exists
 ~~~~~~
 
@@ -204,6 +209,11 @@ environment information.
         quiet output,  use only for command result, by example with
         'test' command.
 
+Load
+~~~~
+
+The *env load* command loads the U-Boot environment from persistent storage.
+
 Print
 ~~~~~
 
@@ -235,16 +245,6 @@ Save
 
 The *env save* command saves the U-Boot environment in persistent storage.
 
-Erase
-~~~~~
-
-The *env erase* command erases the U-Boot environment.
-
-Load
-~~~~
-
-The *env load* command loads the U-Boot environment from persistent storage.
-
 Select
 ~~~~~~
 
@@ -350,15 +350,15 @@ edit
 exists
     CONFIG_CMD_ENV_EXISTS
 
-flags
-    CONFIG_CMD_ENV_FLAGS
-
 erase
     CONFIG_CMD_ERASEENV
 
 export
     CONFIG_CMD_EXPORTENV
 
+flags
+    CONFIG_CMD_ENV_FLAGS
+
 grep
     CONFIG_CMD_GREPENV, CONFIG_REGEX for '-e' option