aboutsummaryrefslogtreecommitdiff
path: root/lib/efi/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-12-19 07:27:19 -0700
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2024-01-13 18:17:46 +0100
commit50662260c41704d01a83f3d978a18d70eb799089 (patch)
treeaae44bb492735066d07d518b68db7ff670b641af /lib/efi/Makefile
parent5a0970ee8cf4391835d21c59e44a65d54d42377c (diff)
downloadu-boot-50662260c41704d01a83f3d978a18d70eb799089.zip
u-boot-50662260c41704d01a83f3d978a18d70eb799089.tar.gz
u-boot-50662260c41704d01a83f3d978a18d70eb799089.tar.bz2
efi: Avoid using dm_scan_other()
This function is defined by bootstd so using it precludes using that feature. Use the board_early_init_r() feature instead. Nove the affected code into a new file, so that it is clear that this relates to board init. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi/Makefile')
-rw-r--r--lib/efi/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi/Makefile b/lib/efi/Makefile
index a790d2d..232fa68 100644
--- a/lib/efi/Makefile
+++ b/lib/efi/Makefile
@@ -2,7 +2,7 @@
#
# (C) Copyright 2015 Google, Inc
-obj-$(CONFIG_EFI_APP) += efi_app.o efi.o
+obj-$(CONFIG_EFI_APP) += efi_app.o efi.o efi_app_init.o
obj-$(CONFIG_EFI_STUB) += efi_info.o
CFLAGS_REMOVE_efi_stub.o := -mregparm=3 \