diff options
| author | Tom Rini <[email protected]> | 2022-11-22 08:30:53 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-11-22 08:30:53 -0500 |
| commit | 536c642ffef545b4b5b02d065a0c1de9785549d7 (patch) | |
| tree | 07cdfb629c8ec1d88cfcbd21cb9d6171dc1baccb /doc/usage/cmd | |
| parent | b94db9efe849200d993b7f8a4d0b024e99469599 (diff) | |
| parent | d0f9ae35fb25d732184b8b307a72c7e20b960353 (diff) | |
Merge tag 'efi-2023-01-rc2-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2023-01-rc2-2
UEFI:
* add UEFI Secure Boot Key enrollment interface to eficonfig command
* fix buffer underflow in FatToStr() implementation
Diffstat (limited to 'doc/usage/cmd')
| -rw-r--r-- | doc/usage/cmd/cmp.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/usage/cmd/cmp.rst b/doc/usage/cmd/cmp.rst index 241320d3289..8d196ee5786 100644 --- a/doc/usage/cmd/cmp.rst +++ b/doc/usage/cmd/cmp.rst @@ -14,20 +14,20 @@ Description ----------- The cmp command is used to compare two memory areas. By default it works on -four byte tuples. By appending .b, .w, .l, .q the size of the tuples is -controlled: +four byte (32-bit) values. By appending .b, .w, .l, .q the size of the +values is controlled: cmp.b - compare 1 byte tuples + compare 1 byte (8-bit) values cmp.w - compare 2 byte tuples + compare 2 byte (16-bit) values cmp.l - compare 4 byte tuples + compare 4 byte (32-bit) values cmp.q - compare 8 byte tuples + compare 8 byte (64-bit) values The parameters are used as follows: |
