From 02c26a87385db1bef167c3e315c761cd773e9d11 Mon Sep 17 00:00:00 2001 From: czapek1337 Date: Thu, 6 Oct 2022 05:58:39 +0200 Subject: [PATCH] efi: Fallback to volume scan instead of panicking --- common/entry.s3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/entry.s3.c b/common/entry.s3.c index edd136f9..6750367a 100644 --- a/common/entry.s3.c +++ b/common/entry.s3.c @@ -104,7 +104,7 @@ could_not_match: (void **)&loaded_image); if (status) { - panic(false, "HandleProtocol failure (%x)", status); + goto could_not_match; } boot_volume = disk_volume_from_efi_handle(loaded_image->DeviceHandle);