search for: err_badcfg

Displaying 3 results from an estimated 3 matches for "err_badcfg".

2008 Sep 09
1
[PATCH] parsecmd: show keyword in err_noparm message
...@ ; No parameter .noparm: mov si,err_noparm - mov al,10 ; Already at EOL -.error: call writestr + mov si,trackbuf + call writestr + call crlf + mov al,10 ; Already at EOL jmp short .skipline .found_keywd: lodsw ; Load argument into ax @@ -103,7 +105,7 @@ section .data err_badcfg db 'Unknown keyword in configuration file: ',0 -err_noparm db 'Missing parameter in configuration file.', CR, LF, 0 +err_noparm db 'Missing parameter in configuration file. Keyword: ',0 section .uibss alignb 4
2009 Jan 31
1
"UI" keyword, pc_default and getline
...call getc jc .eof jmp short .skipline +skipline: cmp al,10 ; Search for LF + je .end + call getc + jc .end + jmp short skipline +.end: ret + section .data err_badcfg db 'Unknown keyword in configuration file: ',0 err_noparm db 'Missing parameter in configuration file. Keyword: ',0 diff --git a/core/parseconfig.inc b/core/parseconfig.inc index fcf18d9..57ee5a5 100644 --- a/core/parseconfig.inc +++ b/core/parseconfig.inc @@ -26,7 +26,9...
2006 Jan 08
0
isolinux.cfg location
...c dosram_k db 'K of low ("DOS")' db CR, LF db 'RAM. Linux needs at least this amount to boot. If you get' db CR, LF db 'this message in error, hold down the Ctrl key while' db CR, LF db 'booting, and I will take your word for it.', CR, LF, 0 err_badcfg db 'Unknown keyword in config file.', CR, LF, 0 err_noparm db 'Missing parameter in config file.', CR, LF, 0 err_noinitrd db CR, LF, 'Could not find ramdisk image: ', 0 err_nohighmem db 'Not enough memory to load specified kernel.', CR, LF, 0 err_highl...