1da177e4c3
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
31 lines
776 B
Bash
31 lines
776 B
Bash
#!/bin/bash
|
|
#
|
|
# mkd -- a script to create the device special files for the PARIDE subsystem
|
|
#
|
|
# block devices: pd (45), pcd (46), pf (47)
|
|
# character devices: pt (96), pg (97)
|
|
#
|
|
function mkdev {
|
|
mknod $1 $2 $3 $4 ; chmod 0660 $1 ; chown root:disk $1
|
|
}
|
|
#
|
|
function pd {
|
|
D=$( printf \\$( printf "x%03x" $[ $1 + 97 ] ) )
|
|
mkdev pd$D b 45 $[ $1 * 16 ]
|
|
for P in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
|
do mkdev pd$D$P b 45 $[ $1 * 16 + $P ]
|
|
done
|
|
}
|
|
#
|
|
cd /dev
|
|
#
|
|
for u in 0 1 2 3 ; do pd $u ; done
|
|
for u in 0 1 2 3 ; do mkdev pcd$u b 46 $u ; done
|
|
for u in 0 1 2 3 ; do mkdev pf$u b 47 $u ; done
|
|
for u in 0 1 2 3 ; do mkdev pt$u c 96 $u ; done
|
|
for u in 0 1 2 3 ; do mkdev npt$u c 96 $[ $u + 128 ] ; done
|
|
for u in 0 1 2 3 ; do mkdev pg$u c 97 $u ; done
|
|
#
|
|
# end of mkd
|
|
|