2005-12-11 15:16:03 +03:00
|
|
|
/* $NetBSD: wsemulconf.c,v 1.7 2005/12/11 12:24:12 christos Exp $ */
|
1998-03-22 17:24:02 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Christopher G. Demetriou
|
|
|
|
* for the NetBSD Project.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2000-01-05 14:19:36 +03:00
|
|
|
#include <sys/cdefs.h>
|
2005-12-11 15:16:03 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: wsemulconf.c,v 1.7 2005/12/11 12:24:12 christos Exp $");
|
1998-03-22 17:24:02 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
|
Implement support to dynamically change wscons console and kernel colors.
Two new ioctls are added to the wsdisplay device, named WSDISPLAY_GMSGATTRS
and WSDISPLAY_SMSGATTRS, used to retrieve the actual values and set them,
respectively (the name, if you are wondering, comes from "message attributes").
A new emulop is added to the underlying display driver (only vga, for now)
which sets the new attribute for the whole screen, without having to clear
it. This is optional, which means that this also works with other drivers
that don't have this new operation.
Five new kernel options have been added, although only documented in
i386 kernels (for now):
- WSDISPLAY_CUSTOM_OUTPUT, which enables the ioctls described above to
change the colors dynamically from userland. This is enabled by default
in the GENERIC kernel (as well as others) but disabled on all INSTALL*
kernels (as this feature is useless there).
- WS_DEFAULT_COLATTR, WS_DEFAULT_MONOATTR, WS_DEFAULT_BG and WS_DEFAULT_FG,
which specify the default colors for the console at boot time. These have
the same meaning as the (already existing) WS_KERNEL_* variables.
wsconsctl is modified to add msg.default.{attrs,bg,fg} and
msg.kernel.{attrs,bg,fg} to the display part, so that colors can be changed
after boot.
Tested on NetBSD/i386 with vga (and vga in mono mode), and on NetBSD/mac68k.
No objections in tech-kern@.
2004-07-28 16:34:02 +04:00
|
|
|
#include <dev/wscons/wsconsio.h>
|
1998-03-22 17:24:02 +03:00
|
|
|
#include <dev/wscons/wsdisplayvar.h>
|
1998-06-15 21:10:37 +04:00
|
|
|
#include <dev/wscons/wsksymvar.h>
|
1998-04-17 04:17:27 +04:00
|
|
|
#include <dev/wscons/wsemulvar.h> /* pulls in opt_wsemul.h */
|
1998-03-22 17:24:02 +03:00
|
|
|
#include <dev/wscons/wscons_callbacks.h>
|
|
|
|
|
|
|
|
static const struct wsemul_ops *wsemul_conf[] = {
|
|
|
|
#ifdef WSEMUL_SUN
|
|
|
|
&wsemul_sun_ops,
|
|
|
|
#endif
|
1998-06-15 21:10:37 +04:00
|
|
|
#ifdef WSEMUL_VT100
|
|
|
|
&wsemul_vt100_ops,
|
|
|
|
#endif
|
1998-03-22 17:24:02 +03:00
|
|
|
#ifndef WSEMUL_NO_DUMB
|
|
|
|
&wsemul_dumb_ops,
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct wsemul_ops *
|
2001-10-13 19:56:15 +04:00
|
|
|
wsemul_pick(const char *name)
|
1998-03-22 17:24:02 +03:00
|
|
|
{
|
1998-06-15 21:10:37 +04:00
|
|
|
const struct wsemul_ops **ops;
|
1998-03-22 17:24:02 +03:00
|
|
|
|
|
|
|
if (name == NULL) {
|
|
|
|
/* default */
|
|
|
|
#ifdef WSEMUL_DEFAULT
|
|
|
|
name = WSEMUL_DEFAULT;
|
|
|
|
#else
|
|
|
|
return (wsemul_conf[0]);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1998-06-15 21:10:37 +04:00
|
|
|
for (ops = &wsemul_conf[0]; *ops != NULL; ops++)
|
|
|
|
if (strcmp(name, (*ops)->name) == 0)
|
1998-03-22 17:24:02 +03:00
|
|
|
break;
|
|
|
|
|
1998-06-15 21:10:37 +04:00
|
|
|
return (*ops);
|
1998-03-22 17:24:02 +03:00
|
|
|
}
|