summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1997-02-06 04:36:43 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1997-02-06 04:36:43 +0000
commit63dbc737f0ac54f6db6a4e96544390e09de6757f (patch)
tree9d3535fd6fea85e1fa1aa814aec80fb849cba70f /etc
parent3b961be4094c29977880d0be80542ffd2decba52 (diff)
PowerPC pieces for ramdisk (rd) changes this is adds majors,
rd_root pieces, config file to generate MINIROOT with rdroot and MAKEDEV changes as well as adding the rd device to known device types.
Diffstat (limited to 'etc')
-rw-r--r--etc/etc.powerpc/MAKEDEV8
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/etc.powerpc/MAKEDEV b/etc/etc.powerpc/MAKEDEV
index bbca1b93c95..e42a31060ed 100644
--- a/etc/etc.powerpc/MAKEDEV
+++ b/etc/etc.powerpc/MAKEDEV
@@ -40,6 +40,7 @@
# cd* SCSI compact discs
# ch* SCSI changers
# vnd* vnode pseudo-disks
+# rd* "ramdisk" pseudo-disks
# ccd* concatenated disk driver
#
# Terminal ports:
@@ -81,7 +82,7 @@ all)
raminst)
sh MAKEDEV std
sh MAKEDEV sd0 sd1 sd2 sd3 st0 st1 cd0 cd1
- sh MAKEDEV grf0 grf1 ttye0
+ sh MAKEDEV rd0
sh MAKEDEV tty00 tty01 pty0
;;
@@ -117,8 +118,9 @@ sd*|vnd*|ccd*)
umask 2 ; unit=`expr $i : '.*[^0-9]\([0-9]*\)'`
case $i in
sd*) name=sd; blk=4; chr=13;;
- vnd*) name=vnd; blk=8; chr=19;;
- ccd*) name=ccd; blk=9; chr=20;;
+ vnd*) name=vnd; blk=14; chr=19;;
+ ccd*) name=ccd; blk=16; chr=20;;
+ rd*) name=rd; blk=17; chr=17;;
esac
rm -f $name$unit? r$name$unit?
case $unit in