GENERIC revision 1.90.6.6 1 1.90.6.6 nathanw # $NetBSD: GENERIC,v 1.90.6.6 2002/09/17 21:18:24 nathanw Exp $
2 1.90.6.2 nathanw #
3 1.90.6.2 nathanw # GENERIC machine description file
4 1.90.6.2 nathanw #
5 1.90.6.2 nathanw # This machine description file is used to generate the default NetBSD
6 1.90.6.2 nathanw # kernel. The generic kernel does not include all options, subsystems
7 1.90.6.2 nathanw # and device drivers, but should be useful for most applications.
8 1.90.6.2 nathanw #
9 1.90.6.2 nathanw # The machine description file can be customised for your specific
10 1.90.6.2 nathanw # machine to reduce the kernel size and improve its performance.
11 1.90.6.2 nathanw #
12 1.90.6.2 nathanw # For further information on compiling NetBSD kernels, see the config(8)
13 1.90.6.2 nathanw # man page.
14 1.90.6.2 nathanw #
15 1.90.6.2 nathanw # For further information on hardware support for this architecture, see
16 1.90.6.2 nathanw # the intro(4) man page. For further information about kernel options
17 1.90.6.2 nathanw # for this architecture, see the options(4) man page. For an explanation
18 1.90.6.2 nathanw # of each device driver in this file see the section 4 man page for the
19 1.90.6.2 nathanw # device.
20 1.90.6.2 nathanw
21 1.90.6.2 nathanw include "arch/vax/conf/std.vax"
22 1.90.6.2 nathanw
23 1.90.6.5 nathanw options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.90.6.5 nathanw
25 1.90.6.6 nathanw #ident "GENERIC-$Revision: 1.90.6.6 $"
26 1.90.6.2 nathanw
27 1.90.6.2 nathanw # Here are all different supported CPU types listed.
28 1.90.6.2 nathanw #options VAX8800 # VAX 8500, 8530, 8550, 8700, 8800
29 1.90.6.2 nathanw options VAX8600
30 1.90.6.2 nathanw options VAX8200
31 1.90.6.2 nathanw #options VAX6400
32 1.90.6.2 nathanw options VAX780
33 1.90.6.2 nathanw options VAX750
34 1.90.6.2 nathanw options VAX630 # MV II
35 1.90.6.2 nathanw options VAX650 # MV III, 3300, 3400, 3500, 3600, 3800, 3900
36 1.90.6.2 nathanw options VAX660 # VAX 4000/200
37 1.90.6.2 nathanw options VAX670 # VAX 4000/300
38 1.90.6.2 nathanw options VAX680 # VAX 4000/[45]00
39 1.90.6.2 nathanw options VAX410 # VS 2000
40 1.90.6.2 nathanw options VAX43 # VS 3100/76
41 1.90.6.2 nathanw options VAX46 # VS 4000/60
42 1.90.6.2 nathanw options VAX48 # VS 4000 VLC
43 1.90.6.2 nathanw options VAX49 # VS 4000/90
44 1.90.6.2 nathanw options VAX53 # VAX 4000/10[058], MicroVAX 3100/m96
45 1.90.6.2 nathanw
46 1.90.6.2 nathanw # Max users on system; this is just a hint
47 1.90.6.2 nathanw maxusers 8
48 1.90.6.2 nathanw
49 1.90.6.2 nathanw # Kernel compiled-in symbolic debugger & system call tracer
50 1.90.6.2 nathanw #makeoptions DEBUG="-g"
51 1.90.6.2 nathanw options DDB
52 1.90.6.2 nathanw #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
53 1.90.6.2 nathanw options KTRACE
54 1.90.6.2 nathanw #options DIAGNOSTIC
55 1.90.6.2 nathanw #options DEBUG,KMEMSTATS,PMAPDEBUG,TRAPDEBUG,LOCKDEBUG
56 1.90.6.2 nathanw
57 1.90.6.2 nathanw options SCSIVERBOSE # Verbose SCSI errors
58 1.90.6.2 nathanw
59 1.90.6.2 nathanw # Networking options
60 1.90.6.2 nathanw #options GATEWAY # packet forwarding
61 1.90.6.2 nathanw options NTP # NTP kernel support
62 1.90.6.2 nathanw options INET # IP + ICMP + TCP + UDP
63 1.90.6.2 nathanw options INET6 # IPV6
64 1.90.6.2 nathanw #options IPSEC # IP security
65 1.90.6.2 nathanw #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
66 1.90.6.2 nathanw #options IPSEC_DEBUG # debug for IP security
67 1.90.6.2 nathanw #options MROUTING # IP multicast routing
68 1.90.6.2 nathanw #options NS # XNS
69 1.90.6.2 nathanw #options NSIP # XNS tunneling over IP
70 1.90.6.2 nathanw #options ISO,TPIP # OSI
71 1.90.6.2 nathanw #options EON # OSI tunneling over IP
72 1.90.6.2 nathanw #options CCITT,LLC,HDLC # X.25
73 1.90.6.2 nathanw #options NETATALK # AppleTalk networking protocols
74 1.90.6.2 nathanw #options PPP_BSDCOMP # BSD-Compress compression support for PPP
75 1.90.6.2 nathanw #options PPP_DEFLATE # Deflate compression support for PPP
76 1.90.6.2 nathanw #options PPP_FILTER # Active filter support for PPP (requires bpf)
77 1.90.6.2 nathanw #options PFIL_HOOKS # pfil(9) packet filter hooks
78 1.90.6.2 nathanw #options IPFILTER_LOG # ipmon(8) log support
79 1.90.6.2 nathanw
80 1.90.6.2 nathanw # All supported filesystem types
81 1.90.6.2 nathanw file-system FFS
82 1.90.6.2 nathanw file-system LFS
83 1.90.6.2 nathanw file-system MFS
84 1.90.6.2 nathanw file-system NFS
85 1.90.6.2 nathanw file-system FDESC
86 1.90.6.2 nathanw file-system KERNFS
87 1.90.6.2 nathanw file-system NULLFS
88 1.90.6.2 nathanw file-system OVERLAY # overlay file system
89 1.90.6.2 nathanw file-system PROCFS
90 1.90.6.2 nathanw file-system UMAPFS
91 1.90.6.2 nathanw file-system UNION
92 1.90.6.2 nathanw file-system CD9660
93 1.90.6.2 nathanw
94 1.90.6.2 nathanw options QUOTA
95 1.90.6.2 nathanw #options FFS_EI # FFS Endian Independant support
96 1.90.6.2 nathanw options SOFTDEP # FFS soft updates support.
97 1.90.6.2 nathanw options NFSSERVER
98 1.90.6.2 nathanw options NFS_BOOT_BOOTP,NFS_BOOT_DHCP # Use bootp <> dhcp
99 1.90.6.2 nathanw options NFS_BOOT_BOOTPARAM # Use the Sun way for netbooting.
100 1.90.6.2 nathanw
101 1.90.6.2 nathanw # WS console uses VT100 terminal emulation
102 1.90.6.2 nathanw options WSEMUL_VT100
103 1.90.6.2 nathanw options WSDISPLAY_DEFAULTSCREENS=8
104 1.90.6.2 nathanw options FONT_QVSS8x15
105 1.90.6.2 nathanw
106 1.90.6.2 nathanw # System V shared memory & semaphores support.
107 1.90.6.2 nathanw options SYSVMSG
108 1.90.6.2 nathanw options SYSVSEM
109 1.90.6.2 nathanw #options SEMMNI=10 # number of semaphore identifiers
110 1.90.6.2 nathanw #options SEMMNS=60 # number of semaphores in system
111 1.90.6.2 nathanw #options SEMUME=10 # max number of undo entries per process
112 1.90.6.2 nathanw #options SEMMNU=30 # number of undo structures in system
113 1.90.6.2 nathanw options SYSVSHM
114 1.90.6.2 nathanw
115 1.90.6.2 nathanw # Old compat stuff; needed to run 4.3BSD Reno programs.
116 1.90.6.2 nathanw # Note that if COMPAT_ULTRIX is set, you lose compatibility with
117 1.90.6.2 nathanw # 4.3BSD Reno programs and get Ultrix compatibility instead.
118 1.90.6.2 nathanw # (They cannot coexist).
119 1.90.6.2 nathanw options COMPAT_VAX1K # Must be present to run pre-1.4 binaries.
120 1.90.6.2 nathanw options COMPAT_43
121 1.90.6.2 nathanw options COMPAT_09
122 1.90.6.2 nathanw options COMPAT_10
123 1.90.6.2 nathanw options COMPAT_11
124 1.90.6.2 nathanw options COMPAT_12
125 1.90.6.2 nathanw options COMPAT_13
126 1.90.6.2 nathanw options COMPAT_14
127 1.90.6.6 nathanw options COMPAT_15
128 1.90.6.6 nathanw options COMPAT_16
129 1.90.6.2 nathanw #options COMPAT_ULTRIX
130 1.90.6.2 nathanw options COMPAT_IBCS2 # DEC SVR.3 compatilibity
131 1.90.6.2 nathanw #options NO_INSN_EMULATE # CPU does not lack some hardware instructions.
132 1.90.6.2 nathanw
133 1.90.6.2 nathanw options LKM
134 1.90.6.2 nathanw
135 1.90.6.4 nathanw #options USERCONF # userconf(4) support
136 1.90.6.3 nathanw #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
137 1.90.6.3 nathanw
138 1.90.6.2 nathanw # Kernel(s) to compile
139 1.90.6.2 nathanw config netbsd root on ? type ?
140 1.90.6.2 nathanw
141 1.90.6.2 nathanw mainbus0 at root
142 1.90.6.2 nathanw
143 1.90.6.2 nathanw # All buses; from the beginning attached to mainbus.
144 1.90.6.2 nathanw abus0 at mainbus0 # Master bus on VAX 8600
145 1.90.6.2 nathanw sbi0 at mainbus0 # SBI, master bus on 11/780.
146 1.90.6.2 nathanw cmi0 at mainbus0 # 11/750 internal bus.
147 1.90.6.2 nathanw bi0 at mainbus0 # VAX 8200
148 1.90.6.2 nathanw vsbus0 at mainbus0 # All VAXstations
149 1.90.6.2 nathanw ibus0 at mainbus0 # All MicroVAX
150 1.90.6.2 nathanw #nbi0 at mainbus0 # VAX 8800
151 1.90.6.2 nathanw #xmi0 at mainbus0 # VAX 6000
152 1.90.6.2 nathanw
153 1.90.6.2 nathanw # NMI (internal bus) on VAX 88xx-series.
154 1.90.6.2 nathanw #cpu* at nmi0 slot? # 1-4 KA88 CPUs
155 1.90.6.2 nathanw #mem* at nmi0 slot?
156 1.90.6.2 nathanw #bi* at nmi0 slot? # BI bus adapters
157 1.90.6.2 nathanw
158 1.90.6.2 nathanw # XMI on VAX 6000 (and higher)
159 1.90.6.2 nathanw #cpu* at xmi? node? # 1-? VAX 6000 CPUs
160 1.90.6.2 nathanw #mem* at xmi? node?
161 1.90.6.2 nathanw #bi* at xmi? node? # XMI-BI adapter
162 1.90.6.2 nathanw
163 1.90.6.2 nathanw # Vsbus, the virtual VAXstation bus, and possible devices.
164 1.90.6.2 nathanw le0 at vsbus0 csr 0x200e0000 # LANCE ethernet
165 1.90.6.2 nathanw ze0 at vsbus0 csr 0x20008000 # SGEC ethernet
166 1.90.6.2 nathanw dz0 at vsbus0 csr 0x200a0000 # DC-367 DZ-11 lookalike ctlr
167 1.90.6.2 nathanw dz0 at vsbus0 csr 0x25000000 # VS4000/90 and 4000/10x serial line
168 1.90.6.2 nathanw si0 at vsbus0 csr 0x200c0080 # VS2000/3100 SCSI-ctlr
169 1.90.6.2 nathanw si1 at vsbus0 csr 0x200c0180 # VS2000/3100 SCSI-ctlr
170 1.90.6.2 nathanw asc0 at vsbus0 csr 0x200c0080 # VS4000/60 (or VLC) SCSI-ctlr
171 1.90.6.2 nathanw asc0 at vsbus0 csr 0x26000080 # VS4000/90 and 4000/10x SCSI-ctlr
172 1.90.6.2 nathanw smg0 at vsbus0 csr 0x200f0000 # Small monochrome display ctlr.
173 1.90.6.2 nathanw #clr0 at vsbus0 csr 0x30000000 # 4- or 8-bitplans color graphics
174 1.90.6.2 nathanw
175 1.90.6.2 nathanw hdc0 at vsbus0 csr 0x200c0000 # HDC9224 MFM/floppy ctlr
176 1.90.6.2 nathanw rd* at hdc0 drive? # RD5x disks
177 1.90.6.2 nathanw #ry* at hdc0 drive? # RX floppies
178 1.90.6.2 nathanw
179 1.90.6.2 nathanw # Ibus, the internal bus on most Microvaxen
180 1.90.6.2 nathanw uba0 at ibus0 # Qbus adapter
181 1.90.6.2 nathanw ze0 at ibus0 # SGEC on-board ethernet
182 1.90.6.2 nathanw le0 at ibus0 # LANCE ethernet (MV3400)
183 1.90.6.2 nathanw #shac0 at ibus0 # DSSI controller
184 1.90.6.2 nathanw
185 1.90.6.2 nathanw # Devices connected at VAXBI
186 1.90.6.2 nathanw cpu* at bi? node? # KA820/KA825 cpu
187 1.90.6.2 nathanw mem* at bi? node? # Memory subsystems
188 1.90.6.2 nathanw #uba* at bi? node? # DWBUA BI-Unibus adapter
189 1.90.6.2 nathanw ni* at bi? node? # DEBNA/DEBNT ethernet adapter
190 1.90.6.2 nathanw kdb* at bi? node? # KDB50 MSCP disk ctlr
191 1.90.6.2 nathanw
192 1.90.6.2 nathanw # CMI (VAX 11/750)
193 1.90.6.2 nathanw mem* at cmi? tr? # Memory subsystems
194 1.90.6.2 nathanw uba* at cmi? tr? # Unibus adapters
195 1.90.6.2 nathanw mba* at cmi? tr? # Massbus adapters
196 1.90.6.2 nathanw
197 1.90.6.2 nathanw # SBI (VAX 11/780, VAX 8600)
198 1.90.6.2 nathanw sbi* at abus0 # VAX 8600 can have up to 4 SBI's.
199 1.90.6.2 nathanw
200 1.90.6.2 nathanw mem* at sbi? tr? # Memory subsystems
201 1.90.6.2 nathanw uba* at sbi? tr? # Unibus adapters
202 1.90.6.2 nathanw mba* at sbi? tr? # Massbus adapters
203 1.90.6.2 nathanw
204 1.90.6.2 nathanw # Devices on Massbus adapters
205 1.90.6.2 nathanw hp* at mba? drive? # RM/RP disk drives
206 1.90.6.2 nathanw
207 1.90.6.2 nathanw # Devices on Unibus/Qbus adapters
208 1.90.6.5 nathanw uda* at uba? csr 0172150 # UDA50/RQDX?
209 1.90.6.5 nathanw uda* at uba? csr 0160334
210 1.90.6.5 nathanw mtc* at uba? csr 0174500 # Tape MSCP ctlr
211 1.90.6.2 nathanw #ts0 at uba? csr 0172520 # TS11/TSV05 tape.
212 1.90.6.2 nathanw #qd0 at uba? csr 0177400 # 4- or 8-bitplans color graphics
213 1.90.6.2 nathanw #qv0 at uba? csr 0177400 # Monochrome graphics
214 1.90.6.5 nathanw de* at uba? csr 0174510 # DELUA/DEUNA
215 1.90.6.5 nathanw qe* at uba? csr 0174440 # DEQNA/DELQA
216 1.90.6.5 nathanw dhu* at uba? csr 0160440 # DHU-11
217 1.90.6.6 nathanw #dmf* at uba? csr 0160340 # DMF-32
218 1.90.6.5 nathanw dz* at uba? csr 0160100 # DZ-11
219 1.90.6.5 nathanw dl* at uba? csr 0176500 # DL-11
220 1.90.6.5 nathanw rlc* at uba? csr 0174400 # RL11/RLV11 controller
221 1.90.6.2 nathanw rl* at rlc? drive? # RL01/RL02 disk drive
222 1.90.6.2 nathanw
223 1.90.6.2 nathanw # MSCP devices
224 1.90.6.2 nathanw mscpbus* at uda?
225 1.90.6.2 nathanw mscpbus* at mtc?
226 1.90.6.2 nathanw mscpbus* at kdb?
227 1.90.6.2 nathanw
228 1.90.6.2 nathanw ra* at mscpbus? drive? # MSCP disk
229 1.90.6.2 nathanw rx* at mscpbus? drive? # MSCP floppy
230 1.90.6.2 nathanw mt* at mscpbus? drive? # MSCP tape
231 1.90.6.2 nathanw
232 1.90.6.2 nathanw # SCSI devices
233 1.90.6.2 nathanw scsibus* at asc?
234 1.90.6.2 nathanw scsibus* at si?
235 1.90.6.2 nathanw
236 1.90.6.2 nathanw sd* at scsibus? target? lun?
237 1.90.6.2 nathanw st* at scsibus? target? lun?
238 1.90.6.2 nathanw cd* at scsibus? target? lun?
239 1.90.6.2 nathanw ch* at scsibus? target? lun?
240 1.90.6.2 nathanw ss* at scsibus? target? lun?
241 1.90.6.2 nathanw uk* at scsibus? target? lun?
242 1.90.6.2 nathanw
243 1.90.6.2 nathanw # VAXstation graphics support
244 1.90.6.2 nathanw wsdisplay0 at smg0
245 1.90.6.2 nathanw #wsdisplay0 at clr0
246 1.90.6.2 nathanw #wsdisplay0 at qd0
247 1.90.6.2 nathanw #wsdisplay0 at qv0
248 1.90.6.2 nathanw lkkbd0 at dz0 line 0
249 1.90.6.2 nathanw wskbd* at lkkbd? console ?
250 1.90.6.2 nathanw lkms0 at dz0 line 1
251 1.90.6.2 nathanw wsmouse* at lkms?
252 1.90.6.2 nathanw
253 1.90.6.2 nathanw pseudo-device loop 1
254 1.90.6.2 nathanw pseudo-device pty # pseudo-terminals
255 1.90.6.2 nathanw pseudo-device bpfilter 8 # Not supported by de yet.
256 1.90.6.2 nathanw pseudo-device ipfilter # IP filter (firewall) and NAT
257 1.90.6.2 nathanw #pseudo-device sl 2
258 1.90.6.2 nathanw #pseudo-device ppp 2
259 1.90.6.2 nathanw #pseudo-device pppoe # PPP over Ethernet (RFC 2516)
260 1.90.6.2 nathanw pseudo-device tun 2
261 1.90.6.2 nathanw #pseudo-device gre 2 # generic L3 over IP tunnel
262 1.90.6.2 nathanw pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
263 1.90.6.2 nathanw #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
264 1.90.6.2 nathanw #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
265 1.90.6.2 nathanw pseudo-device vlan # IEEE 802.1q encapsulation
266 1.90.6.2 nathanw pseudo-device bridge # simple inter-network bridging
267 1.90.6.2 nathanw pseudo-device tb 1
268 1.90.6.2 nathanw pseudo-device vnd 4
269 1.90.6.2 nathanw pseudo-device ccd 4
270 1.90.6.3 nathanw pseudo-device raid 8 # RAIDframe disk driver
271 1.90.6.3 nathanw options RAID_AUTOCONFIG # auto-configuration of RAID components
272 1.90.6.3 nathanw # Options to enable various other RAIDframe RAID types.
273 1.90.6.3 nathanw # options RF_INCLUDE_EVENODD=1
274 1.90.6.3 nathanw # options RF_INCLUDE_RAID5_RS=1
275 1.90.6.3 nathanw # options RF_INCLUDE_PARITYLOGGING=1
276 1.90.6.3 nathanw # options RF_INCLUDE_CHAINDECLUSTER=1
277 1.90.6.3 nathanw # options RF_INCLUDE_INTERDECLUSTER=1
278 1.90.6.3 nathanw # options RF_INCLUDE_PARITY_DECLUSTERING=1
279 1.90.6.3 nathanw # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
280 1.90.6.2 nathanw pseudo-device rnd # /dev/random and in-kernel generator
281 1.90.6.2 nathanw #pseudo-device leds # control the leds on vaxstations.
282 1.90.6.5 nathanw pseudo-device clockctl # user control of clock subsystem
283