0
0
mirror of https://git.code.sf.net/p/openocd/code synced 2025-06-10 00:15:42 +00:00
Files
openocd/tcl/file_renaming.cfg
Marc Schink 84f6c561f3 tcl/board: Deprecate old nordic configuration files
Add the old configuration files to the 'file_renaming' list in order to
ensure backwards compatibility.

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

25 lines
956 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 {
board/nordic_nrf51822_mkit.cfg board/nordic/nrf51822-mkit.cfg
board/nordic_nrf51_dk.cfg board/nordic/nrf51-dk.cfg
board/nordic_nrf52_dk.cfg board/nordic/nrf52-dk.cfg
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
}