diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-03-07 21:26:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-03-07 21:26:25 +0000 |
commit | 620991ed7c96f5cb2d5aba33e5780c9feae911d8 (patch) | |
tree | e33eb7e3e5e14a1383c9f42033684daa5b952db9 /sbin/wsconsctl/util.c | |
parent | 6132f545a66994e896da7919ab654a3a371d2fcd (diff) |
Minimalistic driver for the ImpactSR (Mardigras) video option found on older
Octane systems, as well as some Onyxes. With special permission to change a
systemwide .h file and add a manpage from deraadt@
Magic numbers and operation sequencing borrowed from Linux; tested on
Octane + ESI.
ok deraadt@
Diffstat (limited to 'sbin/wsconsctl/util.c')
-rw-r--r-- | sbin/wsconsctl/util.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/wsconsctl/util.c b/sbin/wsconsctl/util.c index b28740383b9..7ce30ffb77c 100644 --- a/sbin/wsconsctl/util.c +++ b/sbin/wsconsctl/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.48 2010/03/04 14:31:12 jsing Exp $ */ +/* $OpenBSD: util.c,v 1.49 2010/03/07 21:26:24 miod Exp $ */ /* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */ /*- @@ -154,7 +154,8 @@ static const struct nameint dpytype_tab[] = { { WSDISPLAY_TYPE_RADEONFB, "radeon" }, { WSDISPLAY_TYPE_SMFB, "smfb" }, { WSDISPLAY_TYPE_SISFB, "sisfb" }, - { WSDISPLAY_TYPE_ODYSSEY, "odyssey" } + { WSDISPLAY_TYPE_ODYSSEY, "odyssey" }, + { WSDISPLAY_TYPE_IMPACT, "impact" } }; static const struct nameint kbdenc_tab[] = { |