From e443cc7c05bb5bf057e375df236e4a1f1431821d Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Thu, 12 Jan 2023 13:56:08 +0100 Subject: [PATCH] bootspec: show efi entry too --- src/shared/bootspec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shared/bootspec.c b/src/shared/bootspec.c index 06f42ab61d7..49fb34b4d64 100644 --- a/src/shared/bootspec.c +++ b/src/shared/bootspec.c @@ -1362,6 +1362,8 @@ int show_boot_entry( printf(" architecture: %s\n", e->architecture); if (e->kernel) boot_entry_file_list("linux", e->root, e->kernel, &status); + if (e->efi) + boot_entry_file_list("efi", e->root, e->efi, &status); STRV_FOREACH(s, e->initrd) boot_entry_file_list(s == e->initrd ? "initrd" : NULL, -- 2.47.3