From: openocd-gerrit <ope...@us...> - 2025-06-13 16:27:08
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 88aec4b49939a3f29fd3d9d5e8954e5bffeda8c9 (commit) from c77ba0cf57f0632ecbdca500516f449853e017f4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 88aec4b49939a3f29fd3d9d5e8954e5bffeda8c9 Author: Marc Schink <de...@za...> Date: Wed Oct 9 11:13:42 2024 +0200 adapter: Deprecate Amontec JTAG Accelerator driver The adapter is not available for years now and Amontec is not even a company anymore. The poor hardware availability and the lack of users prevents testing, maintenance and adaptations to future changes. Mark the adapter as deprecated as a first step to give potential users the opportunity to upgrade the hardware until the next OpenOCD release. Change-Id: Idd9fb75588246bc39e12ea17a71435ed77f0f50b Signed-off-by: Marc Schink <de...@za...> Reviewed-on: https://review.openocd.org/c/openocd/+/8349 Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins diff --git a/configure.ac b/configure.ac index 3e1d9a2ba..9561f2ba0 100644 --- a/configure.ac +++ b/configure.ac @@ -857,6 +857,12 @@ AS_IF([test "x$use_internal_jimtcl" = "xyes"], [ AC_MSG_WARN([Using the internal jimtcl is deprecated and will not be possible in the future.]) ]) +AS_IF([test "x$enable_amtjtagaccel" != "xno"], [ + echo + echo + AC_MSG_WARN([Amontec JTAG-Accelerator adapter is deprecated and support will be removed in the next release!]) +]) + echo echo echo OpenOCD configuration summary diff --git a/doc/openocd.texi b/doc/openocd.texi index bd6b3704a..04fa77bd4 100644 --- a/doc/openocd.texi +++ b/doc/openocd.texi @@ -2508,6 +2508,8 @@ enabled when OpenOCD is configured, in order to be made available at run time. @deffn {Interface Driver} {amt_jtagaccel} +@b{Note: This adapter is deprecated and support will be removed in the next release!} + Amontec Chameleon in its JTAG Accelerator configuration, connected to a PC's EPP mode parallel port. This defines some driver-specific commands: diff --git a/src/jtag/drivers/amt_jtagaccel.c b/src/jtag/drivers/amt_jtagaccel.c index 633c20413..d3f8bb61e 100644 --- a/src/jtag/drivers/amt_jtagaccel.c +++ b/src/jtag/drivers/amt_jtagaccel.c @@ -419,6 +419,8 @@ static int amt_jtagaccel_init(void) #endif uint8_t ar_status; + LOG_WARNING("This adapter is deprecated and support will be removed in the next release!"); + #if PARPORT_USE_PPDEV == 1 if (device_handle > 0) { LOG_ERROR("device is already opened"); ----------------------------------------------------------------------- Summary of changes: configure.ac | 6 ++++++ doc/openocd.texi | 2 ++ src/jtag/drivers/amt_jtagaccel.c | 2 ++ 3 files changed, 10 insertions(+) hooks/post-receive -- Main OpenOCD repository |