diff options
author | Tom Rini <trini@konsulko.com> | 2021-06-21 11:56:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-06-21 11:56:42 -0400 |
commit | 760d6972a172e6ee8033d5e1b482e731955f5af1 (patch) | |
tree | f7f1ec59f7a89dbd24ecf76582362bb603f1d832 /cmd | |
parent | 97c8cb524c19f054036efd2b4429273bd503e39c (diff) | |
parent | fe06d3f4e540c9985bf9898fabf859e81c428db7 (diff) | |
download | u-boot-WIP/21Jun2021.zip u-boot-WIP/21Jun2021.tar.gz u-boot-WIP/21Jun2021.tar.bz2 |
Merge tag 'efi-2021-07-rc5-2' of https://source.denx.de/u-boot/custodians/u-boot-efiWIP/21Jun2021
Pull request for efi-2021-07-rc5-2
Documentation:
* man-page for askenv
bug fixes
* improve block device integration with driver model
* 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')
-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 c635271..8211a58 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, |