diff options
author | Simon Glass <sjg@chromium.org> | 2016-11-07 08:47:10 -0700 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2016-11-14 23:24:04 +0100 |
commit | dd46eef2f6e0b7dce2e6bcd85ed8caca5a6b606c (patch) | |
tree | 74f90abb47c2797ccbe52d642f6d6e3795251b67 /cmd/Kconfig | |
parent | c70f74a081c2005b0a4749cf8762fc14b7369ddb (diff) | |
download | u-boot-dd46eef2f6e0b7dce2e6bcd85ed8caca5a6b606c.tar.gz |
efi: arm: Add EFI app support
Add support for EFI apps on ARM. This includes start-up and relocation
code, plus a link script and some compiler setting changes.
Signed-off-by: Simon Glass <sjg@chromium.org>
[agraf: Remove whitespace change, add kconfig dep]
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index ebcfd6ddaf..a1ce4b790e 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 && NEED_CRT0_ENABLEMENT + depends on CMD_BOOTEFI && ARM && !ARM64 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 |