1 // SPDX-License-Identifier: GPL-2.0+
3 * Common code for EFI commands
5 * Copyright 2023 Google LLC
11 #include <u-boot/uuid.h>
13 void efi_show_tables(struct efi_system_table *systab)
17 for (i = 0; i < systab->nr_tables; i++) {
18 struct efi_configuration_table *tab = &systab->tables[i];
20 printf("%p %pUl %s\n", tab->table, tab->guid.b,
21 uuid_guid_get_str(tab->guid.b) ?: "(unknown)");