mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-28 12:07:10 +01:00
Add moused hooks (OFF by default)
This commit is contained in:
parent
3a18399d4f
commit
1db04ef8f1
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.14 1995/11/29 20:40:36 wollman Exp $
|
||||
# $Id: rc.i386,v 1.15 1996/01/31 15:02:54 mpp Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
@ -92,6 +92,12 @@ if [ "X${saver}" != X"NO" ] ; then
|
||||
modload -u -o /tmp/saver_mod -q /lkm/${saver}_saver_mod.o
|
||||
fi
|
||||
|
||||
# mouse daemon
|
||||
if [ "X${mousedtype}" != XNO ] ; then
|
||||
echo -n ' moused'
|
||||
moused ${mousedflags} -p ${mousedport} -t ${mousedtype}
|
||||
fi
|
||||
|
||||
echo '.'
|
||||
|
||||
# interrupts for /dev/random device
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $Id: rc.i386,v 1.14 1995/11/29 20:40:36 wollman Exp $
|
||||
# $Id: rc.i386,v 1.15 1996/01/31 15:02:54 mpp Exp $
|
||||
# Do i386 specific processing
|
||||
#
|
||||
|
||||
@ -92,6 +92,12 @@ if [ "X${saver}" != X"NO" ] ; then
|
||||
modload -u -o /tmp/saver_mod -q /lkm/${saver}_saver_mod.o
|
||||
fi
|
||||
|
||||
# mouse daemon
|
||||
if [ "X${mousedtype}" != XNO ] ; then
|
||||
echo -n ' moused'
|
||||
moused ${mousedflags} -p ${mousedport} -t ${mousedtype}
|
||||
fi
|
||||
|
||||
echo '.'
|
||||
|
||||
# interrupts for /dev/random device
|
||||
|
@ -4,7 +4,7 @@
|
||||
# This is sysconfig - a file full of useful variables that you can set
|
||||
# to change the default startup behavior of your system.
|
||||
#
|
||||
# $Id: sysconfig,v 1.45 1996/04/26 20:18:58 mpp Exp $
|
||||
# $Id: sysconfig,v 1.46 1996/05/13 02:21:16 jkh Exp $
|
||||
|
||||
######################### Start Of Local Configuration Section ###########
|
||||
|
||||
@ -46,6 +46,24 @@ blanktime=NO
|
||||
# Set to screen saver desired: blank, green, snake, star (or NO for none)
|
||||
saver=NO
|
||||
|
||||
# Set to
|
||||
# {microsoft|mousesystems|mmseries|logitech|busmouse|mouseman|ps/2|mmhittab}
|
||||
# to activate mouse cursor support (or NO for none)
|
||||
mousedtype=NO
|
||||
|
||||
############## Next block activated only if mousetype != NO ################
|
||||
|
||||
# Set to your mouse port (required)
|
||||
mousedport=/dev/cuaa0
|
||||
|
||||
# Moused options:
|
||||
# -s: 9600 baud mouse
|
||||
# -c: enable ChordMiddle
|
||||
# see moused usage info for complete options list
|
||||
mousedflags=""
|
||||
|
||||
######################### End of moused block ##############################
|
||||
|
||||
# General Russian setup for example:
|
||||
# (koi8-r keyboard with cp866 screen font mapped to koi8-r)
|
||||
#
|
||||
@ -59,6 +77,9 @@ saver=NO
|
||||
# font8x8=cp866-8x8
|
||||
# blanktime=600
|
||||
# saver=snake
|
||||
# mousedtype=mousesystems
|
||||
# mousedport=/dev/cuaa0
|
||||
# mousedflags=""
|
||||
|
||||
######################### End Of Syscons Section #######################
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user