X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Fstartup.tcl;h=56fcbaa7516083ddbf4313636ccd7e8d911dd982;hb=ceb402dc9e903d2f3f6bc8125dfed9d82b83d2d1;hp=90f947dfd7e344024f8611735364a854fe85d60a;hpb=1dd462a6d613a48d518e925738b680b124055e61;p=openocd.git diff --git a/src/target/startup.tcl b/src/target/startup.tcl index 90f947dfd7..56fcbaa751 100644 --- a/src/target/startup.tcl +++ b/src/target/startup.tcl @@ -167,3 +167,14 @@ proc init_targets {} { # Additionally board config scripts can define a procedure init_board that will be executed after init and init_targets proc init_board {} { } + +# deprecated target name cmds +proc cortex_m3 args { + echo "DEPRECATED! use 'cortex_m' not 'cortex_m3'" + eval cortex_m $args +} + +proc cortex_a8 args { + echo "DEPRECATED! use 'cortex_a' not 'cortex_a8'" + eval cortex_a $args +}