search for: mac_type

Displaying 3 results from an estimated 3 matches for "mac_type".

2015 Mar 14
0
[PATCH 0/1] EFI access from Com32 modules
This patch adds to Com32 modules the capabilities of accessing the EFI environment The idea is simple, the EFI parameters "image" and "table" received by syslinux.efi's efi_main() are stored in the "firmware" structure, next they are retrieved from the Com32 module which is linked against the gnu-efi static library. The Com32 module can use the EFI
2015 Jun 03
5
[PATCH 0/1] EFI PXE DHCP/proxyDHCP issues fix
...kt_len); /* * Save away MAC address (assume this is in query info 2. If this * turns out to be problematic it might be better getting it from * the query info 1 packet */ -- hardlen = mode->DhcpAck.Dhcpv4.BootpHwAddrLen; -- MAC_len = hardlen > 16 ? 0 : hardlen; -- MAC_type = mode->DhcpAck.Dhcpv4.BootpHwType; -- memcpy(MAC, mode->DhcpAck.Dhcpv4.BootpHwAddr, MAC_len); ++ hardlen = pkt_v4->BootpHwAddrLen; ++ MAC_len = hardlen > 16 ? 0 : hardlen; ++ MAC_type = pkt_v4->BootpHwType; ++ memcpy(MAC, pkt_v4->BootpHwAddr, MAC_len); Print...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
This patch adds to the core EFI image booting capabilities. It was tested on VMware EFI clients and HP Elitebook EFI notebooks, only on PXE environments but it should work on non-PXE scenarios as well. Feedback appreciated. Best, Patrick Signed-off-by: Patrick Masotta <masottaus at yahoo.com> --- diff -uprN a/com32/elflink/ldlinux/execute.c b/com32/elflink/ldlinux/execute.c ---