diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-03-03 06:09:26 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-03-03 06:09:26 +0000 |
commit | c40b45c96658097480edadc4cc0b4faa3a63d6e9 (patch) | |
tree | 6faff405aca9ac37acee915ffe561bc355ce0865 /etc | |
parent | 532769f16fef567ec30ad8cab88f2093594f65c0 (diff) |
Reorder to prevent wskbd*) from matching "wskbd" when wskbd) also exists.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.powerpc/MAKEDEV | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/etc/etc.powerpc/MAKEDEV b/etc/etc.powerpc/MAKEDEV index d97309dae94..d54825cb4ff 100644 --- a/etc/etc.powerpc/MAKEDEV +++ b/etc/etc.powerpc/MAKEDEV @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: MAKEDEV,v 1.39 2001/02/13 14:21:33 drahn Exp $ +# $OpenBSD: MAKEDEV,v 1.40 2001/03/03 06:09:25 drahn Exp $ # # Copyright (c) 1990 The Regents of the University of California. # All rights reserved. @@ -574,6 +574,14 @@ wscons) sh $this ttyCcfg sh $this wsmux ;; +wsmux|wsmouse|wskbd) + rm -f wsmouse wskbd + mknod wsmouse c 70 0 + mknod wskbd c 70 1 + chown root.wheel wsmouse wskbd + chmod 600 wsmouse wskbd + ;; + wskbd*) unit=${i##*[a-z]} rm -f wskbd${unit} @@ -591,14 +599,6 @@ wsmouse*) chown root.wheel wsmouse${unit} ;; -wsmux|wsmouse|wskbd) - rm -f wsmouse wskbd - mknod wsmouse c 69 0 - mknod wskbd c 69 1 - chown root.wheel wsmouse wskbd - chmod 600 wsmouse wskbd - ;; - xfs*) rm -f xfs$unit mknod xfs$unit c 51 $unit |