diff options
author | Søren Schmidt <sos@FreeBSD.org> | 1996-09-30 23:00:58 +0000 |
---|---|---|
committer | Søren Schmidt <sos@FreeBSD.org> | 1996-09-30 23:00:58 +0000 |
commit | a221620c79969e12fd47c27d3e5b86ab52046b0a (patch) | |
tree | eb82a1732e293d4edc84a1260901a012266e0872 /sys/alpha | |
parent | 42c703633d422d510ee2b84ee278c23c794ef170 (diff) | |
download | src-a221620c79969e12fd47c27d3e5b86ab52046b0a.tar.gz src-a221620c79969e12fd47c27d3e5b86ab52046b0a.zip |
Fix a couble of nasties regarding mouse pointer and different
resolutions.
Allow middle mouse button to be used for pasting.
Also added the beginnings of support for a splash page.
Notes
Notes:
svn path=/head/; revision=18587
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/include/console.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/alpha/include/console.h b/sys/alpha/include/console.h index 9fc33d3e75db..3e641a75f57f 100644 --- a/sys/alpha/include/console.h +++ b/sys/alpha/include/console.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: console.h,v 1.23 1996/06/25 08:54:34 sos Exp $ + * $Id: console.h,v 1.24 1996/09/21 14:57:54 bde Exp $ */ #ifndef _MACHINE_CONSOLE_H_ @@ -98,6 +98,7 @@ #define VT_AUTO 0 /* switching is automatic */ #define VT_PROCESS 1 /* switching controlled by prog */ +#define VT_KERNEL 255 /* switching controlled in kernel */ struct vt_mode { char mode; @@ -262,6 +263,7 @@ typedef struct ssaver ssaver_t; #define RBT 0x85 /* boot machine */ #define DBG 0x86 /* call debugger */ #define SUSP 0x87 /* suspend power (APM) */ +#define SPSC 0x88 /* toggle splash/text screen */ #define F(x) ((x)+F_FN-1) #define S(x) ((x)+F_SCR-1) |