diff options
author | 2009-08-29 21:37:14 +0000 | |
---|---|---|
committer | 2009-08-29 21:37:14 +0000 | |
commit | 3f3610ebf8893ee2a4558348142cb7d9155c17af (patch) | |
tree | 383b58b329e6b341529398ce702d0bb72082529c | |
parent | Adjust for SBus support. (diff) | |
download | wireguard-openbsd-3f3610ebf8893ee2a4558348142cb7d9155c17af.tar.xz wireguard-openbsd-3f3610ebf8893ee2a4558348142cb7d9155c17af.zip |
Build Tigon firmware on sparc as well.
-rw-r--r-- | sys/dev/microcode/tigon/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/microcode/tigon/Makefile b/sys/dev/microcode/tigon/Makefile index badb9058f71..eafa333ba1f 100644 --- a/sys/dev/microcode/tigon/Makefile +++ b/sys/dev/microcode/tigon/Makefile @@ -1,14 +1,15 @@ -# $OpenBSD: Makefile,v 1.6 2007/08/01 21:42:43 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 2009/08/29 21:37:14 kettenis Exp $ NOPROG= NOMAN= CC=${HOSTCC} -# PCI capable systems only +# PCI & SBus capable systems only .if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ - (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "hppa") || \ - (${MACHINE} == "hppa64") || (${MACHINE} == "sgi") + (${MACHINE} == "sparc") || (${MACHINE_ARCH} == "powerpc") || \ + (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ + (${MACHINE} == "sgi") FIRM= tigon1 tigon2 |