This is an automated email from Gerrit. "zapb <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9150
-- gerrit commit e7cd7498fabe2efecebc2a6ef2a8a3a13813c585 Author: Marc Schink <[email protected]> Date: Mon Aug 25 15:11:06 2025 +0000 tcl/interface: Remove flashlink config Remove the configuration file, a replacement is already available. Link the old filename to the new configuration file to ensure backwards compatibility. Change-Id: I77cbd62d805b1c9b9bb8f56a823c3f6476d1a5a9 Signed-off-by: Marc Schink <[email protected]> diff --git a/tcl/file_renaming.cfg b/tcl/file_renaming.cfg index 9b5fedbb1e..79932473ea 100644 --- a/tcl/file_renaming.cfg +++ b/tcl/file_renaming.cfg @@ -21,4 +21,5 @@ set _file_renaming { board/stm32mp15x_dk2.cfg board/st/stm32mp157f-dk2.cfg board/sifive-hifive1-revb.cfg board/sifive/hifive1-rev-b.cfg interface/chameleon.cfg interface/parport/chameleon.cfg + interface/flashlink.cfg interface/parport/flashlink.cfg } diff --git a/tcl/interface/flashlink.cfg b/tcl/interface/flashlink.cfg deleted file mode 100644 index d552c50a6b..0000000000 --- a/tcl/interface/flashlink.cfg +++ /dev/null @@ -1,18 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0-or-later - -# -# ST FlashLINK JTAG parallel cable -# -# http://www.st.com/internet/evalboard/product/94023.jsp -# http://www.st.com/stonline/products/literature/um/7889.pdf -# - -if { [info exists PARPORTADDR] } { - set _PARPORTADDR $PARPORTADDR -} else { - set _PARPORTADDR 0 -} - -adapter driver parport -parport port $_PARPORTADDR -parport cable flashlink --
