So far only x86 supports the EFI app. ARM is going the same way, so allow these options to be enabled for 64-bit ARM too.
Signed-off-by: Simon Glass <s...@chromium.org> Reviewed-by: Tom Rini <tr...@konsulko.com> --- (no changes since v2) Changes in v2: - Drop the word 'Sadly' - Mention '64-bit ARM' here, rather than just 'ARM' arch/Kconfig | 2 ++ arch/x86/Kconfig | 1 - board/efi/Kconfig | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/arch/Kconfig b/arch/Kconfig index 6258788f53f..493c827d74d 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -544,6 +544,8 @@ source "arch/Kconfig.nxp" endif +source "board/efi/Kconfig" + source "board/keymile/Kconfig" choice diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 23a1e21b29e..80396a3a2d5 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -100,7 +100,6 @@ source "board/advantech/Kconfig" source "board/congatec/Kconfig" source "board/coreboot/Kconfig" source "board/dfi/Kconfig" -source "board/efi/Kconfig" source "board/emulation/Kconfig" source "board/google/Kconfig" source "board/intel/Kconfig" diff --git a/board/efi/Kconfig b/board/efi/Kconfig index 9027ca8482c..7545f808585 100644 --- a/board/efi/Kconfig +++ b/board/efi/Kconfig @@ -1,5 +1,7 @@ if VENDOR_EFI +if X86 + choice prompt "Mainboard model" optional @@ -33,8 +35,6 @@ config TARGET_EFI_X86_PAYLOAD endchoice -if X86 - source "board/efi/efi-x86_app/Kconfig" source "board/efi/efi-x86_payload/Kconfig" -- 2.43.0