aboutsummaryrefslogtreecommitdiff
path: root/src/flash/startup.tcl
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-10-31 23:58:33 +0100
committerAntonio Borneo <borneo.antonio@gmail.com>2021-03-19 21:54:51 +0000
commit70ead8ff5d2af43aa79fbc14f80fe370d569df52 (patch)
tree8ed9dfe09e9883978d7ce7a5d60e750bf1e938a7 /src/flash/startup.tcl
parentd02e29dabaff43bf5fb2aa2ea7778ace2223545d (diff)
downloadriscv-openocd-70ead8ff5d2af43aa79fbc14f80fe370d569df52.zip
riscv-openocd-70ead8ff5d2af43aa79fbc14f80fe370d569df52.tar.gz
riscv-openocd-70ead8ff5d2af43aa79fbc14f80fe370d569df52.tar.bz2
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>
Diffstat (limited to 'src/flash/startup.tcl')
-rw-r--r--src/flash/startup.tcl11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/flash/startup.tcl b/src/flash/startup.tcl
index 280a059..7d9dbc7 100644
--- a/src/flash/startup.tcl
+++ b/src/flash/startup.tcl
@@ -119,14 +119,3 @@ proc stm32g4x args { eval stm32l4x $args }
proc stm32l5x args { eval stm32l4x $args }
proc stm32wbx args { eval stm32l4x $args }
proc stm32wlx args { eval stm32l4x $args }
-
-# ease migration to updated flash driver
-proc stm32x args {
- echo "DEPRECATED! use 'stm32f1x $args' not 'stm32x $args'"
- eval stm32f1x $args
-}
-
-proc stm32f2xxx args {
- echo "DEPRECATED! use 'stm32f2x $args' not 'stm32f2xxx $args'"
- eval stm32f2x $args
-}