soc: nxp: mcx: do not select HAS_SEGGER_RTT unless segger module is present
Do not select HAS_SEGGER_RTT unless the segger module is present. This avoids a Kconfig error when SEGGER's debug module is not present in the west manifest Fixes #80529 Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
This commit is contained in:
parent
cd9ddc95a8
commit
d3fac0b7fe
|
@ -2,7 +2,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config SOC_SERIES_MCXA
|
||||
select HAS_SEGGER_RTT
|
||||
select HAS_SEGGER_RTT if ZEPHYR_SEGGER_MODULE
|
||||
select CLOCK_CONTROL
|
||||
select ARM
|
||||
select HAS_MCUX
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config SOC_SERIES_MCXN
|
||||
select HAS_SEGGER_RTT
|
||||
select HAS_SEGGER_RTT if ZEPHYR_SEGGER_MODULE
|
||||
select CLOCK_CONTROL
|
||||
select ARM
|
||||
select HAS_MCUX
|
||||
|
|
Loading…
Reference in New Issue