search for: err_noparm

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

2008 Sep 09
1
[PATCH] parsecmd: show keyword in err_noparm message
...re/parsecmd.inc =================================================================== --- syslinux-3.72-pre5.orig/core/parsecmd.inc 2008-06-23 17:11:47.000000000 +0200 +++ syslinux-3.72-pre5/core/parsecmd.inc 2008-09-09 22:11:35.000000000 +0200 @@ -82,9 +82,11 @@ ; 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 configu...
2009 Jan 31
1
"UI" keyword, pc_default and getline
...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 @@ pc_default: cmp ax,[DefaultLevel] mov di,default_cm...
2006 Jan 08
0
isolinux.cfg location
...39;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_highload db CR, LF, 'Kernel transfer failure.', CR, LF, 0 err_oldk...