summaryrefslogtreecommitdiffstats
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authordd <dd@FreeBSD.org>2001-08-23 22:19:53 +0000
committerdd <dd@FreeBSD.org>2001-08-23 22:19:53 +0000
commit3700e539272561c4199cf4315fd3c8d20e75f1f5 (patch)
tree0a5e98a7827425bfeffb010f9757433104f6d405 /etc/MAKEDEV
parent76d92ac573e8680fed3185d1b950bddba0295313 (diff)
downloadFreeBSD-src-3700e539272561c4199cf4315fd3c8d20e75f1f5.zip
FreeBSD-src-3700e539272561c4199cf4315fd3c8d20e75f1f5.tar.gz
$units is the canonical name for the number of units to create; use it.
PR: 29971 Submitted by: Joseph Mallett <jmallett@xMach.org>
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r--etc/MAKEDEV20
1 files changed, 10 insertions, 10 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index 48878b3..1a7b47a 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -1092,9 +1092,9 @@ nmdm*)
;;
bpf*)
- nbpf=`expr $i : 'bpf\(.*\)$'`
+ units=`expr $i : 'bpf\(.*\)$'`
unit=0
- while [ $unit -le $nbpf ]; do
+ while [ $unit -le $units ]; do
mknod bpf$unit c 23 `unit2minor $unit`
unit=$(($unit + 1))
done
@@ -1177,9 +1177,9 @@ ttym?)
# the manual that comes with the system.
ttyA*)
major=68
- nports=`expr $i : 'ttyA\(.*\)$'`
+ units=`expr $i : 'ttyA\(.*\)$'`
port=1
- while [ $port -le $nports ]; do
+ while [ $port -le $units ]; do
minor=$(expr $port - 1)
name=$(printf %02d $port)
mknod ttyA$name c $major $minor
@@ -1194,9 +1194,9 @@ ttyA*)
cuaA*)
umask 7
major=68
- nports=`expr $i : 'cuaA\(.*\)$'`
+ units=`expr $i : 'cuaA\(.*\)$'`
port=1
- while [ $port -le $nports ]; do
+ while [ $port -le $units ]; do
minor=$(expr $port - 1)
name=$(printf %02d $port)
mknod cuaA$name c $major `expr $minor + 128` uucp:dialer
@@ -1590,18 +1590,18 @@ bktr?)
;;
tun*)
- ntun=`expr $i : 'tun\(.*\)$'`
+ units=`expr $i : 'tun\(.*\)$'`
unit=0
- while [ $unit -le $ntun ]; do
+ while [ $unit -le $units ]; do
mknod tun$unit c 52 `unit2minor $unit`
unit=$(($unit + 1))
done
;;
tap*)
- ntap=`expr $i : 'tap\(.*\)$'`
+ units=`expr $i : 'tap\(.*\)$'`
unit=0
- while [ $unit -le $ntap ]; do
+ while [ $unit -le $units ]; do
mknod tap$unit c 149 `unit2minor $unit` root:network
unit=$(($unit + 1))
done
OpenPOWER on IntegriCloud