mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 06:42:51 +01:00
Make sysmouse device for syscons
This commit is contained in:
parent
30aaae26c6
commit
814c1905ad
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18180
11
etc/MAKEDEV
11
etc/MAKEDEV
@ -53,6 +53,7 @@
|
||||
# Pointing devices:
|
||||
# mse* Logitech and ATI Inport bus mouse
|
||||
# psm* PS/2 mouse
|
||||
# sysmouse Mousesystems mouse emulator for syscons
|
||||
#
|
||||
# Time devices:
|
||||
# refclock-* serial ports used by xntpd parse refclocks
|
||||
@ -100,7 +101,7 @@
|
||||
# labpc* National Instrument's Lab-PC and LAB-PC+
|
||||
# perfmon CPU performance-monitoring counters
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.119 1996/06/07 15:47:15 ache Exp $
|
||||
# $Id: MAKEDEV,v 1.120 1996/07/02 23:11:06 wosch Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
||||
@ -178,7 +179,7 @@ all)
|
||||
sh MAKEDEV cuaa0 cuaa1 cuaa2 cuaa3 # cdev, serial
|
||||
sh MAKEDEV lpt0 lpt1 lpt2 # cdev, printer
|
||||
sh MAKEDEV pty0 ch0 tw0 bpf0 # cdev
|
||||
sh MAKEDEV perfmon speaker pcaudio psm0 mse0 # cdev
|
||||
sh MAKEDEV perfmon speaker pcaudio psm0 mse0 sysmouse # cdev
|
||||
sh MAKEDEV vty4 # cdev
|
||||
sh MAKEDEV tun0 # cdev
|
||||
;;
|
||||
@ -1061,6 +1062,12 @@ tun?)
|
||||
chown uucp.dialer tun$unit
|
||||
;;
|
||||
|
||||
sysmouse)
|
||||
rm -f sysmouse
|
||||
mknod sysmouse c 12 128
|
||||
chmod 644 sysmouse
|
||||
;;
|
||||
|
||||
snp?)
|
||||
unit=`expr $i : 'snp\(.*\)'`
|
||||
rm -f snp$unit
|
||||
|
@ -53,6 +53,7 @@
|
||||
# Pointing devices:
|
||||
# mse* Logitech and ATI Inport bus mouse
|
||||
# psm* PS/2 mouse
|
||||
# sysmouse Mousesystems mouse emulator for syscons
|
||||
#
|
||||
# Time devices:
|
||||
# refclock-* serial ports used by xntpd parse refclocks
|
||||
@ -100,7 +101,7 @@
|
||||
# labpc* National Instrument's Lab-PC and LAB-PC+
|
||||
# perfmon CPU performance-monitoring counters
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.119 1996/06/07 15:47:15 ache Exp $
|
||||
# $Id: MAKEDEV,v 1.120 1996/07/02 23:11:06 wosch Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
||||
@ -178,7 +179,7 @@ all)
|
||||
sh MAKEDEV cuaa0 cuaa1 cuaa2 cuaa3 # cdev, serial
|
||||
sh MAKEDEV lpt0 lpt1 lpt2 # cdev, printer
|
||||
sh MAKEDEV pty0 ch0 tw0 bpf0 # cdev
|
||||
sh MAKEDEV perfmon speaker pcaudio psm0 mse0 # cdev
|
||||
sh MAKEDEV perfmon speaker pcaudio psm0 mse0 sysmouse # cdev
|
||||
sh MAKEDEV vty4 # cdev
|
||||
sh MAKEDEV tun0 # cdev
|
||||
;;
|
||||
@ -1061,6 +1062,12 @@ tun?)
|
||||
chown uucp.dialer tun$unit
|
||||
;;
|
||||
|
||||
sysmouse)
|
||||
rm -f sysmouse
|
||||
mknod sysmouse c 12 128
|
||||
chmod 644 sysmouse
|
||||
;;
|
||||
|
||||
snp?)
|
||||
unit=`expr $i : 'snp\(.*\)'`
|
||||
rm -f snp$unit
|
||||
|
Loading…
Reference in New Issue
Block a user