tcl/target/rk3308.cfg: add defer-examine
only core0 is brought up by bootloader Change-Id: I1d6b5e6ba7498beadbf3805f4271f0197e411bd5 Signed-off-by: Jiri Kastner <cz172638@gmail.com> Reviewed-on: http://openocd.zylin.com/5980 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins Reviewed-by: Jonathan McDowell <noodles-openocd@earth.li>
This commit is contained in:
parent
ed73398eb0
commit
6090390a23
tcl/target
|
@ -28,7 +28,7 @@ swd newdap $_CHIPNAME cpu -expected-id $_DAP_TAPID -ignore-version
|
|||
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
|
||||
target create $_CHIPNAME.ahb mem_ap -dap $_CHIPNAME.dap -ap-num 0
|
||||
|
||||
# declare the 8 main application cores
|
||||
# declare the 4 main application cores
|
||||
set _TARGETNAME $_CHIPNAME.core
|
||||
set _smp_command ""
|
||||
|
||||
|
@ -53,6 +53,7 @@ for { set _core 0 } { $_core < $_cores } { incr _core 1 } {
|
|||
|
||||
if { $_core != 0 } {
|
||||
set _smp_command "$_smp_command ${_TARGETNAME}$_core"
|
||||
set _command "$_command -defer-examine"
|
||||
} else {
|
||||
# uncomment to use hardware threads pseudo rtos
|
||||
# set _command "$_command -rtos hwthread"
|
||||
|
|
Loading…
Reference in New Issue