diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-09 19:24:34 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-09 19:24:34 +0000 |
commit | d41ee9d1a93ca6c448de5fa728de1c04a36059eb (patch) | |
tree | 4aa050871e05c2e15f070902f79d01ef83a81519 | |
parent | cc4f8f3a7daa44b58ca76bee66bf8c1d1fbf2772 (diff) |
Build ral firmware on loongson (for Gdium).
-rw-r--r-- | sys/dev/microcode/ral/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/microcode/ral/Makefile b/sys/dev/microcode/ral/Makefile index ca19d48d140..59c9f9d5de4 100644 --- a/sys/dev/microcode/ral/Makefile +++ b/sys/dev/microcode/ral/Makefile @@ -1,15 +1,15 @@ -# $OpenBSD: Makefile,v 1.7 2008/03/06 09:11:57 deraadt Exp $ +# $OpenBSD: Makefile,v 1.8 2010/02/09 19:24:33 miod Exp $ NOPROG= NOMAN= CC=${HOSTCC} # PCI capable systems only -.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "alpha") || \ - (${MACHINE} == "amd64") || (${MACHINE} == "armish") || \ - (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ - (${MACHINE} == "i386") || (${MACHINE} == "sgi") || \ - (${MACHINE} == "sparc64") +.if (${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ + ${MACHINE} == "armish" || ${MACHINE} == "hppa" || \ + ${MACHINE} == "hppa64" || ${MACHINE} == "i386" || \ + ${MACHINE} == "loongson" || ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE} == "sgi" || ${MACHINE} == "sparc64") FIRM= ral-rt2561 ral-rt2561s ral-rt2661 ral-rt2860 |