Displaying 7 results from an estimated 7 matches for "cfgprefix".
2010 Mar 21
0
[PATCH] core: use MY_NAME for syslinux_banner
...#39;, CR, LF, 0
trying_msg db 'Trying to load: ', 0
default_str db 'default', 0
-syslinux_banner db CR, LF, 'PXELINUX ', VERSION_STR, ' ', DATE_STR, ' ', 0
+syslinux_banner db CR, LF, MY_NAME, ' ', VERSION_STR, ' ', DATE_STR, ' ', 0
cfgprefix db 'pxelinux.cfg/' ; No final null!
cfgprefix_len equ ($-cfgprefix)
2011 Feb 24
0
temporary fix for gpxelinux.0 not doing localboot
...tion.
I downloaded syslinux
I copyed the pxelinux.0 file to /tftpboot directory
I then did a
find -type f -exec grep -Hn pxelinux.cfg {} \;
from the root of the syslinux folder
to find where gpxelinux.0 started look in pxelinux.cfg
it returned
./syslinux-4.03/core/fs/pxe/pxe.c:1077: const char *cfgprefix =
"pxelinux.cfg/";
I changed it to
./syslinux-4.03/core/fs/pxe/pxe.c:1077: const char *cfgprefix =
"gpxelinux.cfg/";
recompiled everything
and copyied gpxelinux.0 to /tftpboot
now gpxelinux looks in gpxelinux.cfg for its configuration file
thus in my pxelinux.cfg/default fi...
2003 Mar 24
0
FW: PXE booting
...Peter only...
-----Original Message-----
Hi!
Strangely enough, I have again the same Fujitsu-Siemens machine which
(still)
has the same darn PXE bug.
This time I have tested it with Pxelinux 2.02 .
Just to suite it to my specific needs, I have recompiled it, changed only
this line: (2036)
;cfgprefix db 'pxelinux.cfg/' ; No final null!
cfgprefix db '/' ; No final null!
And still it hangs after having downloaded the memdisk image :(
This is the full text I get on screen:
--------------------------------------------------------------------
BootManage UNDI, PXE-2.0 (build 083)...
2003 Mar 25
0
PXE booting - Solution FOUND!!!
...Peter only...
-----Original Message-----
Hi!
Strangely enough, I have again the same Fujitsu-Siemens machine which
(still)
has the same darn PXE bug.
This time I have tested it with Pxelinux 2.02 .
Just to suite it to my specific needs, I have recompiled it, changed only
this line: (2036)
;cfgprefix db 'pxelinux.cfg/' ; No final null!
cfgprefix db '/' ; No final null!
And still it hangs after having downloaded the memdisk image :(
This is the full text I get on screen:
--------------------------------------------------------------------
BootManage UNDI, PXE-2.0 (build 083)...
2009 Aug 09
2
real serial port output from pxelinux.0
...;Booting from local disk...', CR, LF, 0
trying_msg db 'Trying to load: ', 0
default_str db 'default', 0
+sfsg db 'So far, so good...', CR, LF, 0
syslinux_banner db CR, LF, 'PXELINUX ', VERSION_STR, ' ', DATE_STR, ' ', 0
cfgprefix db 'pxelinux.cfg/' ; No final null!
cfgprefix_len equ ($-cfgprefix)
</patch> working?
Cheers
Geert Stappers
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
...uate for now --
@@ -2366,6 +2388,8 @@
default_str db 'default', 0
default_len equ ($-default_str)
syslinux_banner db CR, LF, 'PXELINUX ', version_str, ' ', date, ' ', 0
+cpu32_str db 'CPUID: x86', CR, LF, 0
+cpu64_str db 'CPUID: x86_64', CR, LF, 0
cfgprefix db 'pxelinux.cfg/' ; No final null!
cfgprefix_len equ ($-cfgprefix)
Common subdirectories: syslinux-2.11/sample and syslinux-2.11.new/sample
Common subdirectories: syslinux-2.11/win32 and syslinux-2.11.new/win32
2002 Aug 14
0
re: using mac-addr for selecting configfile now working
...), then defaultfilename: dirty hack, USE AT YOUR OWN RISK
+; but free or better try to integrate into stable release
+;
****************************************************************************
%define IS_PXELINUX 1
%include "macros.inc"
@@ -692,22 +697,39 @@
mov si,cfgprefix
mov cx,cfgprefix_len
rep movsb
- mov cx,8
- mov eax,[MyIP]
+ mov cx,6 ; 6 nibbles in vendor part
of MAC
+ mov eax,[MyMAC1] ; 3 bytes vendor part of
MAC
+ xchg...