aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-10-26 17:58:33 +0100
committerAntonio Borneo <borneo.antonio@gmail.com>2020-10-30 22:03:14 +0000
commit91c4c83f44760f323f3bcab44c89ac59b4ed74c7 (patch)
tree9e85bbec98ccd65aa77b68747589166877faa360
parent962697823e6065094aa7b925fa09e08456afde28 (diff)
downloadriscv-openocd-91c4c83f44760f323f3bcab44c89ac59b4ed74c7.zip
riscv-openocd-91c4c83f44760f323f3bcab44c89ac59b4ed74c7.tar.gz
riscv-openocd-91c4c83f44760f323f3bcab44c89ac59b4ed74c7.tar.bz2
tcl/board: fix changed target config filenames
In commit a1ce28b118e7 ("rename some target scripts to be consistent with the rest") the following renames was applied, but the old names are still referenced: tcl/target/{sam7se512.cfg => at91sam7se512.cfg} tcl/target/{sam7x256.cfg => at91sam7x256.cfg} Fix the board files to use to correct target config filename. Change-Id: I7698aa0da7db95c2bd9ba7ab8c260905a975c857 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5888 Reviewed-by: Tomas Vanek <vanekt@fbl.cz> Tested-by: jenkins
-rw-r--r--tcl/board/eir.cfg2
-rw-r--r--tcl/board/olimex_sam7_ex256.cfg2
2 files changed, 2 insertions, 2 deletions
diff --git a/tcl/board/eir.cfg b/tcl/board/eir.cfg
index 422db0d..67758b8 100644
--- a/tcl/board/eir.cfg
+++ b/tcl/board/eir.cfg
@@ -1,7 +1,7 @@
# Elector Internet Radio board
# http://www.ethernut.de/en/hardware/eir/index.html
-source [find target/sam7se512.cfg]
+source [find target/at91sam7se512.cfg]
$_TARGETNAME configure -event reset-init {
# WDT_MR, disable watchdog
diff --git a/tcl/board/olimex_sam7_ex256.cfg b/tcl/board/olimex_sam7_ex256.cfg
index 426ead6..08ed4c1 100644
--- a/tcl/board/olimex_sam7_ex256.cfg
+++ b/tcl/board/olimex_sam7_ex256.cfg
@@ -1,3 +1,3 @@
# Olimex SAM7-EX256 has a single Atmel at91sam7ex256 on it.
-source [find target/sam7x256.cfg]
+source [find target/at91sam7x256.cfg]