diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-05-01 11:18:03 +0200 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2022-05-03 21:39:22 +0200 |
commit | 1b2c3e543ca7fe70ffbe4444a5e90c037c782fbb (patch) | |
tree | 8612b14f26e6b8737f596a3907da20781290aca9 /lib | |
parent | 1979404263f5b40521a513ab510d789d26386ba1 (diff) | |
download | u-boot-1b2c3e543ca7fe70ffbe4444a5e90c037c782fbb.tar.gz |
efi_selftest: buildefi_selftest_unaligned.c
The unit test has not been built since CPU_V7 was rename CPU_V7A.
Fixes: acf1500138bb ("arm: v7: Kconfig: Rename CPU_V7 as CPU_V7A")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_selftest/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/efi_selftest/Makefile b/lib/efi_selftest/Makefile index be8040d1c7..33536c9ec0 100644 --- a/lib/efi_selftest/Makefile +++ b/lib/efi_selftest/Makefile @@ -55,7 +55,9 @@ obj-$(CONFIG_EFI_DEVICE_PATH_TO_TEXT) += efi_selftest_devicepath.o obj-$(CONFIG_EFI_UNICODE_COLLATION_PROTOCOL2) += \ efi_selftest_unicode_collation.o -obj-$(CONFIG_CPU_V7) += efi_selftest_unaligned.o +ifeq ($(CONFIG_CPU_V7A)$(CONFIG_CPU_V7M)$(CONFIG_CPU_V7R),y) +obj-y += efi_selftest_unaligned.o +endif obj-$(CONFIG_EFI_LOADER_HII) += efi_selftest_hii.o obj-$(CONFIG_EFI_RNG_PROTOCOL) += efi_selftest_rng.o obj-$(CONFIG_EFI_GET_TIME) += efi_selftest_rtc.o |