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