diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-08-28 08:15:37 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-09-06 21:21:41 +0200 |
commit | d2a885720be6eb66595a26754d075cfd5e868420 (patch) | |
tree | aae9a01c66cb18600cd903ef1ca904c6c6091268 /lib | |
parent | 578d7cc8fa11f938a110bfea769c1dd311af0d75 (diff) |
efi_selftest: simplify Makefile
CONFIG_EFI_LOADER cannot be selected for ARMv7-M CPUs. So don't check it in
the Makefile.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_selftest/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/efi_selftest/Makefile b/lib/efi_selftest/Makefile index 85fe8e1216..06d66cfdd1 100644 --- a/lib/efi_selftest/Makefile +++ b/lib/efi_selftest/Makefile @@ -62,10 +62,6 @@ ifeq ($(CONFIG_BLK)$(CONFIG_DOS_PARTITION),yy) obj-y += efi_selftest_block_device.o endif -# TODO: As of v2019.10 the relocation code for the EFI application cannot -# be built on ARMv7-M. -ifeq ($(CONFIG_CPU_V7M),) - obj-y += \ efi_selftest_exception.o \ efi_selftest_loadimage.o \ @@ -99,5 +95,3 @@ $(obj)/efi_selftest_exception.o: $(obj)/efi_miniapp_file_image_exception.h $(obj)/efi_selftest_startimage_exit.o: $(obj)/efi_miniapp_file_image_exit.h $(obj)/efi_selftest_startimage_return.o: $(obj)/efi_miniapp_file_image_return.h - -endif |