From c5fe2726909ed3f2d7aefedbc3532d039d2a2232 Mon Sep 17 00:00:00 2001 From: Brad Fritz Date: Fri, 30 Nov 2018 18:02:16 -0500 Subject: [PATCH] testing/openocd: enable bcm2835gpio for Raspberry Pi Follow-up to 958a8ae7e7 because the 0.10.0 [release notes] also request `--enable-bcm2835gpio` for builds that support Raspberry Pi: > 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 `--enable-bcm2835gpio` is ignored when building on non-ARM architectures. This configuration is also consistent with the [Debian packaging]. [release notes]: https://sourceforge.net/p/openocd/mailman/message/35570895/ [Debian packaging]: https://salsa.debian.org/electronics-team/openocd/blob/debian/0.10.0-4/debian/rules#L33 --- testing/openocd/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testing/openocd/APKBUILD b/testing/openocd/APKBUILD index 455f0371999..3042b8b7351 100644 --- a/testing/openocd/APKBUILD +++ b/testing/openocd/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Sören Tempel pkgname=openocd pkgver=0.10.0 -pkgrel=3 +pkgrel=4 pkgdesc="Free and Open On-Chip Debugging, In-System Programming and Boundary-Scan Testing" url="http://openocd.org/" arch="all" @@ -26,7 +26,8 @@ build() { --localstatedir=/var \ --disable-werror \ --enable-cmsis-dap \ - --enable-sysfsgpio + --enable-sysfsgpio \ + --enable-bcm2835gpio make }