diff options
author | Tom Rini <trini@konsulko.com> | 2021-06-29 11:25:39 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-06-29 11:25:39 -0400 |
commit | 605cbcb0a43cef8f987a736d0f5991a9db314562 (patch) | |
tree | 7f15322b6cf349fda17ea55589f351f6267060e1 /cmd/efidebug.c | |
parent | 3ef4572110a43acdd7d401b0cb184c6ebd6eaa17 (diff) | |
parent | 70e80666f26a516096f3787e884d42818d8b4087 (diff) |
Merge tag 'efi-2021-07-rc5-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2021-07-rc5-2
Documentation:
* man-page for askenv
bug fixes
* correct display of BootOrder in efidebug command
* do not allow TPL_HIGH_LEVEL for CreateEvent(Ex)
* correct handling of unknown properties in SMBIOS tables
Diffstat (limited to 'cmd/efidebug.c')
-rw-r--r-- | cmd/efidebug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c index c6352719dd8..8211a589acf 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -1340,7 +1340,7 @@ static int show_efi_boot_order(void) num = size / sizeof(u16); for (i = 0; i < num; i++) { efi_create_indexed_name(var_name16, sizeof(var_name16), - "Boot", i); + "Boot", bootorder[i]); size = 0; ret = EFI_CALL(efi_get_variable(var_name16, |