diff options
author | 2013-12-08 09:09:47 +0000 | |
---|---|---|
committer | 2013-12-08 09:09:47 +0000 | |
commit | 124434c1109580d8867c8884d23178f9ff610ce1 (patch) | |
tree | ae80bb9968d9ae2ca6829f260449b1261e4aca1b /sys/dev/microcode | |
parent | add static back to the ttm functions (diff) | |
download | wireguard-openbsd-124434c1109580d8867c8884d23178f9ff610ce1.tar.xz wireguard-openbsd-124434c1109580d8867c8884d23178f9ff610ce1.zip |
Enable rum(4) for armv7. Committing through it on pandaboard.
OK rapha@, jasper@.
Diffstat (limited to 'sys/dev/microcode')
-rw-r--r-- | sys/dev/microcode/rum/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/microcode/rum/Makefile b/sys/dev/microcode/rum/Makefile index 93e52e9cfad..8f4cc11287e 100644 --- a/sys/dev/microcode/rum/Makefile +++ b/sys/dev/microcode/rum/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2013/03/25 17:40:12 deraadt Exp $ +# $OpenBSD: Makefile,v 1.12 2013/12/08 09:09:48 martynas Exp $ NOPROG= NOMAN= @@ -7,7 +7,8 @@ CC=${HOSTCC} # USB capable systems only .if (${MACHINE_ARCH} == "powerpc" || \ ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ - ${MACHINE} == "armish" || ${MACHINE} == "hppa" || \ + ${MACHINE} == "armish" || ${MACHINE} == "armv7" || \ + ${MACHINE} == "hppa" || \ ${MACHINE} == "hppa64" || ${MACHINE} == "i386" || \ ${MACHINE} == "landisk" || ${MACHINE} == "loongson" || \ ${MACHINE} == "sgi" || \ |