From f36ab02a80d077247870a02c9558e32b18e45037 Mon Sep 17 00:00:00 2001 From: Marc Schink Date: Fri, 28 Nov 2025 13:29:58 +0100 Subject: [PATCH] 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 Reviewed-on: https://review.openocd.org/c/openocd/+/9271 Tested-by: jenkins Reviewed-by: Antonio Borneo --- src/helper/startup.tcl | 2 +- tcl/target/{ => gigadevice}/gd32e23x.cfg | 0 tcl/target/{ => gigadevice}/gd32vf103.cfg | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename tcl/target/{ => gigadevice}/gd32e23x.cfg (100%) rename tcl/target/{ => gigadevice}/gd32vf103.cfg (100%) diff --git a/src/helper/startup.tcl b/src/helper/startup.tcl index be01d71b3..d5926491c 100644 --- a/src/helper/startup.tcl +++ b/src/helper/startup.tcl @@ -47,7 +47,7 @@ proc find {filename} { return $t } - foreach vendor {nordic ti sifive st} { + foreach vendor {gigadevice nordic sifive st ti} { # - path/to/a/certain/config_file # replaced either 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