summaryrefslogtreecommitdiffstats
path: root/etc/MAKEDEV
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-12-04 20:15:15 +0000
committerphk <phk@FreeBSD.org>1994-12-04 20:15:15 +0000
commit58b2cf4ed5b3966ee2e2f6eab241f10f3030bdc5 (patch)
treec60afeb4e8cdb982d17a3675f357901ab8b6e426 /etc/MAKEDEV
parent267256d1f5b2953c150e291396bc8837a3eb9269 (diff)
downloadFreeBSD-src-58b2cf4ed5b3966ee2e2f6eab241f10f3030bdc5.zip
FreeBSD-src-58b2cf4ed5b3966ee2e2f6eab241f10f3030bdc5.tar.gz
Added vn*, doing the same thing as sd* and wd*. (Disklabel support will
be added to the vn driver).
Diffstat (limited to 'etc/MAKEDEV')
-rw-r--r--etc/MAKEDEV10
1 files changed, 6 insertions, 4 deletions
diff --git a/etc/MAKEDEV b/etc/MAKEDEV
index eb93541..fbf5c28 100644
--- a/etc/MAKEDEV
+++ b/etc/MAKEDEV
@@ -39,6 +39,7 @@
# sd* "scsi disks"
# cd* "scsi cdrom disks"
# mcd* "mitsumi cdrom disks"
+# vn* "vnode disks"
#
# Console ports:
# pc* devices for stock pccons
@@ -71,7 +72,7 @@
# socksys iBCS2 socket system driver
# vat VAT compatibility audio driver (requires snd*)
#
-# $Id: MAKEDEV,v 1.51 1994/12/03 00:07:49 wollman Exp $
+# $Id: MAKEDEV,v 1.53 1994/12/03 14:01:01 jkh Exp $
#
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
@@ -246,11 +247,12 @@ ft*)
;;
-sd*|wd*)
+sd*|vn*|wd*)
umask 2 ; unit=`expr $i : '..\(.*\)'`
case $i in
- sd*) name=sd; blk=4; chr=13;;
- wd*) name=wd; blk=0; chr=3;;
+ sd*) name=sd; blk=4; chr=13;;
+ wd*) name=wd; blk=0; chr=3;;
+ vn*) name=vn; blk=15; chr=43;;
esac
rm -f $name$unit? r$name$unit?
case $unit in
OpenPOWER on IntegriCloud