summaryrefslogtreecommitdiff
path: root/etc/etc.amiga
diff options
context:
space:
mode:
authorgvf <gvf@cvs.openbsd.org>1997-04-23 20:39:07 +0000
committergvf <gvf@cvs.openbsd.org>1997-04-23 20:39:07 +0000
commit708bf5c385f6bf823dcea5fc5fa0fd8b6ad0a723 (patch)
tree3f576a8470cc631912baa513b3a3f14c0cb12750 /etc/etc.amiga
parent616dc84ff029620576cad6e2345c4de438fb3ea2 (diff)
Fix vnd nodes.
Diffstat (limited to 'etc/etc.amiga')
-rw-r--r--etc/etc.amiga/MAKEDEV5
1 files changed, 1 insertions, 4 deletions
diff --git a/etc/etc.amiga/MAKEDEV b/etc/etc.amiga/MAKEDEV
index 3e88f6f6a1b..2583bb334ce 100644
--- a/etc/etc.amiga/MAKEDEV
+++ b/etc/etc.amiga/MAKEDEV
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: MAKEDEV,v 1.18 1996/12/14 18:23:50 millert Exp $
+# $OpenBSD: MAKEDEV,v 1.19 1997/04/23 20:38:59 gvf Exp $
# $NetBSD: MAKEDEV,v 1.21 1996/05/19 21:03:49 veego Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
@@ -213,8 +213,6 @@ sd*|vnd*|ccd*|wd*)
0|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15)
mknod ${name}${unit}c b $blk `expr $unit '*' 16 + 2`
mknod r${name}${unit}c c $chr `expr $unit '*' 16 + 2`
- if [ $name != cd -a $name != vnd ]
- then
mknod ${name}${unit}a b $blk `expr $unit '*' 16 + 0`
mknod ${name}${unit}b b $blk `expr $unit '*' 16 + 1`
mknod ${name}${unit}d b $blk `expr $unit '*' 16 + 3`
@@ -245,7 +243,6 @@ sd*|vnd*|ccd*|wd*)
mknod r${name}${unit}n c $chr `expr $unit '*' 16 + 13`
mknod r${name}${unit}o c $chr `expr $unit '*' 16 + 14`
mknod r${name}${unit}p c $chr `expr $unit '*' 16 + 15`
- fi
chown root.operator ${name}${unit}[a-p] r${name}${unit}[a-p]
chmod 640 ${name}${unit}[a-p] r${name}${unit}[a-p]
;;