diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-09-20 21:58:23 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-09-23 21:55:31 +0200 |
commit | 4e6b5d6503ce8f16f00df4aedd137e919026dfad (patch) | |
tree | 8b721e1fde6b17f202b771eb947e4fe216cb3f60 /lib/efi_loader/Makefile | |
parent | 506dc52d5da1b6fea15da39904487c4b0218eaf2 (diff) | |
download | u-boot-4e6b5d6503ce8f16f00df4aedd137e919026dfad.tar.gz |
efi_loader: create root node
Currently we assign a lot of protocols to loaded images though
these protocols are not related to them. Instead they should be
installed on a separate handle. Via the device path it is the
parent to the devices like the network adapter.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_loader/Makefile')
-rw-r--r-- | lib/efi_loader/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/Makefile b/lib/efi_loader/Makefile index 7eebbc5b4e..6703435947 100644 --- a/lib/efi_loader/Makefile +++ b/lib/efi_loader/Makefile @@ -26,6 +26,7 @@ obj-y += efi_device_path_utilities.o obj-y += efi_file.o obj-y += efi_image_loader.o obj-y += efi_memory.o +obj-y += efi_root_node.o obj-y += efi_runtime.o obj-y += efi_unicode_collation.o obj-y += efi_variable.o |