From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [PATCH] openocd: new package for openocd-0.8.0 (host, target)
Date: Wed, 1 Oct 2014 12:29:34 +0200 [thread overview]
Message-ID: <20141001102934.GE16481@pengutronix.de> (raw)
In-Reply-To: <1412010731-18154-1-git-send-email-apr@cn-eng.de>
On Mon, Sep 29, 2014 at 07:12:11PM +0200, Andreas Pretzsch wrote:
> Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
> ---
> ...c-correct-test-for-USB_BLASTER_DRIVER-AM-.patch | 33 ++++
> ...e-correct-test-for-USB_BLASTER_DRIVER-AM-.patch | 20 +++
> patches/openocd-0.8.0/series | 4 +
> rules/host-openocd.in | 199 +++++++++++++++++++++
> rules/host-openocd.make | 76 ++++++++
> rules/openocd.in | 199 +++++++++++++++++++++
> rules/openocd.make | 96 ++++++++++
> 7 files changed, 627 insertions(+)
> create mode 100644 patches/openocd-0.8.0/0001-configure.ac-correct-test-for-USB_BLASTER_DRIVER-AM-.patch
> create mode 100644 patches/openocd-0.8.0/0002-configure-correct-test-for-USB_BLASTER_DRIVER-AM-.patch
> create mode 100644 patches/openocd-0.8.0/series
> create mode 100644 rules/host-openocd.in
> create mode 100644 rules/host-openocd.make
> create mode 100644 rules/openocd.in
> create mode 100644 rules/openocd.make
>
[...]
> diff --git a/rules/host-openocd.in b/rules/host-openocd.in
> new file mode 100644
> index 0000000..d8c4e7e
> --- /dev/null
> +++ b/rules/host-openocd.in
> @@ -0,0 +1,199 @@
> +## SECTION=hosttools
> +
> +menuconfig HOST_OPENOCD
> + tristate
> + prompt "OpenOCD "
> +
> + # libusb-1.x
> + select HOST_LIBUSB if HOST_OPENOCD_FTDI || HOST_OPENOCD_STLINK || HOST_OPENOCD_TI_ICDI || HOST_OPENOCD_ULINK || HOST_OPENOCD_USB_BLASTER_2
> + # libusb-1.x or libusb-0.1
> + select HOST_LIBUSB if HOST_OPENOCD_JLINK || HOST_OPENOCD_OSBDM || HOST_OPENOCD_OPENDOUS || HOST_OPENOCD_AICE
> + # libusb-0.1 ; no HOST_LIBUSB_COMPAT, so select HOST_LIBUSB and hope for the best
> + select HOST_LIBUSB if HOST_OPENOCD_VSLLINK || HOST_OPENOCD_USBPROG || HOST_OPENOCD_RLINK || HOST_OPENOCD_ARMJTAGEW
> + # libhidapi ; currently no package in ptxdist, so disable it
> + #select HOST_HIDAPI if HOST_OPENOCD_CMSIS_DAP
> + # libftdi1 or libftdi, with libftdi1 preferred ; currently no package in ptxdist, so disable it
> + #select HOST_LIBFTDI1 if HOST_OPENOCD_USB_BLASTER_LIBFTDI || HOST_OPENOCD_PRESTO_LIBFTDI || HOST_OPENOCD_OPENJTAG_FTDI
> +
> + help
> + The Open On-Chip Debugger (OpenOCD) provides debugging, in-system
> + programming and boundary-scan testing for embedded target devices.
> + It supports JTAG and SWD (direct or via dongle) to access targets.
> + Flash writing is supported for various internal and external types.
> + It is controlled with TCL scripts and can act as gdbserver.
I think we should drop host-openocd for now. I'm not familiar OpenOCD but
unless you need exactly the same version on the PC and the Target, I think
we can let the Desktop Linux Distribution provide it.
[...]
> diff --git a/rules/openocd.in b/rules/openocd.in
> new file mode 100644
> index 0000000..56384e7
> --- /dev/null
> +++ b/rules/openocd.in
> @@ -0,0 +1,199 @@
> +## SECTION=debug_tools
> +
> +menuconfig OPENOCD
> + tristate
> + prompt "OpenOCD "
> +
> + # libusb-1.x
> + select LIBUSB if OPENOCD_FTDI || OPENOCD_STLINK || OPENOCD_TI_ICDI || OPENOCD_ULINK || OPENOCD_USB_BLASTER_2
> + # libusb-1.x or libusb-0.1
> + select LIBUSB if OPENOCD_JLINK || OPENOCD_OSBDM || OPENOCD_OPENDOUS || OPENOCD_AICE
> + # libusb-0.1
> + select LIBUSB_COMPAT if OPENOCD_VSLLINK || OPENOCD_USBPROG || OPENOCD_RLINK || OPENOCD_ARMJTAGEW
> + # libhidapi ; currently no package in ptxdist, so disable it
> + #select HIDAPI if OPENOCD_CMSIS_DAP
> + # libftdi1 or libftdi, with libftdi1 preferred ; currently no package in ptxdist, so disable it
> + #select LIBFTDI1 if OPENOCD_USB_BLASTER_LIBFTDI || OPENOCD_PRESTO_LIBFTDI || OPENOCD_OPENJTAG_FTDI
drop this here.
> +
> + help
> + The Open On-Chip Debugger (OpenOCD) provides debugging, in-system
> + programming and boundary-scan testing for embedded target devices.
> + It supports JTAG and SWD (direct or via dongle) to access targets.
> + Flash writing is supported for various internal and external types.
> + It is controlled with TCL scripts and can act as gdbserver.
> +
> +if OPENOCD
> +
> +# ===== interface drivers =====
> +
> +config OPENOCD_DUMMY
> + bool
> + prompt "dummy port driver"
> +
> +# --- libusb-1.x based
> +
> +config OPENOCD_FTDI
> + bool
> + prompt "MPSSE mode of FTDI based devices"
> +
> +config OPENOCD_STLINK
> + bool
> + prompt "ST-Link JTAG Programmer"
> +
> +config OPENOCD_TI_ICDI
> + bool
> + prompt "TI ICDI JTAG Programmer"
> +
> +config OPENOCD_ULINK
> + bool
> + prompt "Keil ULINK JTAG Programmer"
> +
> +config OPENOCD_USB_BLASTER_2
> + bool
> + prompt "Altera USB-Blaster II Compatible"
> +
> +# --- libusb-1.x or libusb-0.1 based
> +
> +config OPENOCD_JLINK
> + bool
> + prompt "Segger J-Link JTAG Programmer"
> +
> +config OPENOCD_OSBDM
> + bool
> + prompt "OSBDM (JTAG only) Programmer"
> +
> +config OPENOCD_OPENDOUS
> + bool
> + prompt "eStick/opendous JTAG Programmer"
> +
> +config OPENOCD_AICE
> + bool
> + prompt "Andes JTAG Programmer"
> +
> +# --- libusb-0.1 based
> +
> +config OPENOCD_VSLLINK
> + bool
> + prompt "Versaloon-Link JTAG Programmer"
> +
> +config OPENOCD_USBPROG
> + bool
> + prompt "USBProg JTAG Programmer"
> +
> +config OPENOCD_RLINK
> + bool
> + prompt "Raisonance RLink JTAG Programmer"
> +
> +config OPENOCD_ARMJTAGEW
> + bool
> + prompt "Olimex ARM-JTAG-EW Programmer"
> +
> +# --- hidapi based
> +# currently no package in ptxdist, so disable it
> +#config OPENOCD_CMSIS_DAP
> +# bool
> +# prompt "CMSIS-DAP Compliant Debugger"
make a normal option but add:
# needs libhidapi
depends on BROKEN
> +
> +# --- various
> +
> +config OPENOCD_PARPORT
> + bool
> + prompt "pc parallel port driver"
> +
> +if OPENOCD_PARPORT
> + config OPENOCD_PARPORT_DISABLE_PARPORT_PPDEV
> + bool
> + prompt "Disable use of ppdev (/dev/parportN) (x86 only)"
> +
> + config OPENOCD_PARPORT_GIVEIO
> + bool
> + depends on OPENOCD_PARPORT
> + prompt "Enable use of giveio (CygWin only)"
> +endif
> +
> +config OPENOCD_JTAG_VPI
> + bool
> + prompt "JTAG VPI"
> +
> +config OPENOCD_USB_BLASTER_LIBFTDI
> + bool
> + prompt "Altera USB-Blaster (libftdi driver, opensource)"
> +
> +# no ftd2xx package in ptxdist, so disable it
> +#config OPENOCD_USB_BLASTER_FTD2XX
> +# bool
> +# prompt "Altera USB-Blaster (FTD2XX driver from ftdichip.com)"
> +
> +config OPENOCD_AMTJTAGACCEL
> + bool
> + prompt "Amontec JTAG-Accelerator driver"
> +
> +config OPENOCD_ZY1000
> + bool
> + prompt "ZY1000 interface"
> +
> +if OPENOCD_ZY1000
> + config OPENOCD_ZY1000_MASTER
> + bool
> + prompt "Use ZY1000 JTAG master registers"
> +endif
> +
> +config OPENOCD_IOUTIL
> + bool
> + prompt "ioutil functions - for standalone OpenOCD implementations"
> +
> +config OPENOCD_EP93XX
> + bool
> + prompt "EP93xx based SBCs"
> +
> +config OPENOCD_AT91RM9200
> + bool
> + prompt "AT91RM9200 based SBCs"
> +
> +config OPENOCD_BCM2835GPIO
> + bool
> + prompt "bitbanging on BCM2835 (as found in Raspberry Pi)"
> +
> +config OPENOCD_GW16012
> + bool
> + prompt "Gateworks GW16012 JTAG Programmer"
> +
> +config OPENOCD_PRESTO_LIBFTDI
> + bool
> + prompt "ASIX Presto Programmer using the libftdi driver"
> +
> +# no ftd2xx package in ptxdist, so disable it
> +#config OPENOCD_PRESTO_FTD2XX
> +# bool
> +# prompt "ASIX Presto Programmer using the FTD2XX driver"
same here
> +
> +# no ftd2xx package in ptxdist, so disable it
> +#config OPENOCD_OPENJTAG_FTD2XX
> +# bool
> +# prompt "OpenJTAG Programmer with ftd2xx driver"
and here
> +
> +config OPENOCD_OPENJTAG_FTDI
> + bool
> + prompt "OpenJTAG Programmer with ftdi driver"
> +
> +config OPENOCD_OOCD_TRACE
> + bool
> + prompt "prototype OpenOCD+trace ETM capture hardware"
> +
> +config OPENOCD_BUSPIRATE
> + bool
> + prompt "Buspirate"
> +
> +config OPENOCD_SYSFSGPIO
> + bool
> + prompt "programming driven via sysfs gpios"
> +
> +config OPENOCD_MINIDRIVER_DUMMY
> + bool
> + prompt "dummy minidriver"
> +
> +config OPENOCD_REMOTE_BITBANG
> + bool
> + prompt "Remote Bitbang jtag driver"
> +
> +endif
> diff --git a/rules/openocd.make b/rules/openocd.make
> new file mode 100644
> index 0000000..8301df3
> --- /dev/null
> +++ b/rules/openocd.make
> @@ -0,0 +1,96 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2014 by Andreas Pretzsch <apr@cn-eng.de>
> +#
> +# See CREDITS for details about who has contributed to this project.
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_OPENOCD) += openocd
> +
> +#
> +# Paths and names
> +#
> +OPENOCD_VERSION := 0.8.0
> +OPENOCD_MD5 := 6d83c34763a5f1d1ac7ad83c5a11f4fb
> +OPENOCD := openocd-$(OPENOCD_VERSION)
> +OPENOCD_SUFFIX := tar.bz2
> +OPENOCD_URL := http://downloads.sourceforge.net/project/openocd/openocd/$(OPENOCD_VERSION)/$(OPENOCD).$(OPENOCD_SUFFIX)
> +#OPENOCD_URL := $(call ptx/mirror, SF, openocd/$(OPENOCD).$(OPENOCD_SUFFIX))
> +OPENOCD_SOURCE := $(SRCDIR)/$(OPENOCD).$(OPENOCD_SUFFIX)
> +OPENOCD_DIR := $(BUILDDIR)/$(OPENOCD)
> +# License: OpenOCD: GPLv2+, jimtcl: BSD
> +OPENOCD_LICENSE := LGPLv2, BSD
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +OPENOCD_CONF_TOOL := autoconf
> +OPENOCD_CONF_OPT := $(CROSS_AUTOCONF_USR) \
> + --$(call ptx/endis, PTXCONF_OPENOCD_DUMMY)-dummy \
> + --$(call ptx/endis, PTXCONF_OPENOCD_FTDI)-ftdi \
> + --$(call ptx/endis, PTXCONF_OPENOCD_STLINK)-stlink \
> + --$(call ptx/endis, PTXCONF_OPENOCD_TI_ICDI)-ti-icdi \
> + --$(call ptx/endis, PTXCONF_OPENOCD_ULINK)-ulink \
> + --$(call ptx/endis, PTXCONF_OPENOCD_USB_BLASTER_2)-usb-blaster-2 \
> + --$(call ptx/endis, PTXCONF_OPENOCD_JLINK)-jlink \
> + --$(call ptx/endis, PTXCONF_OPENOCD_OSBDM)-osbdm \
> + --$(call ptx/endis, PTXCONF_OPENOCD_OPENDOUS)-opendous \
> + --$(call ptx/endis, PTXCONF_OPENOCD_AICE)-aice \
> + --$(call ptx/endis, PTXCONF_OPENOCD_VSLLINK)-vsllink \
> + --$(call ptx/endis, PTXCONF_OPENOCD_USBPROG)-usbprog \
> + --$(call ptx/endis, PTXCONF_OPENOCD_RLINK)-rlink \
> + --$(call ptx/endis, PTXCONF_OPENOCD_ARMJTAGEW)-armjtagew \
> + --$(call ptx/endis, PTXCONF_OPENOCD_CMSIS_DAP)-cmsis-dap \
> + --$(call ptx/endis, PTXCONF_OPENOCD_PARPORT)-parport \
> + --$(call ptx/disen, PTXCONF_OPENOCD_PARPORT_DISABLE_PARPORT_PPDEV)-parport-ppdev \
> + --$(call ptx/endis, PTXCONF_OPENOCD_PARPORT_GIVEIO)-parport-giveio \
> + --$(call ptx/endis, PTXCONF_OPENOCD_JTAG_VPI)-jtag_vpi \
> + --$(call ptx/endis, PTXCONF_OPENOCD_USB_BLASTER_LIBFTDI)-usb_blaster_libftdi \
> + --$(call ptx/endis, PTXCONF_OPENOCD_USB_BLASTER_FTD2XX)-usb_blaster_ftd2xx \
> + --$(call ptx/endis, PTXCONF_OPENOCD_AMTJTAGACCEL)-amtjtagaccel \
> + --$(call ptx/endis, PTXCONF_OPENOCD_ZY1000)-zy1000 \
> + --$(call ptx/endis, PTXCONF_OPENOCD_ZY1000_MASTER)-zy1000-master \
> + --$(call ptx/endis, PTXCONF_OPENOCD_IOUTIL)-ioutil \
> + --$(call ptx/endis, PTXCONF_OPENOCD_EP93XX)-ep93xx \
> + --$(call ptx/endis, PTXCONF_OPENOCD_AT91RM9200)-at91rm9200 \
> + --$(call ptx/endis, PTXCONF_OPENOCD_BCM2835GPIO)-bcm2835gpio \
> + --$(call ptx/endis, PTXCONF_OPENOCD_GW16012)-gw16012 \
> + --$(call ptx/endis, PTXCONF_OPENOCD_PRESTO_LIBFTDI)-presto_libftdi \
> + --$(call ptx/endis, PTXCONF_OPENOCD_PRESTO_FTD2XX)-presto_ftd2xx \
> + --$(call ptx/endis, PTXCONF_OPENOCD_OPENJTAG_FTD2XX)-openjtag_ftd2xx \
> + --$(call ptx/endis, PTXCONF_OPENOCD_OPENJTAG_FTDI)-openjtag_ftdi \
> + --$(call ptx/endis, PTXCONF_OPENOCD_OOCD_TRACE)-oocd_trace \
> + --$(call ptx/endis, PTXCONF_OPENOCD_BUSPIRATE)-buspirate \
> + --$(call ptx/endis, PTXCONF_OPENOCD_SYSFSGPIO)-sysfsgpio \
> + --$(call ptx/endis, PTXCONF_OPENOCD_MINIDRIVER_DUMMY)-minidriver-dummy \
> + --$(call ptx/endis, PTXCONF_OPENOCD_REMOTE_BITBANG)-remote-bitbang
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/openocd.targetinstall:
> + @$(call targetinfo)
> +
> + @$(call install_init, openocd)
> + @$(call install_fixup, openocd,PRIORITY,optional)
> + @$(call install_fixup, openocd,SECTION,base)
> + @$(call install_fixup, openocd,AUTHOR,"Andreas Pretzsch <apr@cn-eng.de>")
> + @$(call install_fixup, openocd,DESCRIPTION,"OpenOCD - Open On-Chip Debugger")
> +
> + @$(call install_copy, openocd, 0, 0, 0755, -, /usr/bin/openocd)
> +# @$(call install_tree, openocd, 0, 0, -, /usr/share/openocd/)
don't add comments like this either remove this or actually install any
useful files.
Michael
> +
> + @$(call install_finish, openocd)
> +
> + @$(call touch)
> +
> +
> +# vim: syntax=make
> --
> 2.1.0
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
next prev parent reply other threads:[~2014-10-01 10:29 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-29 17:12 Andreas Pretzsch
2014-09-29 17:27 ` Marc Kleine-Budde
2014-09-29 17:50 ` Andreas Pretzsch
2014-10-01 10:15 ` Michael Olbrich
2014-09-29 17:43 ` Andreas Pretzsch
2014-10-01 10:39 ` Michael Olbrich
2014-10-01 10:29 ` Michael Olbrich [this message]
2014-10-01 14:25 ` Andreas Pretzsch
2014-10-01 15:12 ` Michael Olbrich
2014-10-06 23:18 ` [ptxdist] [PATCH v2 1/2] openocd: new package for openocd-0.8.0 Andreas Pretzsch
2014-10-26 17:24 ` Andreas Pretzsch
2014-11-13 16:46 ` Michael Olbrich
2014-11-16 15:30 ` Andreas Pretzsch
2014-11-19 9:05 ` Michael Olbrich
2014-11-29 14:34 ` Andreas Pretzsch
2014-12-04 15:58 ` Michael Olbrich
2014-10-06 23:18 ` [ptxdist] [PATCH v2 2/2] host-openocd: " Andreas Pretzsch
2014-10-26 17:25 ` Andreas Pretzsch
2014-11-13 16:48 ` Michael Olbrich
2014-11-16 15:42 ` Andreas Pretzsch
2014-11-19 10:32 ` Michael Olbrich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20141001102934.GE16481@pengutronix.de \
--to=m.olbrich@pengutronix.de \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox