diff options
author | Andrew Davis | 2023-11-01 15:35:24 -0500 |
---|---|---|
committer | Tom Rini | 2023-11-22 09:37:22 -0500 |
commit | 5936351be1db17ccc7589b678cd7a89578609620 (patch) | |
tree | b4c5225a8c8427dbc63fab4e93af6ee330e90f32 /board/toradex | |
parent | 0744fef6a3b1bf870de363942c1329b451b738f4 (diff) |
board: ti: Add dependency from TARGET selection to SOC
Currently the K3 selection for TARGET boards does not depend on the SoC
for which it is based. This leds to the odd ability to select for instance
both SOC_K3_AM625 and TARGET_J721E_A72_EVM.
To fix this the target choice should depend on the matching SOC config.
Signed-off-by: Andrew Davis <afd@ti.com>
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
Diffstat (limited to 'board/toradex')
-rw-r--r-- | board/toradex/verdin-am62/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/toradex/verdin-am62/Kconfig b/board/toradex/verdin-am62/Kconfig index e7522244070..abc2984f250 100644 --- a/board/toradex/verdin-am62/Kconfig +++ b/board/toradex/verdin-am62/Kconfig @@ -5,6 +5,7 @@ choice prompt "Toradex Verdin AM62 based boards" + depends on SOC_K3_AM625 optional config TARGET_VERDIN_AM62_A53 |