diff options
author | claurita <claudio.laurita@integrazionetotale.it> | 2014-12-14 20:02:17 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-02 16:30:15 +0100 |
commit | aa441aa84c38ad5319c4ff7fb27c84530e19c204 (patch) | |
tree | 63805002de6a2213c9bce0879fbf9d4d72124ea2 /package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch | |
parent | be529e22189b425edb3e6c23dea91f3c1d91a694 (diff) | |
download | buildroot-aa441aa84c38ad5319c4ff7fb27c84530e19c204.tar.gz buildroot-aa441aa84c38ad5319c4ff7fb27c84530e19c204.zip |
openocd: bump to version 0.8.0
This patch adds the management of (almost) all the config options of
openocd 0.8.0. A BR config variable is added for (almost) every
adapter known to openocd and all the dependencies are automatically
calculated from the chosen adapters, so only the necessary libraries
are built.
Note that CMSIS_DAP adapter requires hidapi (not libhid) and hidapi is
not actually included in buildroot, so it has been removed. Also
zy1000 adapters are actually broken in openocd and have been removed.
The host version of the package enables all the possible adapters and
the related libraries.
[Thomas:
- Slightly fixup the commit log.
- Rename the patches to the new patch naming convention.
- Update hash file using a contribution from Vincent Stehlé.
- Move the thread dependency from the OpenOCD option down to each
sub-option that actually needs it (when it needs libusb,
libusb-compat or libftdi). We keep only one comment, as we would
otherwise have to add too many repeatitive comments.
- Remove commented options.
- Add missing dependency on BR2_ARCH_HAS_ATOMICS when selecting
BR2_PACKAGE_LIBFTDI.
- Remove trailing white spaces.
- Pass -std=gnu99, needed to build with a basic toolchain.
- Write the OPENOCD_DEPENDENCIES and OPENOCD_CONF_OPTS conditions in
a more compact way.
- Adjust indentation for HOST_OPENOCD_CONF_OPTS.
- Reword the comment above HOST_OPENOCD_CONF_OPTS.]
Signed-off-by: Claudio Laurita <claudio.laurita@integrazionetotale.it>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch')
-rw-r--r-- | package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch b/package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch new file mode 100644 index 0000000000..5ec0552dd4 --- /dev/null +++ b/package/openocd/0002-Fix-jimtcl-auto-configuration-to-force-static-librar.patch @@ -0,0 +1,35 @@ +From 3bef159779c8fd39a070ec5c8191e18ba2efa79d Mon Sep 17 00:00:00 2001 +From: Claudio Laurita <claudio.laurita@integrazionetotale.it> +Date: Sun, 30 Nov 2014 18:21:58 +0100 +Subject: [PATCH 2/2] Fix jimtcl auto configuration to force static library + only. jimtcl ignores a --disable-shared option if a previous --enable-shared + option was given. This breaks openocd compilation if shared was the preferred + option in buildroot project. + +Signed-off-by: Claudio Laurita <claudio.laurita@integrazionetotale.it> +--- + jimtcl/auto.def | 8 ++------ + 1 file changed, 2 insertions(+), 6 deletions(-) + +diff --git a/jimtcl/auto.def b/jimtcl/auto.def +index ddb0c1e..929ade0 100644 +--- a/jimtcl/auto.def ++++ b/jimtcl/auto.def +@@ -181,12 +181,8 @@ if {[opt-bool references]} { + msg-result "Enabling references" + define JIM_REFERENCES + } +-if {[opt-bool shared with-jim-shared]} { +- msg-result "Building shared library" +-} else { +- msg-result "Building static library" +- define JIM_STATICLIB +-} ++msg-result "Building static library" ++define JIM_STATICLIB + define JIM_INSTALL [opt-bool install-jim] + + # Attributes of the extensions +-- +2.1.3 + |