summaryrefslogtreecommitdiffstats
path: root/src/interface/pxe/pxe_loader.c
Commit message (Collapse)AuthorAgeFilesLines
* [pxe] Display PXE_LOADER debug message after call to initialise()Michael Brown2008-09-231-3/+3
| | | | | | | At least one Dell system calls the UNDI loader entry point with the BIOS console disabled. The serial console is active only after a call to initialise(), so move the debug message in undi_loader() so that it can be displayed via the serial console.
* [i386] Change semantics of __from_data16 and __from_text16Michael Brown2008-07-011-4/+2Star
| | | | | | | | | __from_data16 and __from_text16 now take a pointer to a .data16/.text16 variable, and return the real-mode offset within the appropriate segment. This matches the use case for every occurrence of these macros, and prevents potential future bugs such as that fixed in commit d51d80f. (The bug arose essentially because "&pointer" is still syntactically valid.)
* !PXE and PXENV+ structures are in code segment, not data segment.Michael Brown2007-07-041-3/+4
|
* Add (untested) UNDI loader C-level implementation.Michael Brown2007-07-041-56/+22Star
|
* Currently unusable; do not attempt to compileMichael Brown2007-01-041-0/+3
|
* We don't actually have a stdio.h header file. Our printf() functions areMichael Brown2006-09-271-1/+0Star
| | | | | | | | defined in vsprintf.h. (This may change, since vsprintf.h is a non-standard name, but for now it's the one to use.) There should be no need to include vsprintf.h just for DBG() statements, since include/compiler.h forces it in for a debug build anyway.
* added stdio.h to includes for DBG compilationMarty Connor2006-09-271-0/+1
|
* Split PXE code into preboot, udp, tftp, undi and loader units.Michael Brown2005-05-241-0/+83
PXE code now compiles without errors (though it won't actually work).