diff options
author | Rob Clark <robdclark@gmail.com> | 2017-09-13 18:05:28 -0400 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-09-20 10:31:55 +0200 |
commit | b66c60dde9d48889b93694326d40f7e5208cff25 (patch) | |
tree | f4827a4d1f3413867fe6a9da19603b464953142c /lib/efi_loader/Makefile | |
parent | c80214ce1f39a9b9da32dbe941ff83051b03c080 (diff) | |
download | u-boot-b66c60dde9d48889b93694326d40f7e5208cff25.tar.gz u-boot-b66c60dde9d48889b93694326d40f7e5208cff25.tar.xz u-boot-b66c60dde9d48889b93694326d40f7e5208cff25.zip |
efi_loader: add device-path utils
Helpers to construct device-paths from devices, partitions, files, and
for parsing and manipulating device-paths.
For non-legacy devices, this will use u-boot's device-model to construct
device-paths which include bus hierarchy to construct device-paths. For
legacy devices we still fake it, but slightly more convincingly.
Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_loader/Makefile')
-rw-r--r-- | lib/efi_loader/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/Makefile b/lib/efi_loader/Makefile index 0cfdd3bfc9..e68b0dd9a5 100644 --- a/lib/efi_loader/Makefile +++ b/lib/efi_loader/Makefile @@ -16,7 +16,7 @@ endif obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o obj-y += efi_image_loader.o efi_boottime.o efi_runtime.o efi_console.o -obj-y += efi_memory.o efi_device_path_to_text.o +obj-y += efi_memory.o efi_device_path_to_text.o efi_device_path.o obj-$(CONFIG_LCD) += efi_gop.o obj-$(CONFIG_DM_VIDEO) += efi_gop.o obj-$(CONFIG_PARTITIONS) += efi_disk.o |