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