mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Grzeschik <mgr@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [PATCH v4 3/3] host-openocd: add initial support
Date: Fri, 21 Jun 2019 17:42:59 +0200	[thread overview]
Message-ID: <20190621154259.qztijj3gw2p2tmcf@pengutronix.de> (raw)
In-Reply-To: <20190621153629.16656-3-m.grzeschik@pengutronix.de>


[-- Attachment #1.1: Type: text/plain, Size: 4015 bytes --]

Sorry for this lonely mail and the prvious one.
My git-send-email foo has still to much magic.

Thanks

On Fri, Jun 21, 2019 at 05:36:29PM +0200, Michael Grzeschik wrote:
> Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
> ---
> v1 -> v2: - fixed indentation
>           - removed buildflags
> 
> v2 -> v3: - using repo.or.cz instead of sourceforge
>           - changed version string to be more descriptive
>           - moved patches to changed version dir
> 
> v3 -> v4: - moved version setup to openocd.make
>           - updated openocd version to
> 
>  rules/host-openocd.in   | 12 +++++++
>  rules/host-openocd.make | 76 +++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 88 insertions(+)
>  create mode 100644 rules/host-openocd.in
>  create mode 100644 rules/host-openocd.make
> 
> diff --git a/rules/host-openocd.in b/rules/host-openocd.in
> new file mode 100644
> index 000000000..8c863598e
> --- /dev/null
> +++ b/rules/host-openocd.in
> @@ -0,0 +1,12 @@
> +## SECTION=hosttools
> +
> +menuconfig HOST_OPENOCD
> +	tristate
> +	prompt "openocd"
> +	select HOST_LIBUSB
> +	select HOST_JIMTCL
> +	select HOST_LIBFTDI1
> +	help
> +	  The "Open On-Chip Debugger" provides JTAG/SWD access from GDB
> +	  (or directly with TCL scripts) to processors with ARM and MIPS
> +	  based cores.
> diff --git a/rules/host-openocd.make b/rules/host-openocd.make
> new file mode 100644
> index 000000000..bf99b3ee4
> --- /dev/null
> +++ b/rules/host-openocd.make
> @@ -0,0 +1,76 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2019 by Michael Grzeschik <mgr@pengutronix.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
> +#
> +HOST_PACKAGES-$(PTXCONF_HOST_OPENOCD) += host-openocd
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +#
> +# autoconf
> +#
> +HOST_OPENOCD_CONF_TOOL	:= autoconf
> +HOST_OPENOCD_CONF_ENV	:= \
> +	CCACHE=none
> +HOST_OPENOCD_CONF_OPT	:= \
> +	$(HOST_AUTOCONF) \
> +	--enable-shared \
> +	--disable-static \
> +	--disable-werror \
> +	--disable-internal-jimtcl \
> +	--disable-internal-libjaylink \
> +	--enable-dummy \
> +	--enable-ftdi \
> +	--enable-stlink \
> +	--disable-ti-icdi \
> +	--disable-ulink \
> +	--disable-usb-blaster-2 \
> +	--disable-ft232r \
> +	--disable-vsllink \
> +	--disable-xds110 \
> +	--disable-osbdm \
> +	--disable-opendous \
> +	--disable-aice \
> +	--disable-usbprog \
> +	--disable-rlink \
> +	--disable-armjtagew \
> +	--disable-cmsis-dap \
> +	--disable-kitprog \
> +	--disable-usb_blaster \
> +	--disable-presto\
> +	--disable-openjtag \
> +	--disable-jlink \
> +	--disable-parport \
> +	--disable-parport-ppdev \
> +	--disable-parport-giveio \
> +	--disable-jtag_vpi \
> +	--disable-amtjtagaccel \
> +	--disable-zy1000 \
> +	--disable-zy1000-master \
> +	--disable-ioutil \
> +	--disable-ep93xx \
> +	--disable-at91rm9200 \
> +	--disable-bcm2835gpio \
> +	--disable-imx_gpio \
> +	--disable-gw16012 \
> +	--disable-oocd_trace \
> +	--disable-buspirate \
> +	--disable-sysfsgpio \
> +	--disable-minidriver-dummy \
> +	--disable-target-64 \
> +	--disable-remote-bitbang \
> +	--disable-doxygen-pdf \
> +	--disable-doxygen-html
> +
> +# vim: syntax=make
> -- 
> 2.20.1
> 
> 
> _______________________________________________
> 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 |

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 91 bytes --]

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

      reply	other threads:[~2019-06-21 15:43 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-21 15:36 [ptxdist] [PATCH v4 1/3] libjaylink: add new package Michael Grzeschik
2019-06-21 15:36 ` [ptxdist] [PATCH v4 2/3] openocd: update rules Michael Grzeschik
2019-06-21 15:36 ` [ptxdist] [PATCH v4 3/3] host-openocd: add initial support Michael Grzeschik
2019-06-21 15:42   ` Michael Grzeschik [this message]

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=20190621154259.qztijj3gw2p2tmcf@pengutronix.de \
    --to=mgr@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