diff options
author | Tom Rini <trini@konsulko.com> | 2023-03-25 17:34:34 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-25 17:34:34 -0400 |
commit | fde439219ff53a46bdd5dff69e049ccd4be57310 (patch) | |
tree | 423643707fad940e0845cbebf74d545b05b3d336 /cmd/efidebug.c | |
parent | 4b635046b5e92e419fbd1bf93e5b0ef86dbcadc2 (diff) | |
parent | 93e3364804ffd4a5d4a0df9c750a1859f9fe298b (diff) |
Merge tag 'efi-next-20230325' of https://source.denx.de/u-boot/custodians/u-boot-efi into next
Pull request for efi-next-20230325
Documenation:
* add man-page for efi command
UEFI:
* Let EFI app call ExitBootServices() before legacy booting kernel
* Support zboot and bootm in the EFI app
* Let efi command show configuration tables
* Support booting a 64-bit kernel from 64-bit EFI app
* Allocate device-tree copy from high memory
* simplify efi_str_to_u16()
Diffstat (limited to 'cmd/efidebug.c')
-rw-r--r-- | cmd/efidebug.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c index e6959ede930..9622430c475 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -649,11 +649,7 @@ static int do_efi_show_memmap(struct cmd_tbl *cmdtp, int flag, static int do_efi_show_tables(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { - efi_uintn_t i; - - for (i = 0; i < systab.nr_tables; ++i) - printf("%pUl (%pUs)\n", - &systab.tables[i].guid, &systab.tables[i].guid); + efi_show_tables(&systab); return CMD_RET_SUCCESS; } |