summaryrefslogtreecommitdiffstats
path: root/usr.sbin/gpioctl
diff options
context:
space:
mode:
authoraalm <aalm@openbsd.org>2013-10-27 03:06:25 +0000
committeraalm <aalm@openbsd.org>2013-10-27 03:06:25 +0000
commit4688c175f4e098fa7a6c5fce1c65d88420f5e36b (patch)
tree5c4bfb1bc0a1b6a28a3923be510bab5b45532c9b /usr.sbin/gpioctl
parentOnly use setsockopt(..SO_RTABLE..) if the -V flag is given to nc/telnet, (diff)
downloadwireguard-openbsd-4688c175f4e098fa7a6c5fce1c65d88420f5e36b.tar.xz
wireguard-openbsd-4688c175f4e098fa7a6c5fce1c65d88420f5e36b.zip
enable gpioctl(8) for armv7, and add associated devices on armv7/sunxi.
ok jasper@, patrick@, rapha@
Diffstat (limited to 'usr.sbin/gpioctl')
-rw-r--r--usr.sbin/gpioctl/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/gpioctl/Makefile b/usr.sbin/gpioctl/Makefile
index f8d39e28ad5..4a18c4a57a4 100644
--- a/usr.sbin/gpioctl/Makefile
+++ b/usr.sbin/gpioctl/Makefile
@@ -1,6 +1,7 @@
-# $OpenBSD: Makefile,v 1.6 2010/07/20 02:06:39 deraadt Exp $
+# $OpenBSD: Makefile,v 1.7 2013/10/27 03:06:25 aalm Exp $
-.if ${MACHINE} == "i386" || ${MACHINE} == "macppc" || ${MACHINE} == "amd64"
+.if (${MACHINE} == "i386" || ${MACHINE} == "macppc" || \
+ ${MACHINE} == "amd64" || ${MACHINE} == "armv7")
PROG= gpioctl
SRCS= gpioctl.c
@@ -17,6 +18,6 @@ NOPROG= yes
.endif
MAN= gpioctl.8
-MANSUBDIR=i386 macppc amd64
+MANSUBDIR=i386 macppc amd64 armv7
.include <bsd.prog.mk>