[syslinux] Re: Anyone tried SYSLINUX 2.05-pre2 yet?

Jon Nalley jon.nalley at rlx.com
Tue Jul 8 14:25:37 PDT 2003


It solved my problems with hanging at the "Ready." prompt when passing
'option configfile' via DHCP as well.  Thanks!

One issue I noticed, when building is the following error:

nasm -O99 -f bin -DDATE_STR="'0x3f00d8e5'" -DHEXDATE="0x3f00d8e5" \
        -l pxelinux.lst -o pxelinux.bin pxelinux.asm
parseconfig.inc:252: error: symbol `pc_getline' not defined before use
make: *** [pxelinux.bin] Error 1

It may just be an issue with my version of nasm (0.98.22).  I moved the
line that defined 'pc_comment' below where 'pc_getline' was defined and
it built fine.  I have attached a patch.

-- 
Jon Nalley
Systems Engineering
RLX Technologies, Inc.
jon.nalley at rlx.com
Ph: (281)863-2165
Fx: (281)863-2104
-------------- next part --------------
--- parseconfig.inc	Mon Feb 24 18:52:20 2003
+++ parseconfig.inc	Tue Jul  8 13:11:51 2003
@@ -247,11 +247,6 @@
 		jmp crlf			; tailcall
 
 ;
-; Comment line
-;
-pc_comment	equ pc_getline			; Get a line and discard
-
-;
 ; Common subroutine: load line into trackbuf; returns with SI -> trackbuf
 ;
 pc_getline:	mov di,trackbuf
@@ -263,6 +258,11 @@
 		ret
 
 ;
+; Comment line
+;
+pc_comment:	equ pc_getline			; Get a line and discard
+
+;
 ; Main loop for configuration file parsing
 ;
 parse_config:


More information about the Syslinux mailing list