summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-03-20 11:24:58 -0600
committerTom Rini <[email protected]>2026-04-03 12:06:07 -0600
commit0b1a79350212d0d166135bcfa4dd3a2cfbdc59ce (patch)
tree2844b8017f616f95e5a0a5a790f298eae2ebd291 /lib
parent021e3828fbd2bf6e633d2b98a3a0e8719fa13c46 (diff)
optee: Correct dependencies for BOOTM_OPTEE
As exposed by "make randconfig", we have an issue with the dependencies for BOOTM_OPTEE. This symbol needs to select BOOTM_LINUX and in turn depend on the library symbols that have to be enabled for BOOTM_LINUX to be valid (LIB_BOOTI, LIB_BOOTM and LIB_BOOTZ). Reviewed-by: Marek Vasut <[email protected]> Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'lib')
-rw-r--r--lib/optee/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/optee/Kconfig b/lib/optee/Kconfig
index 34b9d8afe67..e0de57e2930 100644
--- a/lib/optee/Kconfig
+++ b/lib/optee/Kconfig
@@ -40,6 +40,7 @@ config OPTEE_TZDRAM_SIZE
config BOOTM_OPTEE
bool "Support OPTEE bootm command"
+ depends on LIB_BOOTI || LIB_BOOTM || LIB_BOOTZ
select BOOTM_LINUX
select OPTEE_IMAGE
help