blob: 40932836bb800f5ef83ac6ddfea1f3086728f938 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#! /bin/sh
2
3if test "$#" != "2"; then
4 echo "Usage: sh `basename $0` {dir} {shelfaddress}" 1>&2
5 exit 1
6fi
7n_partitions=${n_partitions:-16}
8dir=$1
9shelf=$2
10MAJOR=152
11
12set -e
13
14minor=`echo 10 \* $shelf \* $n_partitions | bc`
15endp=`echo $n_partitions - 1 | bc`
16for slot in `seq 0 9`; do
17 for part in `seq 0 $endp`; do
18 name=e$shelf.$slot
19 test "$part" != "0" && name=${name}p$part
20 rm -f $dir/$name
21 mknod -m 0660 $dir/$name b $MAJOR $minor
22
23 minor=`expr $minor + 1`
24 done
25done