From: Heinrich Schuchardt Date: Wed, 21 Aug 2019 20:21:54 +0000 (+0200) Subject: efi_selftest: enable Exit() unit test on x86_64 X-Git-Tag: v2019.10-rc4~28^2~1 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ce9ad0313c97a77d6c7efe02910e201c4bd2ca5d;p=oweals%2Fu-boot.git efi_selftest: enable Exit() unit test on x86_64 Enable unit tests for StartImage() and Exit() unit tests on x86_64. Signed-off-by: Heinrich Schuchardt --- diff --git a/lib/efi_selftest/Makefile b/lib/efi_selftest/Makefile index 5d7a1643ef..f326ead56d 100644 --- a/lib/efi_selftest/Makefile +++ b/lib/efi_selftest/Makefile @@ -55,9 +55,9 @@ ifeq ($(CONFIG_BLK)$(CONFIG_PARTITIONS),yy) obj-y += efi_selftest_block_device.o endif -# TODO: As of v2019.01 the relocation code for the EFI application cannot -# be built on ARMv7-M, Sandbox, and x86_64. -ifeq ($(CONFIG_SANDBOX)$(CONFIG_CPU_V7M)$(CONFIG_X86_64),) +# TODO: As of v2019.10 the relocation code for the EFI application cannot +# be built on ARMv7-M and Sandbox. +ifeq ($(CONFIG_SANDBOX)$(CONFIG_CPU_V7M),) obj-y += \ efi_selftest_loadimage.o \