Skip to content

Commit 68c9cdf

Browse files
xypronardbiesheuvel
authored andcommitted
efi/libstub: Simplify "Exiting bootservices" message
The message "Exiting boot services and installing virtual address map...\n" is even shown if we have efi=novamap on the command line or the firmware does not provide EFI_RT_SUPPORTED_SET_VIRTUAL_ADDRESS_MAP. To avoid confusion just print "Exiting boot services...\n" Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
1 parent 6880fa6 commit 68c9cdf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/firmware/efi/libstub

drivers/firmware/efi/libstub/fdt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ efi_status_t allocate_new_fdt_and_exit_boot(void *handle,
271271
return status;
272272
}
273273

274-
efi_info("Exiting boot services and installing virtual address map...\n");
274+
efi_info("Exiting boot services...\n");
275275

276276
map.map = &memory_map;
277277
status = efi_allocate_pages(MAX_FDT_SIZE, new_fdt_addr, ULONG_MAX);

0 commit comments

Comments
 (0)