aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2019-08-21 22:21:54 +0200
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2019-08-29 05:54:26 +0200
commitce9ad0313c97a77d6c7efe02910e201c4bd2ca5d (patch)
treeb381aa107b63efff29ffe5cc1d1978dfa4cc2adc /lib
parente4b8dd9b34021241cd05d5cc9d24b4ae34657830 (diff)
downloadu-boot-ce9ad0313c97a77d6c7efe02910e201c4bd2ca5d.zip
u-boot-ce9ad0313c97a77d6c7efe02910e201c4bd2ca5d.tar.gz
u-boot-ce9ad0313c97a77d6c7efe02910e201c4bd2ca5d.tar.bz2
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 <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/efi_selftest/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efi_selftest/Makefile b/lib/efi_selftest/Makefile
index 5d7a164..f326ead 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 \