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