mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-06-08 09:07:14 +00:00
Don't fail if there's no network devices
findNetboot() would continue blindly even if no PXE-capable devices were found. Fix that.
This commit is contained in:
parent
5c9cf018c7
commit
2fd180a92d
@ -106,6 +106,11 @@ try_again:
|
|||||||
goto try_again;
|
goto try_again;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (status == EFI_NOT_FOUND) {
|
||||||
|
FreePool(buffer);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We have a list of pxe supporting protocols, lets see if any are
|
* We have a list of pxe supporting protocols, lets see if any are
|
||||||
* active
|
* active
|
||||||
|
Loading…
Reference in New Issue
Block a user