summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormartin <martin@openbsd.org>2020-05-16 16:37:49 +0000
committermartin <martin@openbsd.org>2020-05-16 16:37:49 +0000
commitef71bfc281969398497c0413cd44e0521fe582fa (patch)
tree89a22358dcfcccb70131b3c48261226271dc13be
parentSeparate key flags and modifiers, log key flags, make the "xterm" flag (diff)
downloadwireguard-openbsd-ef71bfc281969398497c0413cd44e0521fe582fa.tar.xz
wireguard-openbsd-ef71bfc281969398497c0413cd44e0521fe582fa.zip
add bcmgpio to the gpio manpage and install gpioctl manpage on arm64 too
OK kettenis@
-rw-r--r--share/man/man4/gpio.45
-rw-r--r--usr.sbin/gpioctl/Makefile4
2 files changed, 5 insertions, 4 deletions
diff --git a/share/man/man4/gpio.4 b/share/man/man4/gpio.4
index 275896b2b69..4379457357e 100644
--- a/share/man/man4/gpio.4
+++ b/share/man/man4/gpio.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: gpio.4,v 1.26 2017/09/12 14:57:15 schwarze Exp $
+.\" $OpenBSD: gpio.4,v 1.27 2020/05/16 16:37:49 martin Exp $
.\"
.\" Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 12 2017 $
+.Dd $Mdocdate: May 16 2020 $
.Dt GPIO 4
.Os
.Sh NAME
@@ -22,6 +22,7 @@
.Nd General Purpose Input/Output
.Sh SYNOPSIS
.Cd "gpio* at ath?"
+.Cd "gpio* at bcmgpio?" Pq arm64, armv7
.Cd "gpio* at elansc?" Pq i386
.Cd "gpio* at glxpcib?" Pq i386
.Cd "gpio* at gscpcib?" Pq i386
diff --git a/usr.sbin/gpioctl/Makefile b/usr.sbin/gpioctl/Makefile
index c262224c4cb..a4f816b3878 100644
--- a/usr.sbin/gpioctl/Makefile
+++ b/usr.sbin/gpioctl/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.8 2017/01/23 03:12:25 jsg Exp $
+# $OpenBSD: Makefile,v 1.9 2020/05/16 16:37:50 martin Exp $
.if ${MACHINE} == "amd64" || ${MACHINE} == "arm64" || \
${MACHINE} == "armv7" || ${MACHINE} == "i386" || \
@@ -19,6 +19,6 @@ NOPROG= yes
.endif
MAN= gpioctl.8
-MANSUBDIR=i386 macppc amd64 armv7
+MANSUBDIR=i386 macppc amd64 armv7 arm64
.include <bsd.prog.mk>