From 69ac20a1556b06f837986cd12c4724970550c24f Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Fri, 29 Jul 2011 17:01:31 +0100 Subject: [PATCH] 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 --- tcl/target/stm32.cfg | 3 +++ tcl/target/stm32f2xxx.cfg | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 tcl/target/stm32.cfg create mode 100644 tcl/target/stm32f2xxx.cfg 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] -- 2.30.2