search for: tftpprefix_msg

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

2010 Mar 21
0
[PATCH] core: use MY_NAME for syslinux_banner
...', DATE_STR, ' ', 0 copyright_str db ' Copyright (C) 1994-' asciidec YEAR db ' H. Peter Anvin et al', CR, LF, 0 diff --git a/core/pxelinux.asm b/core/pxelinux.asm index 929ab67..55444db 100644 --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -2872,7 +2872,7 @@ tftpprefix_msg db 'TFTP prefix: ', 0 localboot_msg db 'Booting from local disk...', 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 C...
2009 Aug 09
2
real serial port output from pxelinux.0
...like <patch> --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -261,6 +261,9 @@ _start1: ; ; Tell the user we got this far ; + mov si,sfsg + call writestr_early + mov si,syslinux_banner call writestr_early @@ -2597,6 +2600,7 @@ tftpprefix_msg db 'TFTP prefix: ', 0 localboot_msg db '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 ...