Date: Sun, 14 Jul 2024 20:30:09 GMT From: Joel Bodenmann <jbo@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 63f1ac9a402f - main - devel/openocd: Add option for remote-bitbang driver Message-ID: <202407142030.46EKU9sq019828@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbo: URL: https://cgit.FreeBSD.org/ports/commit/?id=63f1ac9a402f267ee416f5209e07d8133dd1226a commit 63f1ac9a402f267ee416f5209e07d8133dd1226a Author: Tiago Gasiba <tiago.gasiba@gmai.com> AuthorDate: 2024-07-12 21:53:41 +0000 Commit: Joel Bodenmann <jbo@FreeBSD.org> CommitDate: 2024-07-14 20:29:39 +0000 devel/openocd: Add option for remote-bitbang driver PR: 280250 Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D45975 --- devel/openocd/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/devel/openocd/Makefile b/devel/openocd/Makefile index 76b3874dbf24..f19f6b0540d4 100644 --- a/devel/openocd/Makefile +++ b/devel/openocd/Makefile @@ -1,6 +1,6 @@ PORTNAME= openocd DISTVERSION= 0.12.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= SF @@ -32,14 +32,15 @@ INFO= openocd # Note: Some adapters are not supported or do not currently work on FreeBSD. # These have been consciously left out of this port entirely. -OPTIONS_DEFAULT= JIMTCL_INTERNAL LIBUSB LIBHIDAPI LIBFTDI SERIAL +OPTIONS_DEFAULT= BITBANG_REMOTE JIMTCL_INTERNAL LIBUSB LIBHIDAPI LIBFTDI SERIAL OPTIONS_GROUP= DEBUG ADAPTERS -OPTIONS_GROUP_ADAPTERS= LIBUSB LIBHIDAPI LIBFTDI SERIAL PARPORT +OPTIONS_GROUP_ADAPTERS= BITBANG_REMOTE LIBUSB LIBHIDAPI LIBFTDI SERIAL PARPORT OPTIONS_GROUP_DEBUG= VERBOSE_JTAGIO VERBOSE_USBIO VERBOSE_USBCOMM OPTIONS_SINGLE= JIMTCL OPTIONS_SINGLE_JIMTCL= JIMTCL_INTERNAL JIMTCL_EXTERNAL ADAPTERS_DESC= Hardware adapters/programmers/debuggers support +BITBANG_REMOTE_DESC= Remote bitbang driver JIMTCL_DESC= Jim Tcl interpreter JIMTCL_EXTERNAL_DESC= External JIMTCL_INTERNAL_DESC= Internal @@ -52,6 +53,9 @@ VERBOSE_JTAGIO_DESC= Enable verbose JTAG I/O messages VERBOSE_USBCOMM_DESC= Enable verbose USB communication messages VERBOSE_USBIO_DESC= Enable verbose USB I/O messages +# Remote bitbang driver +BITBANG_REMOTE_CONFIGURE_ENABLE= remote-bitbang + # Internal (built-in) or external Jim Tcl interpreter JIMTCL_EXTERNAL_LIB_DEPENDS= libjim.so:lang/jimtcl JIMTCL_EXTERNAL_USES= localbase:ldflags
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202407142030.46EKU9sq019828>