From: Spencer Oliver Date: Fri, 29 Jul 2011 16:01:31 +0000 (+0100) Subject: cfg: support calling legacy stm32 scripts X-Git-Tag: v0.5.0~5 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=69ac20a1556b06f837986cd12c4724970550c24f cfg: support calling legacy stm32 scripts For the time being we support the old stm32 script names - this will be removed before the next release cycle. Signed-off-by: Spencer Oliver --- diff --git a/tcl/target/stm32.cfg b/tcl/target/stm32.cfg new file mode 100644 index 0000000000..217b79d962 --- /dev/null +++ b/tcl/target/stm32.cfg @@ -0,0 +1,3 @@ +# deprecated cfg file +echo "DEPRECATED! use script 'target/stm32f1x.cfg' not 'target/stm32.cfg'" +source [find target/stm32f1x.cfg] diff --git a/tcl/target/stm32f2xxx.cfg b/tcl/target/stm32f2xxx.cfg new file mode 100644 index 0000000000..ab5b1a4eaa --- /dev/null +++ b/tcl/target/stm32f2xxx.cfg @@ -0,0 +1,3 @@ +# deprecated cfg file +echo "DEPRECATED! use script 'target/stm32f2x.cfg' not 'target/stm32f2xxx.cfg'" +source [find target/stm32f2x.cfg]