From: Masahiro Yamada Date: Wed, 19 Oct 2016 15:23:43 +0000 (+0900) Subject: efi_loader: fix depends on line of EFI_LOADER X-Git-Tag: v2017.01-rc1~252^2~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=456ca6ba04bc4ecb5d35d01dbc62573c4391fe38;p=oweals%2Fu-boot.git efi_loader: fix depends on line of EFI_LOADER This line is shown as depends on (ARM64 ||\302\240ARM) && OF_LIBFDT on my Emacs. Use ASCII characters only. Assuming it is (ARM64 || ARM), remove the redundancy. Unlike Linux, CONFIG_ARM includes CONFIG_ARM64 in U-Boot. Signed-off-by: Masahiro Yamada Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index 37a0dd60a5..7d4106e4c9 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -1,6 +1,6 @@ config EFI_LOADER bool "Support running EFI Applications in U-Boot" - depends on (ARM64 || ARM) && OF_LIBFDT + depends on ARM && OF_LIBFDT default y help Select this option if you want to run EFI applications (like grub2)