summaryrefslogtreecommitdiffstats
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-12-02 16:08:53 +0000
committerjkh <jkh@FreeBSD.org>1994-12-02 16:08:53 +0000
commit5a68a901c1fecf5ceb5378e5a0db9e62b13af990 (patch)
treeefeaa2e49214877afa9a5432bdb4e0e83520acd3 /etc/MAKEDEV
parentc33ccddbf101cdb388e83c82064f5a55d33cab17 (diff)
downloadFreeBSD-src-5a68a901c1fecf5ceb5378e5a0db9e62b13af990.zip
FreeBSD-src-5a68a901c1fecf5ceb5378e5a0db9e62b13af990.tar.gz
|From: Keith Walker <kew@timesink.spk.wa.us>
|Message-Id: <199412011713.JAA03374@timesink.spk.wa.us> |To: jkh@whisker.hubbard.ie |Subject: A little problem with MAKEDEV | |For a while now, MAKEDEV's been kinda neat: you create the cua* files, |and it deletes the tty* files; you create the tty* files and it |deletes the corresponding cua* files. K00l! :-) [Ed Note - I think this behavior was wrong, and this fix better].
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r--etc/MAKEDEV8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index cedafb7..cdcc412 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -71,7 +71,7 @@
# socksys iBCS2 socket system driver
# vat VAT compatibility audio driver (requires snd*)
#
-# $Id: MAKEDEV,v 1.48 1994/11/10 02:32:29 phk Exp $
+# $Id: MAKEDEV,v 1.49 1994/11/12 15:48:54 ache Exp $
#
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
@@ -422,7 +422,7 @@ tw*)
unit=`expr $i : 'tw\(.*\)'`
rm -f tw$unit
mknod tw$unit c 19 $unit
- chown root.wheel tw$unit
+ chown bin.bin tw$unit
;;
# hv 22-apr-93 use this to create the necessary video device for
@@ -466,7 +466,7 @@ speaker)
cua0?|cua?|ttyd?)
unit=`expr $i : '...[d0]*\(.\)$'`
- rm -f tty*0$unit cua*0$unit tty*d$unit
+ rm -f cua*0$unit tty*d$unit
case $unit in
[0-9]) m=$unit;;
a) m=10;; b) m=11;; c) m=12;; d) m=13;; e) m=14;; f) m=15;; g) m=16;;
@@ -487,7 +487,7 @@ cua0?|cua?|ttyd?)
tty0?|tty?)
unit=`expr $i : 'tty0*\(.\)$'`
- rm -f tty*0$unit cua*0$unit tty*d$unit
+ rm -f tty*0$unit
case $unit in
[0-9]) m=$unit;;
a) m=10;; b) m=11;; c) m=12;; d) m=13;; e) m=14;; f) m=15;; g) m=16;;
OpenPOWER on IntegriCloud