diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-05-09 19:23:08 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-05-09 19:23:08 +0000 |
commit | 12f3ea40e46deb8cb10e6c55ea6ad8d03dccdd85 (patch) | |
tree | 45bcb1bb48451b3d6c94686e0975928122e203ae /sys/arch/amd64/conf | |
parent | f887e7365a5d4a9e35498e5183fe4506316e3823 (diff) |
Initial console device driver for USB displays based on the DisplayLink
DL-120 / DL-160 graphic chips, using the wsdisplay(4) layer. Based on
the reversed engineered specifications of Florian Echtler. The driver
is disabled in GENERIC for now.
Thanks to claudio@ for donating me a device and to oga@ and miod@ for
giving me hints in the graphic and wsdisplay area.
OK deraadt
Diffstat (limited to 'sys/arch/amd64/conf')
-rw-r--r-- | sys/arch/amd64/conf/GENERIC | 5 | ||||
-rw-r--r-- | sys/arch/amd64/conf/files.amd64 | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sys/arch/amd64/conf/GENERIC b/sys/arch/amd64/conf/GENERIC index b883278c365..368c1ea0f55 100644 --- a/sys/arch/amd64/conf/GENERIC +++ b/sys/arch/amd64/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.262 2009/04/20 13:26:20 ariane Exp $ +# $OpenBSD: GENERIC,v 1.263 2009/05/09 19:23:07 mglocker Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -237,6 +237,9 @@ onewire* at uow? uvideo* at uhub? video* at uvideo? +#udl* at uhub? +#wsdisplay* at udl? + puc* at pci? # PCI "universal" communication device #puc* at cardbus? diff --git a/sys/arch/amd64/conf/files.amd64 b/sys/arch/amd64/conf/files.amd64 index 3a83fb1b39b..b3b74da2334 100644 --- a/sys/arch/amd64/conf/files.amd64 +++ b/sys/arch/amd64/conf/files.amd64 @@ -1,4 +1,4 @@ -# $OpenBSD: files.amd64,v 1.47 2009/05/07 11:30:16 ariane Exp $ +# $OpenBSD: files.amd64,v 1.48 2009/05/09 19:23:07 mglocker Exp $ maxpartitions 16 maxusers 2 16 128 @@ -59,6 +59,9 @@ file arch/amd64/isa/clock.c file arch/amd64/amd64/powernow-k8.c !small_kernel file arch/amd64/amd64/est.c !small_kernel +include "dev/rasops/files.rasops" +include "dev/wsfont/files.wsfont" + include "dev/mii/files.mii" include "scsi/files.scsi" |