mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 18:34:42 +00:00
spl: Fix SPL_ATF and SPL_OPENSBI dependencies
The code for these two options depends on having the FIT loadables recorded in the FDT. Thus, these options require the full version of the SPL_LOAD_FIT code. Signed-off-by: Samuel Holland <samuel@sholland.org>
This commit is contained in:
parent
758bff205f
commit
4b0a1f5987
1 changed files with 3 additions and 1 deletions
|
@ -1440,7 +1440,8 @@ config SPL_YMODEM_SUPPORT
|
|||
|
||||
config SPL_ATF
|
||||
bool "Support ARM Trusted Firmware"
|
||||
depends on ARM64 && SPL_FIT
|
||||
depends on ARM64
|
||||
depends on SPL_LOAD_FIT && !SPL_FIT_IMAGE_TINY
|
||||
help
|
||||
ATF(ARM Trusted Firmware) is a component for ARM AArch64 which
|
||||
is loaded by SPL (which is considered as BL2 in ATF terminology).
|
||||
|
@ -1487,6 +1488,7 @@ config SPL_OPTEE_IMAGE
|
|||
config SPL_OPENSBI
|
||||
bool "Support RISC-V OpenSBI"
|
||||
depends on RISCV && SPL_RISCV_MMODE && RISCV_SMODE
|
||||
depends on SPL_LOAD_FIT && !SPL_FIT_IMAGE_TINY
|
||||
help
|
||||
OpenSBI is an open-source implementation of the RISC-V Supervisor Binary
|
||||
Interface (SBI) specification. U-Boot supports the OpenSBI FW_DYNAMIC
|
||||
|
|
Loading…
Add table
Reference in a new issue