diff options
author | Simon Glass <sjg@chromium.org> | 2016-11-07 08:47:11 -0700 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2016-11-14 23:24:04 +0100 |
commit | c65d76ed5f81e54d32f280116caaf45119e4670d (patch) | |
tree | ec627da5d9c47a595d4c7047767f568a025084f9 /cmd | |
parent | dd46eef2f6e0b7dce2e6bcd85ed8caca5a6b606c (diff) | |
download | u-boot-c65d76ed5f81e54d32f280116caaf45119e4670d.zip u-boot-c65d76ed5f81e54d32f280116caaf45119e4670d.tar.gz u-boot-c65d76ed5f81e54d32f280116caaf45119e4670d.tar.bz2 |
efi: arm: Add aarch64 EFI app support
Add support for EFI apps on aarch64. This includes start-up and relocation
code plus a link script.
Signed-off-by: Simon Glass <sjg@chromium.org>
[agraf: add kconfig dep]
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index a1ce4b7..501ac17 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -183,7 +183,7 @@ config CMD_BOOTEFI config CMD_BOOTEFI_HELLO bool "Allow booting a standard EFI hello world for testing" - depends on CMD_BOOTEFI && ARM && !ARM64 + depends on CMD_BOOTEFI && ARM help This adds a standard EFI hello world application to U-Boot so that it can be used with the 'bootefi hello' command. This is useful |