diff options
author | Michael Brown | 2014-09-10 03:58:50 +0200 |
---|---|---|
committer | Michael Brown | 2014-09-10 04:12:10 +0200 |
commit | 5de37e124fd21c8f918f3fe26fc33a764709ead4 (patch) | |
tree | 8d08728258f0fbfb14db943d2a6308d1acf1a454 /src/Makefile | |
parent | [build] Clean up all binary directories on "make [very]clean" (diff) | |
download | ipxe-5de37e124fd21c8f918f3fe26fc33a764709ead4.tar.gz ipxe-5de37e124fd21c8f918f3fe26fc33a764709ead4.tar.xz ipxe-5de37e124fd21c8f918f3fe26fc33a764709ead4.zip |
[efi] Add efifatbin utility
Add utility for constructing EFI fat binaries (dual 32/64-bit
binaries, usable only on Apple EFI systems).
This utility is not part of the standard build process. To use it:
make util/efifatbin bin-i386-efi/ipxe.efi bin-x86_64-efi/ipxe.efi
and then
./util/efifatbin bin-*-efi/ipxe.efi fat-ipxe.efi
Requested-by: Brandon Penglase <bpenglase-ipxe@spaceservices.net>
Tested-by: Brandon Penglase <bpenglase-ipxe@spaceservices.net>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index c6f4d590..b742d128 100644 --- a/src/Makefile +++ b/src/Makefile @@ -46,6 +46,7 @@ ZBIN := ./util/zbin ELF2EFI32 := ./util/elf2efi32 ELF2EFI64 := ./util/elf2efi64 EFIROM := ./util/efirom +EFIFATBIN := ./util/efifatbin ICCFIX := ./util/iccfix EINFO := ./util/einfo GENKEYMAP := ./util/genkeymap.pl |