diff options
author | 2006-06-06 00:01:49 +0000 | |
---|---|---|
committer | 2006-06-06 00:01:49 +0000 | |
commit | 5e25adcdaa50848d59aeca2cee908227f31ac4b9 (patch) | |
tree | 60125d84c7702ffd025988503fffeab9236425e3 /sys/dev/microcode/atmel | |
parent | Write the words of the mac address in reverse order to fix a MAC problem on (diff) | |
download | wireguard-openbsd-5e25adcdaa50848d59aeca2cee908227f31ac4b9.tar.xz wireguard-openbsd-5e25adcdaa50848d59aeca2cee908227f31ac4b9.zip |
System build pieces for armish arch.
Diffstat (limited to 'sys/dev/microcode/atmel')
-rw-r--r-- | sys/dev/microcode/atmel/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/dev/microcode/atmel/Makefile b/sys/dev/microcode/atmel/Makefile index abc899bc833..6b5fdbc0697 100644 --- a/sys/dev/microcode/atmel/Makefile +++ b/sys/dev/microcode/atmel/Makefile @@ -1,14 +1,15 @@ -# $OpenBSD: Makefile,v 1.11 2005/06/16 08:23:49 markus Exp $ +# $OpenBSD: Makefile,v 1.12 2006/06/06 00:01:50 drahn Exp $ NOPROG= NOMAN= # USB capable systems only -.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ - (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ - (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "cats") || \ - (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ - (${MACHINE} == "sgi") || (${MACHINE} == "zaurus") +.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "alpha") || \ + (${MACHINE} == "amd64") || (${MACHINE} == "armish") || \ + (${MACHINE} == "cats") || (${MACHINE} == "hppa") || \ + (${MACHINE} == "hppa64") || (${MACHINE} == "i386") || \ + (${MACHINE} == "sgi") || (${MACHINE} == "sparc64") || \ + (${MACHINE} == "zaurus") FIRM= atu-intersil-int atu-intersil-ext \ atu-rfmd-int atu-rfmd-ext \ |