Displaying 3 results from an estimated 3 matches for "err_notfound".
2002 Jan 12
0
no echo patch
...ything
je get_char ; to erase
dec di ; Unstore one character
- mov si,wipe_char ; and erase it from the screen
- call cwritestr
+;Martin mov si,wipe_char ; and erase it from the screen
+;Martin call cwritestr
jmp short get_char_2
set_func_flag:
@@ -1494,7 +1494,7 @@
mov si,err_notfound ; Complain about missing kernel
call cwritestr
pop si ; KernelCName
- call cwritestr
+;Martin call cwritestr
mov si,crlf_msg
jmp abort_load ; Ask user for clue
;
2006 Jan 08
0
isolinux.cfg location
...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 ("DOS")'
db CR, LF
db 'RAM. Linux needs at least t...
2002 Feb 26
0
syslinux timeout
...----------
+boot_timeout_prompt db 'boot ('
+boot_timeout_prompt_begin db '0000'
+boot_timeout_prompt_end db '): ', 0
+boot_timeout_prompt_pos db BS, BS, BS, BS, BS, BS, BS, 0
+; DTM END --------------------------------------------------
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_not386 db 'It appears your computer uses a 286 or lower CPU.'
db CR, LF
db 'You cannot run Linux unless you have a 386 or higher CPU'
db CR, LF...