diff options
author | Simon Glass <sjg@chromium.org> | 2018-09-15 00:50:53 -0600 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-09-23 21:55:30 +0200 |
commit | a46714ffc31c46930965596e2da9ecfac648c1d3 (patch) | |
tree | bcfe47d3b9d81953e50e7d31b8986a419ba390d3 /lib | |
parent | a4958a71017fb142542f977c843c5fce769fc6ea (diff) | |
download | u-boot-a46714ffc31c46930965596e2da9ecfac648c1d3.zip u-boot-a46714ffc31c46930965596e2da9ecfac648c1d3.tar.gz u-boot-a46714ffc31c46930965596e2da9ecfac648c1d3.tar.bz2 |
efi: sandbox: Enable EFI loader build for sandbox
This allows this feature to build within sandbox. This is useful for
testing.
Signed-off-by: Simon Glass <sjg@chromium.org>
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 dbf7339..b921ea8 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 (ARM || X86 || RISCV) && OF_LIBFDT + depends on (ARM || X86 || RISCV || SANDBOX) && OF_LIBFDT # We need EFI_STUB_64BIT to be set on x86_64 with EFI_STUB depends on !EFI_STUB || !X86_64 || EFI_STUB_64BIT # We need EFI_STUB_32BIT to be set on x86_32 with EFI_STUB |