Displaying 1 result from an estimated 1 matches for "cpuis64".
Did you mean:
cpu64
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
...parseconfig.inc 2003-11-26 22:36:16.000000000 -0700
+++ syslinux-2.11.new/parseconfig.inc 2004-10-04 17:33:55.000000000
-0600
@@ -100,6 +100,17 @@
.err: ret
;
+; "kernel64" command
+pc_kernel64: cmp word [VKernelCtr],byte 0
+ je .err ; ("label" section only)
+ cmp word [CpuIs64], 0
+ je .err ; Ignore if kernel cpu is 32bit
+ call pc_getline
+ mov di,VKernelBuf+vk_rname
+ call mangle_name
+.err: ret
+
+;
; "timeout" command
;
pc_timeout: call getint
diff -u syslinux-2.11/pxelinux.asm syslinux-2.11.new/pxelinux.asm
--- syslinux-2.11/pxelinux.asm 2004-08...