diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2015-05-24 08:01:47 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2015-05-24 08:01:47 +0000 |
commit | e2c608feb80b76c2b9ccc7ed1344ef193716b42d (patch) | |
tree | 9bda74d1b496666d32c720e7a5957640f873fdb0 /sys/dev/microcode | |
parent | a73babbe75323f3b1bdd6629e17c8980720261b8 (diff) |
Add udl(4) and uvideo(4) to armv7 GENERIC. Tested on my sabre lite (imx).
enable udl firmware and COMPAT_RAW_KBD to make udl useable with X.
ok jsg@
Diffstat (limited to 'sys/dev/microcode')
-rw-r--r-- | sys/dev/microcode/udl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/microcode/udl/Makefile b/sys/dev/microcode/udl/Makefile index d8e315c853c..07e76d38254 100644 --- a/sys/dev/microcode/udl/Makefile +++ b/sys/dev/microcode/udl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2013/03/25 17:40:12 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2015/05/24 08:01:46 matthieu Exp $ NOPROG= NOMAN= @@ -7,6 +7,7 @@ CC=${HOSTCC} # USB capable systems only .if (${MACHINE_ARCH} == "powerpc" || \ ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ + ${MACHINE} == "armv7" || \ ${MACHINE} == "armish" || ${MACHINE} == "hppa" || \ ${MACHINE} == "hppa64" || ${MACHINE} == "i386" || \ ${MACHINE} == "landisk" || ${MACHINE} == "loongson" || \ |