mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-08-15 00:34:34 +10:00
Move the existing files for STM32MP13x and STM32MP15x in the folder "st". Rename the board files using the correct names. While there, add the missing URL to one of the boards. Change-Id: If8b92f55e3390ebc75df6a2ea09fcf798ea0b8cf Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8982 Tested-by: jenkins Reviewed-by: zapb <dev@zapb.de>
27 lines
1.0 KiB
INI
27 lines
1.0 KiB
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
|
|
board/stm32mp13x_dk.cfg board/st/stm32mp135f-dk.cfg
|
|
board/stm32mp15x_dk2.cfg board/st/stm32mp157f-dk2.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
|
|
}
|