search for: initrdcnam

Displaying 5 results from an estimated 5 matches for "initrdcnam".

Did you mean: initrdcname
2003 Dec 27
0
2 disks boot patch
...o_change_disk +retry_disk: + call change_disk +no_change_disk: +; end - freddy77 push es ; ES->real_mode_seg push ds pop es ; We need ES==DS mov si,InitRD mov di,InitRDCName call unmangle_name ; Create human-readable name sub di,InitRDCName mov [InitRDCNameLen],di mov di,InitRD call searchdir ; Look for it in directory @@ -322,25 +342,39 @@...
2003 Dec 27
0
FW: 2 disks boot patch
...o_change_disk +retry_disk: + call change_disk +no_change_disk: +; end - freddy77 push es ; ES->real_mode_seg push ds pop es ; We need ES==DS mov si,InitRD mov di,InitRDCName call unmangle_name ; Create human-readable name sub di,InitRDCName mov [InitRDCNameLen],di mov di,InitRD call searchdir ; Look for it in directory @@ -322,25 +342,39 @@...
2003 Feb 10
0
modifying initrd before high mem load
...mov edi,[es:su_ramdiskat] ; initrd load address + unscrambleinitrd: + xor [si:0],constant_xor_value push si mov si,crlfloading_msg ; Write "Loading " call cwritestr mov si,InitRDCName ; Write ramdisk name call cwritestr mov si,dotdot_msg ; Write dots call cwritestr pop si mov eax,[es:su_ramdisklen] call load_high ; Load the fil...
2007 Jun 18
4
pxelinux bug's
Hello Peter, The attached patch contains three small (although 2 of them are fundamental :) fixes for pxelinux 1. Alignment error when more than one initramfs are loaded using initrd - the alignment of the last disk is discarded in calculations but is ALWAYS present when the loading procedure is called. As a result - the second image (cpio) is not recognized. 2. On some platforms
2009 Jul 27
1
[PATCH] mboot using module path
...x-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/core/pxelinux.asm syslinux-3.82/core/pxelinux.asm --- syslinux-...