diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2024-01-17 13:39:42 +0900 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-17 08:40:25 +0100 |
commit | 279b03d979154cf6d4cd086f21daf478bd3d986c (patch) | |
tree | d39ae5dcca1a9aea7a0cf1980b0ffde7e97f3767 /boot | |
parent | 6422820ac3e59fd92dc7fc5c9dcd5c6101065f19 (diff) | |
download | u-boot-279b03d979154cf6d4cd086f21daf478bd3d986c.tar.gz u-boot-279b03d979154cf6d4cd086f21daf478bd3d986c.tar.bz2 u-boot-279b03d979154cf6d4cd086f21daf478bd3d986c.zip |
efi_loader: rename BOOTEFI_BOOTMGR to EFI_BOOTMGR
At this point, EFI boot manager interfaces is fully independent from
bootefi command. So just rename the configuration parameter.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot')
-rw-r--r-- | boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/Makefile b/boot/Makefile index a47e002746..f0a279cde1 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -35,7 +35,7 @@ obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SANDBOX) += bootmeth_sandbox.o obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SCRIPT) += bootmeth_script.o obj-$(CONFIG_$(SPL_TPL_)CEDIT) += cedit.o ifdef CONFIG_$(SPL_TPL_)BOOTSTD_FULL -obj-$(CONFIG_BOOTEFI_BOOTMGR) += bootmeth_efi_mgr.o +obj-$(CONFIG_EFI_BOOTMGR) += bootmeth_efi_mgr.o obj-$(CONFIG_$(SPL_TPL_)EXPO) += bootflow_menu.o obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow_menu.o endif |