Displaying 5 results from an estimated 5 matches for "localboot_msg".
2012 Apr 26
2
Problems booting from local hd
...6 (or still is in the current build) in the reset_pxe function. If I call "syslinux_local_boot(0)" (in a COM32 binary) the KeepPXE variable is always 1 which resets the PXE stack instead of unloading it:
local_boot:
push cs
pop ds
mov [LocalBootType],ax
call vgaclearmode
mov si,localboot_msg
call writestr_early
; Restore the environment we were called with
call reset_pxe
.
reset_pxe:
or byte [KeepPXE],1
; Fall through
unload_pxe:
push ds
push es
mov ax,cs
mov ds,ax
mov es,ax
cmp byte [KeepPXE],0 ; Should we keep PXE around?
jne do_reset_pxe
?
on Dell Precisi...
2010 Jul 27
2
[PATCH] core: remove HAS_LOCALBOOT
...--- a/core/localboot.inc
+++ b/core/localboot.inc
@@ -16,8 +16,6 @@
; Boot from a local disk, or invoke INT 18h.
;
-%if HAS_LOCALBOOT
-
;
; Boot a specified local disk. AX specifies the BIOS disk number; or
; -1 in case we should execute INT 18h ("next device.")
@@ -73,4 +71,3 @@ localboot_msg db 'Booting from local disk...', CR, LF, 0
section .text16
-%endif ; HAS_LOCALBOOT
diff --git a/core/parseconfig.inc b/core/parseconfig.inc
index e7b3108..d2c5715 100644
--- a/core/parseconfig.inc
+++ b/core/parseconfig.inc
@@ -85,8 +85,6 @@ pc_ipappend: call getint
;
; "local...
2006 Jan 08
0
isolinux.cfg location
...rr_notdos db ': attempted DOS system call', CR, LF, 0
err_comlarge db 'COMBOOT image too large.', CR, LF, 0
err_bssimage db 'BSS images not supported.', CR, LF, 0
err_a20 db CR, LF, 'A20 gate not responding!', CR, LF, 0
notfound_msg db 'not found', CR, LF, 0
localboot_msg db 'Booting from local disk...', CR, LF, 0
cmdline_msg db 'Command line: ', CR, LF, 0
ready_msg db 'Ready.', CR, LF, 0
trying_msg db 'Trying to load: ', 0
crlfloading_msg db CR, LF ; Fall through
loading_msg db 'Loading ', 0
dotdot_msg db '....
2010 Mar 21
0
[PATCH] core: use MY_NAME for syslinux_banner
...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 CR, LF, MY_NAME, ' ', VERSION_STR, ...
2009 Aug 09
2
real serial port output from pxelinux.0
...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 ', VERSION_STR, ' ', DATE_STR, ' &...