[efi] Enable IMAGE_GZIP by default for AArch64

AArch64 kernels tend to be distributed as gzip compressed images.
Enable IMAGE_GZIP by default for AArch64 to avoid the need for
uncompressed images to be provided.

Originally-implemented-by: Alessandro Di Stefano <aleskandro@redhat.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
pull/586/head
Michael Brown 2022-02-10 12:47:25 +00:00
parent bc35b24e3e
commit 64113751c3
1 changed files with 4 additions and 0 deletions

View File

@ -58,4 +58,8 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#define NAP_EFIARM
#endif
#if defined ( __aarch64__ )
#define IMAGE_GZIP /* GZIP image support */
#endif
#endif /* CONFIG_DEFAULTS_EFI_H */