summaryrefslogtreecommitdiff
path: root/lib/efi_driver
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2021-09-24 18:30:17 -0600
committerHeinrich Schuchardt <[email protected]>2021-10-21 03:46:03 +0200
commitc779e0d923189a85eb1fa3a0a214541cf4795a19 (patch)
tree1935a653e4401b19c3d679958bf9ecd46ff18def /lib/efi_driver
parent28fc87ee3ae8730fc556757cff05480b5cf94381 (diff)
efi_loader: Drop code that doesn't work with driver model
This code should never have been added as it builds a new feature on top of legacy code. This has already been improved with the dependency on BLK. Add a dependency on DM_ETH also, to avoid needing to deal with this old code. Boards which want EFI_LOADER should migrate to driver model first. Signed-off-by: Simon Glass <[email protected]> Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib/efi_driver')
-rw-r--r--lib/efi_driver/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_driver/Makefile b/lib/efi_driver/Makefile
index 83baa1c9a49..f2b6c05cc24 100644
--- a/lib/efi_driver/Makefile
+++ b/lib/efi_driver/Makefile
@@ -6,6 +6,6 @@
# object inclusion implicitly depends on it
obj-y += efi_uclass.o
-ifeq ($(CONFIG_BLK)$(CONFIG_PARTITIONS),yy)
+ifeq ($(CONFIG_PARTITIONS),y)
obj-y += efi_block_device.o
endif