diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-26 02:21:55 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-05-26 02:21:55 +0000 |
commit | 514efe9b8e6cb6d88e92f50cd5c4f62a6e435a81 (patch) | |
tree | 904f5cf9dce1d556ab2af582dcbf7a7ecf2b4806 /sys/dev/microcode/atmel | |
parent | 12ec4bab555c7e3048a621c102e9fd33fef6b886 (diff) |
Build all the firmware for usb devices on armv7.
Diffstat (limited to 'sys/dev/microcode/atmel')
-rw-r--r-- | sys/dev/microcode/atmel/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/microcode/atmel/Makefile b/sys/dev/microcode/atmel/Makefile index d2e04c38861..be2df2486bc 100644 --- a/sys/dev/microcode/atmel/Makefile +++ b/sys/dev/microcode/atmel/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2013/03/25 17:40:12 deraadt Exp $ +# $OpenBSD: Makefile,v 1.19 2015/05/26 02:21:54 jsg 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" || \ |