aboutsummaryrefslogtreecommitdiff
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2002-04-21 19:47:06 +0000
committerWill Andrews <will@FreeBSD.org>2002-04-21 19:47:06 +0000
commit9c52e34e01675fa646761cfd2ec7687dfe30f62e (patch)
treebb45a38f413dce4a554e104411a7e83911e70011 /etc/MAKEDEV
parent035752ad0b49981b5d45887b8ff3f7fd68d7e9f8 (diff)
downloadsrc-9c52e34e01675fa646761cfd2ec7687dfe30f62e.tar.gz
src-9c52e34e01675fa646761cfd2ec7687dfe30f62e.zip
Add jogdial device to MAKEDEV. This device node was left out of the fixit
section since I believe it is unnecessary for fixit floppies. In any case, this part was forgotten from the original MFC due to the fact that -CURRENT uses make_dev() instead. And so, obviously this is not an MFC since it does not apply to -CURRENT. Submitted by: Yoshihiko SARUMARU <mistral@imasy.or.jp>
Notes
Notes: svn path=/stable/4/; revision=95226
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r--etc/MAKEDEV7
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index 4e260696005f..64501a18a645 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -60,6 +60,7 @@
# Pointing devices:
# mse* Logitech and ATI Inport bus mouse
# psm* PS/2 mouse
+# jogdial Sony VAIO Jogdial
# sysmouse Mousesystems mouse emulator for syscons
#
# Time devices:
@@ -317,7 +318,7 @@ all)
sh MAKEDEV ttyd0 ttyd1 ttyd2 ttyd3 # cdev, serial tty
sh MAKEDEV zs0 # big-Alpha serial tty
sh MAKEDEV kbd0 kbd1 # cdev, keyboard
- sh MAKEDEV mse0 psm0 sysmouse # cdev, mouse
+ sh MAKEDEV mse0 psm0 jogdial sysmouse # cdev, mouse
sh MAKEDEV pcaudio speaker snd0 # cdev, noise
sh MAKEDEV lpt0 lpt1 lpt2 # cdev, printer
sh MAKEDEV ppi0 ppi1 ppi2 # cdev, parallel port
@@ -1695,6 +1696,10 @@ sysmouse)
mknod consolectl c 12 255
;;
+jogdial)
+ mknod jogdial c 160 0
+ ;;
+
snp?)
unit=`expr $i : 'snp\(.*\)'`
mknod snp$unit c 53 `unit2minor $unit`