diff options
author | Michael Brown | 2009-01-07 03:05:51 +0100 |
---|---|---|
committer | Michael Brown | 2009-01-07 23:59:05 +0100 |
commit | 314779eb369db746be5373b398111d5b746d67de (patch) | |
tree | 0856694401b250357ad6ece6e2845c4611b58d01 /src/Makefile | |
parent | [build] Avoid strict-aliasing warnings when building with gcc 4.4 (diff) | |
download | ipxe-314779eb369db746be5373b398111d5b746d67de.tar.gz ipxe-314779eb369db746be5373b398111d5b746d67de.tar.xz ipxe-314779eb369db746be5373b398111d5b746d67de.zip |
[efi] Use elf2efi utility in place of efilink
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.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 67e36a20..015fcc42 100644 --- a/src/Makefile +++ b/src/Makefile @@ -37,7 +37,8 @@ SYMCHECK := $(PERL) ./util/symcheck.pl SORTOBJDUMP := $(PERL) ./util/sortobjdump.pl NRV2B := ./util/nrv2b ZBIN := ./util/zbin -EFILINK := ./util/efilink +ELF2EFI32 := ./util/elf2efi32 +ELF2EFI64 := ./util/elf2efi64 DOXYGEN := doxygen ############################################################################### |