3 if test "$#" != "2"; then
4 echo "Usage: sh `basename $0` {dir} {shelfaddress}" 1>&2
5 echo " n_partitions=16 sh `basename $0` {dir} {shelfaddress}" 1>&2
8 n_partitions=${n_partitions:-16}
12 maxslot=`echo $nslots 1 - p | dc`
17 minor=`echo $nslots \* $shelf \* $n_partitions | bc`
18 endp=`echo $n_partitions - 1 | bc`
19 for slot in `seq 0 $maxslot`; do
20 for part in `seq 0 $endp`; do
22 test "$part" != "0" && name=${name}p$part
24 mknod -m 0660 $dir/$name b $MAJOR $minor
26 minor=`expr $minor + 1`