summaryrefslogtreecommitdiffstats
path: root/src/interface/efi/efi_entry.c
Commit message (Collapse)AuthorAgeFilesLines
* [efi] Use elf2efi utility in place of efilinkMichael Brown2009-01-071-124/+0Star
| | | | | | | | | | | elf2efi converts a suitable ELF executable (containing relocation information, and with appropriate virtual addresses) into an EFI executable. It is less tightly coupled with the gPXE build process and, in particular, does not require the use of a hand-crafted PE image header in efiprefix.S. elf2efi correctly handles .bss sections, which significantly reduces the size of the gPXE EFI executable.
* [efi] Allow use of EFI configuration tablesMichael Brown2008-12-051-4/+45
| | | | | | | EFI passes in copies of SMBIOS and other system configuration tables via the EFI system table. Allow configuration tables to be requested using a mechanism similar to the current method for requesting EFI protocols.
* [efi] Add EFI image format and basic runtime environmentMichael Brown2008-10-131-0/+83
We have EFI APIs for CPU I/O, PCI I/O, timers, console I/O, user access and user memory allocation. EFI executables are created using the vanilla GNU toolchain, with the EXE header handcrafted in assembly and relocations generated by a custom efilink utility.