diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-25 19:01:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-25 19:01:20 +0000 |
commit | c7866a5b25f02593194ade0e26348772eb9dd911 (patch) | |
tree | ced7950f277ea613c723558e1f990f2b76b33c36 /sbin | |
parent | df4cfe998081e84c31e7e2e2849ec7c18bd52e77 (diff) |
Rename the WSDISPLAY_TYPE_SUNFFB display type into a more generic name,
..._SUN24, since this only means 24 bit framebuffers with BGR encoding.
Also add a WSDISPLAY_TYPE_SUNBW for Sun monochrome framebuffers, to be used
by Xwsfb shortly.
Diffstat (limited to 'sbin')
-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 0db1556c752..f5ac93f6df8 100644 --- a/sbin/wsconsctl/util.c +++ b/sbin/wsconsctl/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.12 2002/06/07 20:56:38 drahn Exp $ */ +/* $OpenBSD: util.c,v 1.13 2002/07/25 19:01:15 miod Exp $ */ /* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */ /*- @@ -107,7 +107,8 @@ static const struct nameint dpytype_tab[] = { { WSDISPLAY_TYPE_SB_P9100, "p9100" }, { WSDISPLAY_TYPE_EGA, "ega" }, { WSDISPLAY_TYPE_DCPVR, "powervr" }, - { WSDISPLAY_TYPE_SUNFFB, "sunffb" } + { WSDISPLAY_TYPE_SUN24, "sun24" }, + { WSDISPLAY_TYPE_SUNBW, "sunbw" } }; static const struct nameint kbdenc_tab[] = { |