search for: fkeynam

Displaying 2 results from an estimated 2 matches for "fkeynam".

Did you mean: fkeyname
2002 Oct 06
2
Does pxelinux work with >1GB RAM?
On machines with 2GB RAM, pxelinux doesn't seem to work for me. With Intel PXE, I had to limit the memory available to PXE to 768MB RAM. Has anyone tried pxelinux on machines with >= 1GB RAM? How do I limit memory to 768MB for pxelinux? H.J.
2002 Oct 22
0
[Fwd: SysLinux Bug]
...e is a bug in your code which corrupts the UNDI code segment. You used instruction "rep stosxx" to clear SysLinux's variables when ES is still pointing to UNDI code segment. My fix is denoted by [KTT]. File : pxelinux.asm * Bug#1 ; Wipe the F-key area mov al,NULLFILE mov di,FKeyName mov cx,10*(1 << FILENAME_MAX_LG2) [KTT] push es [KTT] push ds [KTT] pop es rep stosb [KTT] pop es * Bug#2 mov di,Sockets mov cx,(MAX_SOCKETS*tftp_port_t_size)/4 xor eax,eax [KTT] push es [KTT] push ds [KTT] pop es rep stosd [KTT...