diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-14 15:41:27 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-14 15:41:27 +0000 |
commit | 608c5080a0beb136d4774f197f26ffe86af9af29 (patch) | |
tree | ec8f76f9df3daccaadc63d18fbc57dfb21a6e398 /etc/etc.atari | |
parent | d64d6ea66acb951531c0a552d6ab3876ed593580 (diff) |
Make svnd nodes too, please test this on your port
Diffstat (limited to 'etc/etc.atari')
-rw-r--r-- | etc/etc.atari/MAKEDEV | 50 |
1 files changed, 48 insertions, 2 deletions
diff --git a/etc/etc.atari/MAKEDEV b/etc/etc.atari/MAKEDEV index d5ffa3983d1..f029ee64d65 100644 --- a/etc/etc.atari/MAKEDEV +++ b/etc/etc.atari/MAKEDEV @@ -205,11 +205,10 @@ rd0) # Ramdisk, only usefull for boot-floppy umask 77 ;; -sd*|vnd*|ccd*) +sd*|ccd*) umask 2 ; unit=`expr $i : '.*[^0-9]\([0-9]*\)'` case $i in sd*) name=sd; blk=4; chr=8;; - vnd*) name=vnd; blk=0; chr=17;; ccd*) name=ccd; blk=13; chr=27;; esac rm -f $name$unit? r$name$unit? @@ -257,6 +256,53 @@ sd*|vnd*|ccd*) umask 77 ;; +vnd*) + umask 2 ; unit=`expr $i : 'vnd\(.*\)'` + for name in vnd svnd; do + blk=0; chr=17; + case $name in + vnd) off=0;; + svnd) off=128;; + esac + rm -f $name$unit? r$name$unit? + mknod ${name}${unit}a b $blk `expr $unit '*' 16 + $off + 0` + mknod ${name}${unit}b b $blk `expr $unit '*' 16 + $off + 1` + mknod ${name}${unit}c b $blk `expr $unit '*' 16 + $off + 2` + mknod ${name}${unit}d b $blk `expr $unit '*' 16 + $off + 3` + mknod ${name}${unit}e b $blk `expr $unit '*' 16 + $off + 4` + mknod ${name}${unit}f b $blk `expr $unit '*' 16 + $off + 5` + mknod ${name}${unit}g b $blk `expr $unit '*' 16 + $off + 6` + mknod ${name}${unit}h b $blk `expr $unit '*' 16 + $off + 7` + mknod ${name}${unit}i b $blk `expr $unit '*' 16 + $off + 8` + mknod ${name}${unit}j b $blk `expr $unit '*' 16 + $off + 9` + mknod ${name}${unit}k b $blk `expr $unit '*' 16 + $off + 10` + mknod ${name}${unit}l b $blk `expr $unit '*' 16 + $off + 11` + mknod ${name}${unit}m b $blk `expr $unit '*' 16 + $off + 12` + mknod ${name}${unit}n b $blk `expr $unit '*' 16 + $off + 13` + mknod ${name}${unit}o b $blk `expr $unit '*' 16 + $off + 14` + mknod ${name}${unit}p b $blk `expr $unit '*' 16 + $off + 15` + mknod r${name}${unit}a c $chr `expr $unit '*' 16 + $off + 0` + mknod r${name}${unit}b c $chr `expr $unit '*' 16 + $off + 1` + mknod r${name}${unit}c c $chr `expr $unit '*' 16 + $off + 2` + mknod r${name}${unit}d c $chr `expr $unit '*' 16 + $off + 3` + mknod r${name}${unit}e c $chr `expr $unit '*' 16 + $off + 4` + mknod r${name}${unit}f c $chr `expr $unit '*' 16 + $off + 5` + mknod r${name}${unit}g c $chr `expr $unit '*' 16 + $off + 6` + mknod r${name}${unit}h c $chr `expr $unit '*' 16 + $off + 7` + mknod r${name}${unit}i c $chr `expr $unit '*' 16 + $off + 8` + mknod r${name}${unit}j c $chr `expr $unit '*' 16 + $off + 9` + mknod r${name}${unit}k c $chr `expr $unit '*' 16 + $off + 10` + mknod r${name}${unit}l c $chr `expr $unit '*' 16 + $off + 11` + mknod r${name}${unit}m c $chr `expr $unit '*' 16 + $off + 12` + mknod r${name}${unit}n c $chr `expr $unit '*' 16 + $off + 13` + mknod r${name}${unit}o c $chr `expr $unit '*' 16 + $off + 14` + mknod r${name}${unit}p c $chr `expr $unit '*' 16 + $off + 15` + chown root.operator ${name}${unit}[a-p] r${name}${unit}[a-p] + chmod 640 ${name}${unit}[a-p] r${name}${unit}[a-p] + done + umask 77 + ;; + cd*) umask 2 ; unit=`expr $i : '..\(.*\)'` case $i in |