Displaying 2 results from an estimated 2 matches for "kernelcnam".
Did you mean:
kernelcname
2002 Jan 12
0
no echo patch
...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
;
2009 Jul 27
1
[PATCH] mboot using module path
...First char space == null filename
diff -u -r -X nodiff syslinux-3.82-orig/core/parsecmd.inc
syslinux-3.82/core/parsecmd.inc
--- syslinux-3.82-orig/core/parsecmd.inc 2009-06-09 10:19:25.000000000 -0700
+++ syslinux-3.82/core/parsecmd.inc 2009-07-24 14:58:07.000000000 -0700
@@ -130,5 +130,5 @@
KernelCName resb FILENAME_MAX ; Unmangled kernel name
InitRDCName resb FILENAME_MAX ; Unmangled initrd name
%endif
-MNameBuf resb FILENAME_MAX
-InitRD resb FILENAME_MAX
+MNameBuf resb DIRNAME_MAX
+InitRD resb DIRNAME_MAX
diff -u -r -X nodiff syslinux-3.82-orig/c...