diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-15 21:14:04 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-15 21:36:14 +0200 |
commit | 958a8ae7e789dec3721f9f109225dc1f6b463770 (patch) | |
tree | b3436ce8816ed253b4ce13b344dee8764f534981 | |
parent | 03864d9fe8bd7bcf99aa4c32c7fcf0cd59254517 (diff) | |
download | aports-958a8ae7e789dec3721f9f109225dc1f6b463770.tar.bz2 aports-958a8ae7e789dec3721f9f109225dc1f6b463770.tar.xz |
testing/openocd: enable sysfsgpio configure option
The release notes for 0.10.0 explicitly request this [0]:
7. Please add --enable-sysfsgpio for all targets running Linux, the
kernel (esp. useful for SBCs), additionally for builds that support
RaspberryPi, please add --enable-bcm2835gpio
[0]: https://sourceforge.net/p/openocd/mailman/message/35570895/
-rw-r--r-- | testing/openocd/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/openocd/APKBUILD b/testing/openocd/APKBUILD index 3df354669c..455f037199 100644 --- a/testing/openocd/APKBUILD +++ b/testing/openocd/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net> pkgname=openocd pkgver=0.10.0 -pkgrel=2 +pkgrel=3 pkgdesc="Free and Open On-Chip Debugging, In-System Programming and Boundary-Scan Testing" url="http://openocd.org/" arch="all" @@ -25,7 +25,8 @@ build() { --mandir=/usr/share/man \ --localstatedir=/var \ --disable-werror \ - --enable-cmsis-dap + --enable-cmsis-dap \ + --enable-sysfsgpio make } |