diff mbox series

[U-Boot,1/1] efi_selftest: build miniapp test cases on x86_64

Message ID 20180612110116.24035-1-xypron.glpk@gmx.de
State Accepted
Headers show
Series [U-Boot,1/1] efi_selftest: build miniapp test cases on x86_64 | expand

Commit Message

Heinrich Schuchardt June 12, 2018, 11:01 a.m. UTC
Since commit 508d8567046f ("efi_selftest: allow building relocation code
on x86_64") we can build the miniapp test cases without error on x86_64.

But they are incompatible to the upcoming patches for the Sandbox.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 lib/efi_selftest/Makefile | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/lib/efi_selftest/Makefile b/lib/efi_selftest/Makefile
index 4fe404d88d..528329bc5b 100644
--- a/lib/efi_selftest/Makefile
+++ b/lib/efi_selftest/Makefile
@@ -39,9 +39,7 @@  ifeq ($(CONFIG_BLK)$(CONFIG_PARTITIONS),yy)
 obj-$(CONFIG_CMD_BOOTEFI_SELFTEST) += efi_selftest_block_device.o
 endif
 
-# TODO: As of v2018.01 the relocation code for the EFI application cannot
-# be built on x86_64.
-ifeq ($(CONFIG_X86_64),)
+ifeq ($(SANDBOX),)
 
 ifneq ($(CONFIG_CMD_BOOTEFI_SELFTEST),)