From 91c4c83f44760f323f3bcab44c89ac59b4ed74c7 Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Mon, 26 Oct 2020 17:58:33 +0100 Subject: [PATCH] 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 Reviewed-on: http://openocd.zylin.com/5888 Reviewed-by: Tomas Vanek Tested-by: jenkins --- tcl/board/eir.cfg | 2 +- tcl/board/olimex_sam7_ex256.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tcl/board/eir.cfg b/tcl/board/eir.cfg index 422db0d88f..67758b81e1 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 426ead6aa9..08ed4c17ef 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] -- 2.30.2