Displaying 5 results from an estimated 5 matches for "patmod".
Did you mean:
patmos
2015 Jan 12
2
PXE Booting EFI
...PXE
server is located. syslinux.efi is taking the next-server IP from an answer from a DHCP server that
did not identified itself as a PXE server (no option 60). It looks like a bug to me.
I think I "kind" of fixed the bug;
at syslinux-6.03/efi/pxe.c
void net_parse_dhcp(void)
{
...
//patmod start
if(&mode->ProxyOfferReceived)
parse_dhcp(&mode->ProxyOffer.Dhcpv4, pkt_len);
else
//patmod end
parse_dhcp(&mode->PxeReply.Dhcpv4, pkt_len);
Print(L"\n");
...
}
just add the code surrounded by comments
the idea is to ask if there was...
2015 Jan 11
0
PXE Booting EFI
On Sun, Jan 11, 2015 at 10:32 AM, Patrick Masotta <masottaus at yahoo.com> wrote:
>
>>First, I was looking for the actual values.
>>For a VM with (among other values):
>
>> config.version = "8"
>> virtualHW.version = "10"
>> ethernet0.virtualDev = "e1000"
>> guestOS = "rhel6-64"
>> firmware =
2015 Jan 11
3
PXE Booting EFI
>First, I was looking for the actual values.?
>For a VM with (among other values):
> config.version = "8"
> virtualHW.version = "10"
> ethernet0.virtualDev = "e1000"
> guestOS = "rhel6-64"
> firmware = "efi"
> I see:
> option-93 = 0x07
> option-60 ="PXEClient:Arch:00007:UNDI:003016"
OK I take
2015 Jan 19
0
PXE Booting EFI
...the next-server IP from an answer from a DHCP server that
> did not identified itself as a PXE server (no option 60). It looks like a bug to me.
>
> I think I "kind" of fixed the bug;
> at syslinux-6.03/efi/pxe.c
>
> void net_parse_dhcp(void)
> {
> ...
>
> //patmod start
> if(&mode->ProxyOfferReceived)
> parse_dhcp(&mode->ProxyOffer.Dhcpv4, pkt_len);
> else
> //patmod end
>
> parse_dhcp(&mode->PxeReply.Dhcpv4, pkt_len);
> Print(L"\n");
>
> ...
>
> }
>
> just add the...
2015 Aug 21
1
[PATCH 1/2] msg: VGAFilePtr should be char
On Fri, 2015-08-21 at 12:33 -0700, Patrick Masotta wrote:
> I think probably this patch is buggy:
>
> You have redefined VGAFilePtr
>
> -__export uint16_t *VGAFilePtr; /* Pointer into VGAFileBuf */
> +__export char *VGAFilePtr; /* Pointer into VGAFileBuf */
>
> but you did not redefine i.e.
>
> *VGAFilePtr++ = data;
>
> Incrementing a