13b0e6bbf3
The gnu-efi package was enabled on mips64el by commit11b347c03a
("package/gnu-efi: add mips64el support"). However, it has been failing to build for a long time, and nobody bothered fixing it: gnu-efi-3.0.15//gnuefi/crt0-efi-mips64el.S:71: Error: cannot represent BFD_RELOC_16 relocation in this object file format Even reverting back to gnu-efi 3.0.10, which was the version used at the time of11b347c03a
, does not fix the issue. We tested updating to the latest gnu-efi version, 3.0.17, and the problem still exists. Since EFI on MIPS is extremely niche, we don't really want to invest the time to fix this issue, so let's disable it again. If someone cares enough, it can be fixed and re-enabled. Fixes: http://autobuild.buildroot.net/results/d5938edcf50ebb7fdcec148d73f402845079779d/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# gnu-efi
|
|
#
|
|
################################################################################
|
|
|
|
GNU_EFI_VERSION = 3.0.15
|
|
GNU_EFI_SOURCE = gnu-efi-$(GNU_EFI_VERSION).tar.bz2
|
|
GNU_EFI_SITE = http://downloads.sourceforge.net/project/gnu-efi
|
|
GNU_EFI_INSTALL_STAGING = YES
|
|
GNU_EFI_LICENSE = BSD-3-Clause and/or GPL-2.0+ (gnuefi), BSD-3-Clause (efilib)
|
|
GNU_EFI_LICENSE_FILES = README.efilib
|
|
|
|
# gnu-efi is a set of library and header files used to build
|
|
# standalone EFI applications such as bootloaders. There is no point
|
|
# in installing these libraries to the target.
|
|
GNU_EFI_INSTALL_TARGET = NO
|
|
|
|
ifeq ($(BR2_i386),y)
|
|
GNU_EFI_PLATFORM = ia32
|
|
else ifeq ($(BR2_x86_64),y)
|
|
GNU_EFI_PLATFORM = x86_64
|
|
else ifeq ($(BR2_arm)$(BR2_armeb),y)
|
|
GNU_EFI_PLATFORM = arm
|
|
else ifeq ($(BR2_aarch64)$(BR2_aarch64_be),y)
|
|
GNU_EFI_PLATFORM = aarch64
|
|
endif
|
|
|
|
GNU_EFI_MAKE_OPTS = \
|
|
ARCH=$(GNU_EFI_PLATFORM) \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
PREFIX=/usr
|
|
|
|
define GNU_EFI_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(GNU_EFI_MAKE_OPTS)
|
|
endef
|
|
|
|
define GNU_EFI_INSTALL_STAGING_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) $(GNU_EFI_MAKE_OPTS) \
|
|
INSTALLROOT=$(STAGING_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|