search for: have_pxe

Displaying 2 results from an estimated 2 matches for "have_pxe".

Did you mean: have_pod
2009 Aug 09
2
real serial port output from pxelinux.0
...syslinux_banner - call writestr_early - - mov si,copyright_str - call writestr_early - -; ; Assume API version 2.1, in case we find the !PXE structure without ; finding the PXENV+ structure. This should really look at the Base ; Code ROM ID structure in have_pxe, but this is adequate for now -- </patch> I got the same output as in <screenshot/> What is needed to get something like <patch> --- a/core/pxelinux.asm +++ b/core/pxelinux.asm @@ -261,6 +261,9 @@ _start1: ; ; Tell the user we got this far ; + mov si,sfsg +...
2004 Oct 07
1
x86 vs. x86_64 detection proof of concept patch (try two)
...+afterbits: + mov si, cpu64_str + cmp word [CpuIs64], 1 + je writecpustr + mov si, cpu32_str +writecpustr: call writestr + +; ; Assume API version 2.1, in case we find the !PXE structure without ; finding the PXENV+ structure. This should really look at the Base ; Code ROM ID structure in have_pxe, but this is adequate for now -- @@ -2366,6 +2388,8 @@ default_str db 'default', 0 default_len equ ($-default_str) syslinux_banner db CR, LF, 'PXELINUX ', version_str, ' ', date, ' ', 0 +cpu32_str db 'CPUID: x86', CR, LF, 0 +cpu64_str db 'CPUID: x86_64...