We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a847390 commit 23aea6cCopy full SHA for 23aea6c
src/interface/efi/efi_download.c
@@ -196,6 +196,11 @@ int efi_download_install ( EFI_HANDLE *device_handle ) {
196
EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
197
EFI_STATUS efirc;
198
EFI_HANDLE handle = NULL;
199
+ if (efi_loaded_image->DeviceHandle) { /* TODO: ensure handle is the NIC (maybe efi_image has a better way to indicate the handle doing SNP?) */
200
+ handle = efi_loaded_image->DeviceHandle;
201
+ }
202
+
203
204
205
DBG ( "Installing ipxe protocol interface (%p)... ",
206
&ipxe_download_protocol_interface );
0 commit comments