
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 --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),)