diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sys/arch/pmax/dist/README_TOO |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/pmax/dist/README_TOO')
-rw-r--r-- | sys/arch/pmax/dist/README_TOO | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/sys/arch/pmax/dist/README_TOO b/sys/arch/pmax/dist/README_TOO new file mode 100644 index 00000000000..67cfdccc3aa --- /dev/null +++ b/sys/arch/pmax/dist/README_TOO @@ -0,0 +1,61 @@ +# $NetBSD: README_TOO,v 1.4 1994/10/26 21:09:28 cgd Exp $ +# @(#)README_TOO 8.1 (Berkeley) 6/29/93 + +Sun Mar 29 22:19:51 PST 1992 + +steps to bootstap a system. + +1) Load kernel and mini-root into memory with one of the PROM commands. + This is the only step that depends on what type of machine you are using. + The 'cnfg' PROM command will display what devices are avaliable + (DEC 5000 only). + The 'm' argument tells the kernel to look for a mini-root in memory. + + DEC 3100: boot -f tz(0,5,0) m # 5 is the SCSI id of the TK50 + DEC 5000: boot 5/tz6 m # 6 is the SCSI id of the TK50 + DEC 5000: boot 6/tftp/bootfile m # requires bootp on host + +2) Format the disk if needed. Most SCSI disks are already formatted. + format + +3) Label disks and create file systems. + # disklabel -W /dev/rrz?c # This enables writing the label + # disklabel -w -r -B /dev/rrz?c $DISKTYPE + # newfs /dev/rrz?a + # newfs /dev/rrz?g + ... + # fsck /dev/rrz?a + # fsck /dev/rrz?g + ... + + Supported disk types are listed in /etc/disktab. + Feel free to add to this list. + +4) Restore / and /usr partitions. + # mount -u / + # mount /dev/rz?a /a + # mount /dev/rz?g /b + # cd /a + # mt -f /dev/nrmt0 rew + # restore -rsf 2 /dev/rmt0 + # cd /b + # {change tapes or tape drive} + # restore -rf /dev/rmt0 + # cd / + # sync + # umount /a /b + # fsck /dev/rz?a /dev/rz?g + +5) Initialize the PROM monitor to boot automatically. + # halt -q + + DEC 3100: setenv bootpath boot -f rz(0,?,0)vmunix + DEC 5000: setenv bootpath 5/rz?/vmunix -a + +6) After booting UNIX, you will need to create /dev/mouse in order to + run X windows. type `link /dev/xx /dev/mouse' where xx is one of the + following: + pm0 raw interface to PMAX graphics devices + cfb0 raw interface to turbochannel PMAG-BA color frame buffer + xcfb0 raw interface to maxine graphics devices + mfb0 raw interface to mono graphics devices |