diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2013-12-08 09:09:49 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2013-12-08 09:09:49 +0000 |
commit | e2f96aa67d8114b5257ce18a78180aa06e7a1e76 (patch) | |
tree | db9855de37147bc87d01ec5aa994e933273e9e27 /sys/dev/microcode/rum | |
parent | 675367018ae5dd103b7a3e95525139dc88dfd463 (diff) |
Enable rum(4) for armv7. Committing through it on pandaboard.
OK rapha@, jasper@.
Diffstat (limited to 'sys/dev/microcode/rum')
-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" || \ |