Files
sw_openocd/tcl/file_renaming.cfg
Marc Schink 83c1546e77 tcl/target: Deprecate old nordic configuration files
Keep the old configuration files to ensure backwards compatibility.

Change-Id: Ia1d06b5a8a646d65f2cdc5a9415df3014a93b7d7
Signed-off-by: Marc Schink <dev@zapb.de>
Reviewed-on: https://review.openocd.org/c/openocd/+/8863
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
2025-06-07 09:08:28 +00:00

22 lines
785 B
INI

# SPDX-License-Identifier: GPL-2.0-or-later
# This file is used to remap configuration files that has been
# renamed, except simple renames that are taken care automatically
# like:
# .../file.cfg ==> .../${vendor}/file.cfg
# .../vendor-file.cfg ==> .../vendor/file.cfg
# .../vendor_file.cfg ==> .../vendor/file.cfg
#
# The formatting below is a TCL dict, so pairs of key-value
# in a simple TCL list, using for each line
# old_name new_name
# including in each name one of the prefix folder between
# board, chip, cpld, cpu, fpga, interface, target, test, tools
set _file_renaming {
target/nrf51.cfg target/nordic/nrf51.cfg
target/nrf52.cfg target/nordic/nrf52.cfg
target/nrf53.cfg target/nordic/nrf53.cfg
target/nrf91.cfg target/nordic/nrf91.cfg
}