Displaying 3 results from an estimated 3 matches for "boot_prompt".
2008 Jan 21
1
How to modify "boot:" prompt when isolinux is starting
Hi all.
I want to modify "boot:" prompt to "staring:" . I do following:
1. open isolinux.asm, modify this row: 
boot_prompt db  'boot: ', 0 
to
       boot_prompt db  'starting:', 0
 
2. make spotless & make isolinux.bin
 
Use new isolinux.bin to replace old isolinux.bin in a iso image. But the
console yet shows "boot:".
Should I do? Tell me please. Thinks!
 
Riger Huang  2008-1-21
2002 Feb 26
0
syslinux timeout
...8,25 @@
 ;
 ; Check whether or not we are supposed to display the boot prompt.
 ;
 check_for_key:
 		cmp word [ForcePrompt],byte 0	; Force prompt?
 		jnz enter_command
 		test byte [KbdFlags],5Bh	; Caps, Scroll, Shift, Alt
 		jz near auto_boot		; If neither, default boot
 
 enter_command:
-		mov si,boot_prompt
-		call cwritestr
+		; DTM BEGIN ------------------------------------------------
+		;;mov si,boot_prompt
+		;;call cwritestr
+		call writeprompt
+		; DTM END --------------------------------------------------
 
 		mov byte [FuncFlag],0		; <Ctrl-F> not pressed
 		mov di,command_line
 ;
 ; get...
2006 Jan 08
0
isolinux.cfg location
My point demonstrated from a snippet of isolinux.asm:
; -----------------------------------------------------------------------------
;  Begin data section
; -----------------------------------------------------------------------------
		section .data
boot_prompt	db 'boot: ', 0
wipe_char	db BS, ' ', BS, 0
err_notfound	db 'Could not find kernel image: ',0
err_notkernel	db CR, LF, 'Invalid or corrupt kernel image.', CR, LF, 0
err_noram	db 'It appears your computer has less than '
		asciidec dosram_k
		db 'K of low (...