This is an automated email from Gerrit. "Alvin Šipraga <a...@bang-olufsen.dk>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/7019
-- gerrit commit f4bbb899e989fa9a44eeef05a9b342d3e1822271 Author: Alvin Šipraga <a...@bang-olufsen.dk> Date: Sat Jun 11 00:01:01 2022 +0200 tcl/target/imx8m: use hwthread rtos In order to facilitate debugging multiple cores, specify the coreid and the hwthread rtos in the imx8m target configuration. Change-Id: Ibd871517a160ceca15002fb10e27cb793f14d086 Signed-off-by: Alvin Šipraga <a...@bang-olufsen.dk> diff --git a/tcl/target/imx8m.cfg b/tcl/target/imx8m.cfg index 9a8bfecb1c..5f7449a23f 100644 --- a/tcl/target/imx8m.cfg +++ b/tcl/target/imx8m.cfg @@ -38,7 +38,8 @@ for { set _core 0 } { $_core < $_cores } { incr _core } { -baseaddr [lindex $CTIBASE $_core] set _command "target create $_TARGETNAME.$_core aarch64 -dap $_CHIPNAME.dap \ - -dbgbase [lindex $DBGBASE $_core] -cti $_CTINAME.$_core" + -dbgbase [lindex $DBGBASE $_core] -cti $_CTINAME.$_core -coreid $_core \ + -rtos hwthread" if { $_core != 0 } { # non-boot core examination may fail --