diff options
| author | Simon Glass <[email protected]> | 2025-05-28 10:03:14 -0600 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-07-26 07:29:31 +0200 |
| commit | 2ea957952362fe9238cbf3996c001f8bf3f04701 (patch) | |
| tree | 7dc4fc5e9604ffca81873200ca217d60a285b57d /lib | |
| parent | 088d24eb96fb8ba64e3afee310a9f32ee36c22b0 (diff) | |
efi: Rename the lib/efi directory
This directory was created when U-Boot gained the ability to run as an
EFI app in 2015. Since then the EFI-loader feature has been added.
The code in lib/efi is not actually used by the loader, so the name is
confusing.
Rename the directory to efi_client to indicate that it includes files
just for U-Boot being a client of EFI, i.e. the EFI app and stub.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Makefile | 2 | ||||
| -rw-r--r-- | lib/efi_client/Kconfig (renamed from lib/efi/Kconfig) | 0 | ||||
| -rw-r--r-- | lib/efi_client/Makefile (renamed from lib/efi/Makefile) | 0 | ||||
| -rw-r--r-- | lib/efi_client/efi.c (renamed from lib/efi/efi.c) | 0 | ||||
| -rw-r--r-- | lib/efi_client/efi_app.c (renamed from lib/efi/efi_app.c) | 0 | ||||
| -rw-r--r-- | lib/efi_client/efi_app_init.c (renamed from lib/efi/efi_app_init.c) | 0 | ||||
| -rw-r--r-- | lib/efi_client/efi_info.c (renamed from lib/efi/efi_info.c) | 0 | ||||
| -rw-r--r-- | lib/efi_client/efi_stub.c (renamed from lib/efi/efi_stub.c) | 0 | ||||
| -rw-r--r-- | lib/efi_loader/Kconfig | 2 |
9 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 18ae0cd87bf..1dd738a7cd1 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -5,7 +5,7 @@ ifndef CONFIG_XPL_BUILD -obj-$(CONFIG_EFI) += efi/ +obj-$(CONFIG_EFI) += efi_client/ obj-$(CONFIG_EFI_LOADER) += efi_driver/ obj-$(CONFIG_EFI_LOADER) += efi_loader/ obj-$(CONFIG_CMD_BOOTEFI_SELFTEST) += efi_selftest/ diff --git a/lib/efi/Kconfig b/lib/efi_client/Kconfig index 81ed3e66b34..81ed3e66b34 100644 --- a/lib/efi/Kconfig +++ b/lib/efi_client/Kconfig diff --git a/lib/efi/Makefile b/lib/efi_client/Makefile index 232fa684360..232fa684360 100644 --- a/lib/efi/Makefile +++ b/lib/efi_client/Makefile diff --git a/lib/efi/efi.c b/lib/efi_client/efi.c index bcb34d67465..bcb34d67465 100644 --- a/lib/efi/efi.c +++ b/lib/efi_client/efi.c diff --git a/lib/efi/efi_app.c b/lib/efi_client/efi_app.c index 9b94a93ee4f..9b94a93ee4f 100644 --- a/lib/efi/efi_app.c +++ b/lib/efi_client/efi_app.c diff --git a/lib/efi/efi_app_init.c b/lib/efi_client/efi_app_init.c index c5e4192fe06..c5e4192fe06 100644 --- a/lib/efi/efi_app_init.c +++ b/lib/efi_client/efi_app_init.c diff --git a/lib/efi/efi_info.c b/lib/efi_client/efi_info.c index 5b564c5651d..5b564c5651d 100644 --- a/lib/efi/efi_info.c +++ b/lib/efi_client/efi_info.c diff --git a/lib/efi/efi_stub.c b/lib/efi_client/efi_stub.c index a083c7f1e9b..a083c7f1e9b 100644 --- a/lib/efi/efi_stub.c +++ b/lib/efi_client/efi_stub.c diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 077466f01f0..250b9469134 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -595,6 +595,6 @@ config BOOTEFI_TESTAPP_COMPILE endif -source "lib/efi/Kconfig" +source "lib/efi_client/Kconfig" endmenu |
