Displaying 1 result from an estimated 1 matches for "ktt".
Did you mean:
att
2002 Oct 22
0
[Fwd: SysLinux Bug]
...ks up when it tries to boot/install from the network via our
PXE code. I found that there 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...