diff options
author | Tom Rini | 2024-06-14 10:39:40 -0600 |
---|---|---|
committer | Tom Rini | 2024-06-14 12:59:06 -0600 |
commit | 281a80c483f868a4aad0ff50d62459afd29777ca (patch) | |
tree | c329f6cb051eb49cb2bd7edfd044b219ec3f8e96 /lib | |
parent | e7404a804f6f20fcbedf38f9c6db7f7f12fea3fe (diff) | |
parent | fd0ab46ead92268e94ad840a0f4aa314ef3e2df3 (diff) |
Merge patch series "efi_loader: select BLK not depends on BLK"
Tom Rini <trini@konsulko.com> says:
Rework how the BLK symbol is used now that so much DM migration has been
completed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 430bb7f0f7d..ee71f417147 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -10,9 +10,9 @@ config EFI_LOADER depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT # We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB depends on !EFI_STUB || !X86 || X86_64 || EFI_STUB_32BIT - depends on BLK depends on !EFI_APP default y if !ARM || SYS_CPU = armv7 || SYS_CPU = armv8 + select BLK select CHARSET # We need to send DM events, dynamically, in the EFI block driver select DM_EVENT |