startup.tcl: remove commands already deprecated in v0.7.0
Some command were already marked as deprecated in release v0.7.0, more then 7 years ago, and for some of them the depredation date is even earlier. We can reasonably expect that in these 7 years any user of OpenOCD has already migrated to v0.7.0 or to some following intermediate build, thus has already updated any local/personal script to get rid of the deprecated message. Drop the commands already deprecated in v0.7.0. Change-Id: I81cdc415ab855ebf30980ef5199f9780c5d7f932 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/6085 Tested-by: jenkins Reviewed-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com> Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
@@ -179,12 +179,6 @@ proc using_hla {} {
|
||||
|
||||
#########
|
||||
|
||||
# Temporary migration aid. May be removed starting in January 2011.
|
||||
proc armv4_5 params {
|
||||
echo "DEPRECATED! use 'arm $params' not 'armv4_5 $params'"
|
||||
arm $params
|
||||
}
|
||||
|
||||
# Target/chain configuration scripts can either execute commands directly
|
||||
# or define a procedure which is executed once all configuration
|
||||
# scripts have completed.
|
||||
@@ -212,14 +206,3 @@ proc init_target_events {} {
|
||||
# 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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user