Displaying 3 results from an estimated 3 matches for "initrd_cmd".
Did you mean:
initrd_cat
2003 Dec 27
0
2 disks boot patch
...x-2.08/runkernel.inc 2003-12-18 23:16:18.000000000 +0100
@@ -156,20 +156,32 @@
.notkeep:
%endif
push es ; Save ES ->
real_mode_seg
push cs
pop es ; Set ES <- normal DS
mov di,initrd_cmd
mov cx,initrd_cmd_len
repe cmpsb
jne not_initrd
+; begin - freddy77
+ ; detect change needed
+ lodsw
+ cmp ah, ':'
+ je set_initrd_span
+ xor ax,ax
+ dec si
+ dec si
+set_initrd_span:
+ mov [es:initrd_span], al
+; end - freddy77
+
mov di,InitRD...
2003 Dec 27
0
FW: 2 disks boot patch
...x-2.08/runkernel.inc 2003-12-18 23:16:18.000000000 +0100
@@ -156,20 +156,32 @@
.notkeep:
%endif
push es ; Save ES ->
real_mode_seg
push cs
pop es ; Set ES <- normal DS
mov di,initrd_cmd
mov cx,initrd_cmd_len
repe cmpsb
jne not_initrd
+; begin - freddy77
+ ; detect change needed
+ lodsw
+ cmp ah, ':'
+ je set_initrd_span
+ xor ax,ax
+ dec si
+ dec si
+set_initrd_span:
+ mov [es:initrd_span], al
+; end - freddy77
+
mov di,InitRD...
2002 Feb 26
0
syslinux timeout
...nux unless you have a 386 or higher CPU'
db CR, LF
db 'in your machine. If you get this message in error, hold'
db CR, LF
db 'down the Ctrl key while booting, and I will take your'
@@ -4305,20 +4392,23 @@
; mem= and vga= are handled as normal 32-bit integer values
initrd_cmd db 'initrd='
initrd_cmd_len equ 7
;
; Config file keyword table
;
align 2
keywd_table db 'ap' ; append
db 'de' ; default
db 'ti' ; timeout
+ ; DTM BEGIN ------------------------------------------------
+ db 'sh' ; showtimeout
+ ; DTM END ----...