Re: [PATCH 1/7] board: ti: Add dependency from TARGET selection to SOC

2023-11-22 Thread Tom Rini
On Wed, Nov 01, 2023 at 03:35:24PM -0500, Andrew Davis wrote: > 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

Re: [PATCH 1/7] board: ti: Add dependency from TARGET selection to SOC

2023-11-02 Thread Neha Malcom Francis
Hi Andrew, On 02/11/23 02:05, Andrew Davis wrote: 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

[PATCH 1/7] board: ti: Add dependency from TARGET selection to SOC

2023-11-01 Thread Andrew Davis
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 ---