aboutsummaryrefslogtreecommitdiff
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-08-23 22:19:53 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-08-23 22:19:53 +0000
commit81b83ee95da1d274977f69952e9e2f76aad000e0 (patch)
tree0a5e98a7827425bfeffb010f9757433104f6d405 /etc/MAKEDEV
parentd4b0f8e25a049ff735a34e0313b6ea17f579cac2 (diff)
Notes
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 48878b3f94d9..1a7b47a0780d 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