|
From: <ge...@op...> - 2025-11-28 12:30:43
|
This is an automated email from Gerrit. "zapb <de...@za...>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9271 -- gerrit commit 789c2d056dc071076ddbb8ba58ede9e66881728b Author: Marc Schink <de...@za...> Date: Fri Nov 28 13:29:58 2025 +0100 tcl/target: Move GigaDevice configs into vendor directory Move the configuration files into a dedicated vendor folder as required by the developer guidelines. Change-Id: I9ed39e32b6281a9cb8510914690f3f7751b795c8 Signed-off-by: Marc Schink <de...@za...> diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index 89ed71b900..1fc54900a3 100644 --- a/src/helper/startup.tcl +++ b/src/helper/startup.tcl @@ -39,7 +39,7 @@ proc find {filename} { return $t } - foreach vendor {nordic ti sifive st} { + foreach vendor {nordic ti sifive st gigadevice} { # - path/to/a/certain/config_file # replaced with # - path/to/a/certain/${vendor}/config_file diff --git a/tcl/target/gd32e23x.cfg b/tcl/target/gigadevice/gd32e23x.cfg similarity index 100% rename from tcl/target/gd32e23x.cfg rename to tcl/target/gigadevice/gd32e23x.cfg diff --git a/tcl/target/gd32vf103.cfg b/tcl/target/gigadevice/gd32vf103.cfg similarity index 100% rename from tcl/target/gd32vf103.cfg rename to tcl/target/gigadevice/gd32vf103.cfg -- |