From f1533c41a78a1defe147c87142ebfeb25b4c46ed Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Wed, 25 May 2022 13:08:51 +1200 Subject: doc: environment: Fix typo "valu" should be "value". Signed-off-by: Chris Packham Reviewed-by: Bin Meng Reviewed-by: Heinrich Schuchardt --- doc/usage/environment.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/usage/environment.rst b/doc/usage/environment.rst index dc617039446..28a8952b752 100644 --- a/doc/usage/environment.rst +++ b/doc/usage/environment.rst @@ -347,7 +347,7 @@ bootpretryperiod Unsigned value, in milliseconds. If not set, the period will be either the default (28000), or a value based on CONFIG_NET_RETRY_COUNT, if defined. This value has - precedence over the valu based on CONFIG_NET_RETRY_COUNT. + precedence over the value based on CONFIG_NET_RETRY_COUNT. memmatches Number of matches found by the last 'ms' command, in hex -- cgit v1.3.1 From aad7f1ad60b8cb86706d683c4fb6c295606480ee Mon Sep 17 00:00:00 2001 From: Sughosh Ganu Date: Tue, 31 May 2022 12:45:35 +0530 Subject: EFI: Update the documentation to reflect the correct value of OsIndications The OsIndications is a 64 bit variable, and the current code expects the value of the variable to be 64 bit. Update the documentation to reflect this fact. Signed-off-by: Sughosh Ganu Reviewed-by: Heinrich Schuchardt --- doc/develop/uefi/uefi.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/develop/uefi/uefi.rst b/doc/develop/uefi/uefi.rst index 753a4e5e292..941e427093f 100644 --- a/doc/develop/uefi/uefi.rst +++ b/doc/develop/uefi/uefi.rst @@ -326,7 +326,7 @@ bit in OsIndications variable with .. code-block:: console - => setenv -e -nv -bs -rt -v OsIndications =0x04 + => setenv -e -nv -bs -rt -v OsIndications =0x0000000000000004 Since U-boot doesn't currently support SetVariable at runtime, its value won't be taken over across the reboot. If this is the case, you can skip -- cgit v1.3.1