Displaying 4 results from an estimated 4 matches for "efi_loaded_image_protocol".
2015 Jun 27
2
EFI: PXE: "My IP is 0.0.0.0"
...> 2.2) I think "image_DeviceHandle" instead of "pxe_DeviceHandle" produces a code easier to follow;
> specially when we end up using that handle to create a TCP4 or UDP4 child...
Not all handles are devices but all usable devices have handles. The
image_handle is a type EFI_LOADED_IMAGE_PROTOCOL, not a device.
pxe_handle could perhaps be renamed as nic_handle or device_handle.
--
-Gene
2015 Jun 27
0
EFI: PXE: "My IP is 0.0.0.0"
...think "image_DeviceHandle" instead of
> "pxe_DeviceHandle" produces a code easier to follow;
> specially when we end up using
> that handle to create a TCP4 or UDP4 child...
Not all handles are devices but all usable devices have handles.? The
image_handle is a type EFI_LOADED_IMAGE_PROTOCOL, not a device.
pxe_handle could perhaps be renamed as nic_handle or device_handle.
--
-Gene
<<<
We already have "image_handle" that (as you say) corresponds to the EFI_LOADED_IMAGE_PROTOCOL
I think that "image_DeviceHandle" would clearly represent the DeviceHand...
2015 Jun 26
2
EFI: PXE: "My IP is 0.0.0.0"
On Thu, Jun 25, 2015 at 7:28 PM, Gene Cumm <gene.cumm at gmail.com> wrote:
> On Thu, Jun 25, 2015 at 11:54 AM, Patrick Masotta <masottaus at yahoo.com> wrote:
>
>> Yes I know what you mean;
>> "I think" the handle of the running image (our code) has a "path" telling us where
>> was laded from. That would solve this thing.
>
> I just
2015 Aug 13
3
[syslinux:master] efi/pxe: Reuse handle
...c6e743c40
> Author: Gene Cumm <gene.cumm at gmail.com>
> AuthorDate: Thu, 25 Jun 2015 22:04:08 -0400
> Committer: Gene Cumm <gene.cumm at gmail.com>
> CommitDate: Thu, 25 Jun 2015 22:04:08 -0400
>
> efi/pxe: Reuse handle
>
> Store and reuse handle found with EFI_LOADED_IMAGE_PROTOCOL for
> EFI_PXE_BASE_CODE_PROTOCOL and EFI_UDP4_SERVICE_BINDING_PROTOCOL
>
> This caused machines with multiple NICs to not reliably attach to the
> correct NIC handle.
>
> gnu-efi LoadedImageProtocol PxeBaseCodeProtocol Udp4ServiceBindingProtocol
>
> Reported-By: Holger Baust...