INSTALL revision 1.10
1# $NetBSD: INSTALL,v 1.10 1997/12/01 15:58:34 kleink Exp $ 2# 3# Distribution install kernel (any model) 4# netbsd: cut-down kernel for miniroots. 5# nfsnetbsd: root on NFS to boot diskless for installation, 6# disk drivers for labelling disks and installation on local disk. 7# 8# Kernel must be under 1Mbyte to net-boot on 3100s with old PROMs. 9# 10# 11include "arch/pmax/conf/std.pmax" 12 13maxusers 8 14 15# CPU options 16options MIPS1 # R2000/R3000 support 17options MIPS3 # R4000/R4400 support 18 19 20# Support for specific models of DECstation 21options DS3100 # PMAX (kn01) DECstation 2100, 3100 22options DS5000_25 # MAXINE (kn02ca/xine) support 23options DS5000_100 # 3MIN (kn02ba/kmin) support 24options DS5000_200 # 3MAX (kn02) support 25options DS5000_240 # 3MAXPLUS (kn03) support 26 27 28# Standard system options 29#options DIAGNOSTIC # extra kernel debugging checks 30#options DEBUG # extra kernel debugging support 31#options "COMPAT_43" # compatibility with 4.3BSD binaries 32#options KTRACE # system call tracing support 33#options LKM # loadable kernel modules 34 35 36options "NKMEMCLUSTERS=1024" # 4K pages in kernel malloc pool 37 38#options NTP # network time protocol 39#options UCONSOLE # users can redirect console (unsafe) 40 41 42# Filesystem options 43file-system FFS # BSD fast filesystem 44file-system NFS # Sun NFS-compatible filesystem (client) 45file-system KERNFS # kernel data-structure filesystem 46 47options FIFO # POSIX fifo support (in all filesystems) 48 49 50# Networking options 51options INET # Internet protocols 52options "TCP_COMPAT_42" # compatibility with 4.2BSD TCP/IP 53 54 55options COMPAT_12 56options COMPAT_13 57 58# pmax specific 59options "HZ=256" # RTC rate required 60 61config netbsd root on ? type ? 62config nfsnetbsd root on ? type nfs 63 64 65 66######################################################################## 67### I/O bus and device options ### 68######################################################################## 69 70# TC bus and supported options. (All but PMAXes have a turbochannel.) 71include "arch/pmax/conf/tc.std" 72 73# ioasic standard baseboard options (5000/2x, 5000/1xx, 5000/2[46]0) 74include "arch/pmax/conf/builtin.ioasic" 75 76# MAXINE-only ioasic baseboard devices and on-baseboard "options" 77include "arch/pmax/conf/builtin.maxine" 78 79# 5000/200-only (aka 3MAX aka KN02) baseboard devices. 80# (KN02 has turbochannel but no IOASIC). 81include "arch/pmax/conf/builtin.3max" 82 83# 2100/3100-only (aka PMAX aka KN01) baseboard devices. 84# (may also be present on a 5100). 85include "arch/pmax/conf/builtin.3100" 86 87######################################################################## 88# SCSI configuration # 89######################################################################## 90 91oldscsibus* at sii? 92oldscsibus* at asc? 93# 94# SCSI configuration for old 4.4bsd/pmax DECstation SCSI driver 95# 96include "arch/pmax/conf/scsi.pmax" 97#include "arch/pmax/conf/mi.scsi" # not yet supported 98 99 100######################################################################## 101### Pseudo-devices ### 102######################################################################## 103 104pseudo-device pty 64 # pseudo ptys 105pseudo-device bpfilter 16 # packet filter ports 106pseudo-device loop 107pseudo-device ccd 4 # concatenated disks 108 109pseudo-device rasterconsole 1 # NB: raster console requires "fb" 110pseudo-device fb 1 # only 1 framebuffer supported 111