diff options
| author | Ilias Apalodimas <[email protected]> | 2025-03-28 14:58:18 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-04-11 13:25:24 +0200 |
| commit | f5e0f2198ec1226b4fd0121439facc30cb886a2a (patch) | |
| tree | cf2e08e632042b813df9677d2e7e2a4c6445e871 /lib | |
| parent | 742aa8b0396dfeb39e60c88988b7db3d9694a09d (diff) | |
efi_loader: Print extra information from the bootmgr
Instead of just printing the label, add information for the Device
path as well so it's easier to see if we are booting from disk, network
etc
Signed-off-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/efi_bootmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_bootmgr.c b/lib/efi_loader/efi_bootmgr.c index 2791afa02a9..c0df5cb9acd 100644 --- a/lib/efi_loader/efi_bootmgr.c +++ b/lib/efi_loader/efi_bootmgr.c @@ -690,7 +690,7 @@ static efi_status_t try_load_entry(u16 n, efi_handle_t *handle, goto error; } - log_info("Booting: %ls\n", lo.label); + log_info("Booting: Label: %ls Device path: %pD\n", lo.label, lo.file_path); /* Ignore the optional data in auto-generated boot options */ if (size >= sizeof(efi_guid_t) && |
