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/Makefile | |
| 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/Makefile')
| -rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 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/ |
