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