diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-10-20 00:23:43 +0900 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2016-11-14 23:24:02 +0100 |
commit | 456ca6ba04bc4ecb5d35d01dbc62573c4391fe38 (patch) | |
tree | 365b3662cf9d52b220b8d6fc4242418de950c49c /lib | |
parent | 29e0cfb4f77f7aa369136302cee14a91e22dca71 (diff) | |
download | u-boot-imx-456ca6ba04bc4ecb5d35d01dbc62573c4391fe38.zip u-boot-imx-456ca6ba04bc4ecb5d35d01dbc62573c4391fe38.tar.gz u-boot-imx-456ca6ba04bc4ecb5d35d01dbc62573c4391fe38.tar.bz2 |
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 <yamada.masahiro@socionext.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
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 37a0dd6..7d4106e 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) |