summaryrefslogtreecommitdiff
path: root/com32/include/syslinux
Commit message (Collapse)AuthorAgeFilesLines
* Add syslinux_reboot()H. Peter Anvin2007-07-201-0/+41
|
* Stealth whitespace cleanupH. Peter Anvin2007-06-051-6/+3
|
* Allow a flat color to be specified as a background.H. Peter Anvin2007-06-051-0/+38
|
* Add wrapper function syslinux_run_kernel_image()syslinux-3.50-pre6H. Peter Anvin2007-04-261-0/+9
| | | | Add syslinux_run_kernel_image() wrapper function for API function 0016h.
* Add syslinux_local_boot() wrapper functionH. Peter Anvin2007-04-041-0/+2
| | | | Add API wrapper function for the Local Boot function.
* SYSLINUX API headers, and beginning of implementation.H. Peter Anvin2007-03-205-0/+315
|
* Add interface for querying the syslinux feature flags.H. Peter Anvin2007-03-201-0/+50
|
* Move <syslinux.h> to <syslinux/idle.h>; clean up libutil do_idle()H. Peter Anvin2007-03-201-0/+37
| | | | | | Move <syslinux.h> to <syslinux/idle.h> since that was all that was there; do_idle() in libutil can simply be a macro for syslinux_idle() or sched_yield() as appropriate.
* initramfs chain handling: add support for forcing the alignment.H. Peter Anvin2007-03-151-1/+3
| | | | | | cpio has annoying alignment constraints; make it possible to enforce them without adding padding to the end of last member (which breaks things which relies on gzip and need to know the final length.)
* Library functions for manipulating initramfsH. Peter Anvin2007-03-152-1/+30
| | | | | | Library support for constructing initramfs. This version is *not* complete, as it doesn't take into account alignment requirements properly.
* Initial library support for booting a Linux kernelH. Peter Anvin2007-03-151-0/+58
|
* PXE header support; higher-level function for PXE GET_CACHED_INFOH. Peter Anvin2007-03-151-0/+532
| | | | | Beginnings of higher-level functions for PXE support. For now, only pxe_get_cached_info() is actually supported.
* Stealth whitespace cleanup (automated)H. Peter Anvin2007-03-142-8/+6
|
* Add a register-setting shuffle and boot for real mode; clean up headers.syslinux-3.40-pre14H. Peter Anvin2007-03-143-7/+123
| | | | | - Add an API function to shuffle and boot which sets *all* RM registers; - Move those structures to <syslinux/bootpm.h> and <syslinux/bootrm.h>
* Finish the shuffle and boot interface, and add an ELF loading module.H. Peter Anvin2007-03-141-8/+61
| | | | | | The shuffle and boot interface, including the library support, should now work as advertised. Add an ELF-loading module as a demo, and it's probably useful for someone, too.
* Wrapper infrastructure for "shuffle and boot"H. Peter Anvin2007-03-121-0/+44
Initial checkin of a wrapper infrastructure for the "shuffle and boot" interface, both real and protected mode. This code automatically will figure out the necessary sequence of moves, taking into account swaps and overlaps as necessary.