1 # 2 # Distribution root-on-NFS network install kernel (any model) 3 # root on NFS to boot diskless for installation, 4 # disk drivers for labelling disks and installation on local disk. 5 # 6 # $NetBSD: INSTALL,v 1.4 1997/01/31 01:59:17 thorpej Exp $ 7 # 8 include "arch/pmax/conf/std.pmax" 9 10 maxusers 8 11 12 options MIPS1 # R2000/R3000 support 13 #options MIPS3 # R4000/R4400 support (not finished) 14 15 16 # Support for specific models of DECstation 17 options DS3100 # PMAX (kn01) DECstation 2100, 3100 18 options DS5000_25 # MAXINE (kn02ca/xine) support 19 options DS5000_100 # 3MIN (kn02ba/kmin) support 20 options DS5000_200 # 3MAX (kn02) support 21 options DS5000_240 # 3MAXPLUS (kn03) support 22 23 24 # Standard system options 25 #options DIAGNOSTIC # extra kernel debugging checks 26 #options DEBUG # extra kernel debugging support 27 #options "COMPAT_43" # compatibility with 4.3BSD binaries 28 #options KTRACE # system call tracing support 29 options "NKMEMCLUSTERS=1024" # 4K pages in kernel malloc pool 30 #options KGDB # support for kernel gdb 31 #options "KGDBRATE=19200" # kernel gdb port rate (default 9600) 32 #options "KGDBDEV=15*256+0" # device for kernel gdb 33 34 options NTP # network time protocol 35 #options UCONSOLE # users can redirect console (unsafe) 36 37 # Filesystem options 38 file-system FFS # fast filesystem 39 #file-system MFS # memory-based filesystem 40 file-system NFS # Sun NFS-compatible filesystem (client) 41 file-system KERNFS # kernel data-structure filesystem 42 #file-system FDESC # user file descriptor filesystem 43 #file-system UMAPFS # uid/gid remapping filesystem 44 #file-system NULLFS # null layer filesystem 45 #file-system UNION 46 #file-system LFS # Log-based filesystem (still experimental) 47 #file-system PORTAL # portal filesystem (still experimental) 48 49 options QUOTA # FFS quotas 50 options FIFO # POSIX fifo support (in all filesystems) 51 #options NFSSERVER # Sun NFS-compatible filesystem (server) 52 53 # Networking options 54 options INET # Internet protocols 55 options "TCP_COMPAT_42" # compatibility with 4.2BSD TCP/IP 56 #options GATEWAY # IP packet forwarding 57 #options MULTICAST # Multicast support 58 #options MROUTING # Multicast routing support 59 #options ISO # OSI networking 60 #options TPIP 61 #options EON 62 63 # NetBSD backwards compatibility 64 #options COMPAT_10 # NetBSD 1.0, (needed for X on 386?) 65 #options COMPAT_11 # NetBSD 1.1, 66 options COMPAT_12 # Netbsd 1.2 reboot() 67 68 69 # pmax specific 70 #options COMPAT_ULTRIX # ultrix compatibility 71 #options EXEC_ECOFF # Ultrix RISC binaries are ECOFF format 72 options "HZ=256" # RTC rate required 73 74 # Note that this configuration is unlikely to work, yet... 75 config nfsnetbsd root on ? type nfs 76 77 ######################################################################## 78 ### I/O bus and device options ### 79 ######################################################################## 80 81 # TC bus and supported options. (All but PMAXes have a turbochannel.) 82 include "arch/pmax/conf/tc.std" 83 84 # ioasic standard baseboard options (5000/2x, 5000/1xx, 5000/2[46]0) 85 include "arch/pmax/conf/builtin.ioasic" 86 87 # MAXINE-only ioasic baseboard devices and on-baseboard "options" 88 include "arch/pmax/conf/builtin.maxine" 89 90 # 5000/200-only (aka 3MAX aka KN02) baseboard devices. 91 # (KN02 has turbochannel but no IOASIC). 92 include "arch/pmax/conf/builtin.3max" 93 94 # 2100/3100-only (aka PMAX aka KN01) baseboard devices. 95 # (may also be present on a 5100). 96 include "arch/pmax/conf/builtin.3100" 97 98 ######################################################################## 99 # SCSI configuration # 100 ######################################################################## 101 102 oldscsibus* at sii? 103 oldscsibus* at asc? 104 # 105 # SCSI configuration for old 4.4bsd/pmax DECstation SCSI driver 106 # 107 include "arch/pmax/conf/scsi.pmax" 108 #include "arch/pmax/conf/mi.scsi" # not yet supported 109 110 111 ######################################################################## 112 ### Pseudo-devices ### 113 ######################################################################## 114 115 pseudo-device sl 4 # serial-line IP ports 116 pseudo-device ppp 2 # serial-line IP ports 117 pseudo-device pty 64 # pseudo ptys 118 pseudo-device bpfilter 16 # packet filter ports 119 pseudo-device loop 120 #pseudo-device vnd 4 # virtual disk ick 121 pseudo-device ccd 4 # concatenated disks 122 123 #pseudo-device ether # From old config. what does it mean? 124 pseudo-device rasterconsole 1 # NB: raster console requires "fb" 125 pseudo-device fb 1 # up to 3 framebuffers 126