diff options
author | Michael Brown <mcb30@ipxe.org> | 2021-02-19 19:58:04 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2021-02-19 19:58:04 +0000 |
commit | b76281a8855632df7cc20ad9174e55e29dc6ce67 (patch) | |
tree | 0654e1d9522cdcb42b082934006bb372448164c4 /src/Makefile.housekeeping | |
parent | 900f1f98d3dbb64803e427318ad61c9d7aa6f9bb (diff) | |
download | ipxe-b76281a8855632df7cc20ad9174e55e29dc6ce67.tar.gz |
[efi] Compress EFI ROM images
Use the reference implementation of the EFI compression algorithm
(taken from the EDK2 codebase, with minor bugfixes to allow
compilation with -Werror) to compress EFI ROM images.
Inspired-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/Makefile.housekeeping')
-rw-r--r-- | src/Makefile.housekeeping | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 8e769c6af..2c2c8a1fc 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -1425,7 +1425,7 @@ $(ELF2EFI64) : util/elf2efi.c $(MAKEDEPS) $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -DEFI_TARGET64 $< -o $@ CLEANUP += $(ELF2EFI64) -$(EFIROM) : util/efirom.c $(MAKEDEPS) +$(EFIROM) : util/efirom.c util/eficompress.c $(MAKEDEPS) $(QM)$(ECHO) " [HOSTCC] $@" $(Q)$(HOST_CC) $(HOST_CFLAGS) -idirafter include -o $@ $< CLEANUP += $(EFIROM) |