diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-28 22:32:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-28 22:32:51 +0000 |
commit | 4ccce68d77f7cc1e920b529cc6b1904a5fab6297 (patch) | |
tree | 28709b46ea6e37ff5aed10426e19a2eccf5592f5 /sbin/wsconsctl | |
parent | f93640471000b8e53078d9db924d309145496368 (diff) |
Minimal frame buffer driver for the SiS 315 found on Lemote Fuloong systems.
Currently unable to change video modes or provide any form of acceleration,
so you are stuck in a 640x400x8 mode, but at least people scared of serial
consoles will get a chance to use their Fuloongs now.
Tested by otto@ (early developments) and jasper@ (final version)
Diffstat (limited to 'sbin/wsconsctl')
-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 a7c055c98b0..3e1b90c5fd5 100644 --- a/sbin/wsconsctl/util.c +++ b/sbin/wsconsctl/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.46 2009/12/25 22:02:46 miod Exp $ */ +/* $OpenBSD: util.c,v 1.47 2010/02/28 22:32:48 miod Exp $ */ /* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */ /*- @@ -152,7 +152,8 @@ static const struct nameint dpytype_tab[] = { { WSDISPLAY_TYPE_MACHFB, "mach64" }, { WSDISPLAY_TYPE_GFXP, "gfxp" }, { WSDISPLAY_TYPE_RADEONFB, "radeon" }, - { WSDISPLAY_TYPE_SMFB, "smfb" } + { WSDISPLAY_TYPE_SMFB, "smfb" }, + { WSDISPLAY_TYPE_SISFB, "sisfb" } }; static const struct nameint kbdenc_tab[] = { |