mirror of
https://github.com/ipxe/ipxe
synced 2026-02-05 08:53:52 +03:00
As of commit 79c0173 ("[build] Create util/genfsimg for building
filesystem-based images"), the EFI boot file name for each CPU
architecture is defined within the genfsimg script itself, rather than
being passed in as a Makefile parameter.
Remove the now-redundant Makefile definitions for EFI_BOOT_FILE.
Reported-by: Christian I. Nilsson <nikize@gmail.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
15 lines
268 B
Makefile
15 lines
268 B
Makefile
# -*- makefile -*- : Force emacs to use Makefile mode
|
|
|
|
# EFI uses the soft float ABI
|
|
#
|
|
CFLAGS += -mfloat-abi=soft
|
|
|
|
# Specify EFI image builder
|
|
#
|
|
ELF2EFI = $(ELF2EFI32)
|
|
|
|
# Include generic EFI Makefile
|
|
#
|
|
MAKEDEPS += arch/arm/Makefile.efi
|
|
include arch/arm/Makefile.efi
|