GENERIC revision 1.251 1 # $NetBSD: GENERIC,v 1.251 2016/11/26 13:59:46 christos Exp $
2 #
3 # GENERIC machine description file
4 #
5 # This machine description file is used to generate the default NetBSD
6 # kernel. The generic kernel does not include all options, subsystems
7 # and device drivers, but should be useful for most applications.
8 #
9 # The machine description file can be customised for your specific
10 # machine to reduce the kernel size and improve its performance.
11 #
12 # For further information on compiling NetBSD kernels, see the config(8)
13 # man page.
14 #
15 # For further information on hardware support for this architecture, see
16 # the intro(4) man page. For further information about kernel options
17 # for this architecture, see the options(4) man page. For an explanation
18 # of each device driver in this file see the section 4 man page for the
19 # device.
20
21 include "arch/sparc/conf/std.sparc"
22
23 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24
25 #ident "GENERIC-$Revision: 1.251 $"
26
27 maxusers 32
28
29 ## System kernel configuration. See options(4) for more detail.
30
31
32 # Options for variants of the Sun SPARC architecure.
33 # We currently support three architecture types; at least one is required.
34 options SUN4 # sun4/100, sun4/200, sun4/300
35 options SUN4C # sun4c - SS1, 1+, 2, ELC, SLC, IPC, IPX, etc.
36 options SUN4M # sun4m - SS10, SS20, Classic, etc.
37 options SUN4D # sun4d - SS1000, SC2000
38
39 options SUN4_MMU3L # sun4/400 3-level MMU
40
41 ## System options specific to the sparc machine type
42
43 # Blink the power LED on some machines to indicate the system load.
44 #options BLINK
45
46 # wscons stuff
47 #options WSEMUL_SUN
48 options WSEMUL_VT100
49 options WSDISPLAY_COMPAT_RAWKBD
50 options WSDISPLAY_CUSTOM_OUTPUT
51 options WS_DEFAULT_FG=WSCOL_BLACK
52 options WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
53 options WS_KERNEL_FG=WSCOL_GREEN
54 options WS_KERNEL_BG=WSCOL_LIGHT_WHITE
55 options WSDISPLAY_COMPAT_PCVT
56 options WSDISPLAY_COMPAT_SYSCONS
57 options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
58
59 options WSDISPLAY_SCROLLSUPPORT
60
61 options FONT_GALLANT12x22 # the console font
62 options FONT_BOLD8x16 # a somewhat smaller font
63
64 #### System options that are the same for all ports
65
66 ## Root device configuration: change the ?'s if you are going to use a
67 ## nonstandard root partition (other than where the kernel is booted from)
68 ## and/or nonstandard root type (not ffs or nfs). Normally this can be
69 ## automagically determined at boot time.
70
71 config netbsd root on ? type ?
72
73 ## System call tracing (see ktrace(1)).
74 options KTRACE
75
76 ## System V compatible IPC subsystem. (msgctl(2), semctl(2), and shmctl(2))
77 options SYSVMSG # System V message queues
78 options SYSVSEM # System V semaphores
79 options SYSVSHM # System V shared memory
80
81 options MODULAR # new style module(7) framework
82 options MODULAR_DEFAULT_AUTOLOAD
83
84 options USERCONF # userconf(4) support
85 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
86 options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
87
88 # Enable experimental buffer queue strategy for better responsiveness under
89 # high disk I/O load. Use it with caution - it's not proven to be stable yet.
90 #options BUFQ_READPRIO
91 #options BUFQ_PRIOCSCAN
92
93 ## NFS boot options; tries DHCP/BOOTP then BOOTPARAM
94 options NFS_BOOT_BOOTPARAM
95 #options NFS_BOOT_BOOTP
96 options NFS_BOOT_DHCP
97
98 #### Debugging options
99
100 ## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
101 ## serial console break or keyboard reset, where the PROM would normally
102 ## intercept. DDB_HISTORY_SIZE adds up/down arrow command history.
103 options DDB # kernel dynamic debugger
104 options DDB_HISTORY_SIZE=100 # enable history editing in DDB
105 #options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
106
107 ## You may also use gdb, on another computer connected to this machine over
108 ## a serial port. Both KGDB_DEV and KGDB_DEVRATE should be specified;
109 ## KGDB_DEV is a dev_t encoded device number of the serial port to use, where
110 ## the minor device number encodes the PROM enumeration of the serial ports,
111 ## i.e.:
112 ## 0xc00 = ttya, 0xc01 = ttyb, 0xc02 = ttyc, 0xc03 = ttyd.
113 ## (Note: ttyc and ttyd are available only on some sun4 models)
114 #options KGDB # support for kernel gdb
115 #options KGDB_DEV=0xc01 # kgdb device number (this is `ttyb')
116 #options KGDB_DEVRATE=38400 # baud rate
117
118
119 ## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
120 ## such that gdb(1) can be used on a kernel coredump.
121
122 #makeoptions DEBUG="-g"
123
124
125 ## Adds code to the kernel that does internal consistency checks, and will
126 ## cause the kernel to panic if corruption of internal data structures
127 ## is detected.
128 #options DIAGNOSTIC # extra kernel sanity checking
129
130 ## Enable (possibly expensive) debugging code that may also display messages
131 ## on the system console
132 #options DEBUG
133 #options LOCKDEBUG
134 #options SYSCALL_DEBUG
135
136 ## Make SCSI error messages more verbose when explaining their meanings.
137 options SCSIVERBOSE
138
139 options MIIVERBOSE # verbose PHY autoconfig messages
140
141 ## `INSECURE' turns off the kernel security level (securelevel = 0 always).
142 ## This allows writing to /dev/mem, loading kernel modules while multi-user,
143 ## and other insecurities good only for development work. Do not use this
144 ## option on a production machine.
145 #options INSECURE
146
147 ## `FDSCRIPTS' allows non-readable but executable scripts by providing a
148 ## pre-opened opaque file to the script interpreter. `SETUIDSCRIPTS',
149 ## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
150 ## opaque file mechanism. Perl calls this "secure setuid scripts."
151
152 #options FDSCRIPTS
153 #options SETUIDSCRIPTS
154
155 ## Options for compatibility with previous releases foreign system binaries.
156 ## In the cases of COMPAT_SUNOS and COMPAT_SVR4, you may need to set up
157 ## additional user-level utilities or system configuration files. See
158 ## compat_sunos(8) and compat_svr4(8).
159
160 options COMPAT_43 # 4.3BSD system interfaces
161 options COMPAT_10 # NetBSD 1.0,
162 options COMPAT_11 # NetBSD 1.1,
163 options COMPAT_12 # NetBSD 1.2,
164 options COMPAT_13 # NetBSD 1.3,
165 options COMPAT_14 # NetBSD 1.4,
166 options COMPAT_15 # NetBSD 1.5,
167 options COMPAT_16 # NetBSD 1.6,
168 options COMPAT_20 # NetBSD 2.0,
169 options COMPAT_30 # NetBSD 3.0,
170 options COMPAT_40 # NetBSD 4.0,
171 options COMPAT_50 # NetBSD 5.0,
172 options COMPAT_60 # NetBSD 6.0, and
173 options COMPAT_70 # NetBSD 7.0 binary compatibility
174 options COMPAT_SUNOS # SunOS 4.x binary compatibility
175 options COMPAT_SVR4 # SunOS 5.x binary compatibility
176 options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
177
178 ## File systems. You probably need at least one of FFS or NFS.
179 file-system FFS # Berkeley Fast Filesystem
180 file-system NFS # Sun NFS-compatible filesystem client
181 file-system KERNFS # kernel data-structure filesystem
182 file-system NULLFS # NULL layered filesystem
183 file-system OVERLAY # overlay file system
184 file-system MFS # memory-based filesystem
185 file-system FDESC # user file descriptor filesystem
186 file-system UMAPFS # uid/gid remapping filesystem
187 file-system LFS # Log-based filesystem (still experimental)
188 file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
189 file-system PROCFS # /proc
190 file-system CD9660 # ISO 9660 + Rock Ridge file system
191 file-system UNION # union file system
192 file-system MSDOSFS # MS-DOS FAT filesystem(s).
193 file-system CODA # Coda File System; also needs vcoda (below)
194 file-system PTYFS # /dev/pts/N support
195 file-system TMPFS # Efficient memory file-system
196 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
197
198 ## File system options.
199 options NFSSERVER # Sun NFS-compatible filesystem server
200 options QUOTA # FFS quotas
201 #options FFS_EI # FFS Endian Independent support
202 options WAPBL # File system journaling support
203 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
204 #options FFS_NO_SNAPSHOT # No FFS snapshot support
205 options UFS_EXTATTR # Extended attribute support for UFS1
206
207 ## Network protocol support. In most environments, INET is required.
208 options INET # IP (Internet Protocol) v4
209 options INET6 # IPV6
210 #options IPSEC # IP security
211 #options IPSEC_DEBUG # debug for IP security
212 #options GATEWAY # packet forwarding ("router switch")
213 #options MROUTING # packet forwarding of multicast packets
214 #options PIM # Protocol Independent Multicast
215 #options DIRECTED_BROADCAST # allow broadcasts through routers
216 #options NETATALK # AppleTalk (over Ethernet) protocol
217 options NTP # Network Time Protocol in-kernel support
218 #options PPS_SYNC # Add serial line synchronization for NTP
219 options IPFILTER_LOG # Add ipmon(8) logging for ipfilter device
220 options IPFILTER_LOOKUP # ippool(8) support
221 options IPFILTER_COMPAT # Compat for IP-Filter
222 #options IPFILTER_DEFAULT_BLOCK # block all packets by default
223 options PPP_BSDCOMP # Add BSD compression to ppp device
224 options PPP_DEFLATE # Add deflate (libz) compression to ppp device
225 options PPP_FILTER # Add active filters for ppp (via bpf)
226
227 #options ALTQ # Manipulate network interfaces' output queues
228 #options ALTQ_BLUE # Stochastic Fair Blue
229 #options ALTQ_CBQ # Class-Based Queueing
230 #options ALTQ_CDNR # Diffserv Traffic Conditioner
231 #options ALTQ_FIFOQ # First-In First-Out Queue
232 #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
233 #options ALTQ_HFSC # Hierarchical Fair Service Curve
234 #options ALTQ_LOCALQ # Local queueing discipline
235 #options ALTQ_PRIQ # Priority Queueing
236 #options ALTQ_RED # Random Early Detection
237 #options ALTQ_RIO # RED with IN/OUT
238 #options ALTQ_WFQ # Weighted Fair Queueing
239
240
241
242 #### Main bus and CPU .. all systems.
243 mainbus0 at root
244 cpu0 at mainbus0
245 cpuunit0 at mainbus0 # sun4d
246 cpuunit* at mainbus0 # sun4d
247 cpu0 at cpuunit0 # sun4d
248
249 #### SX rendering engine found in SS20 and SS10SX
250 sx0 at mainbus0
251
252 #### Bus types found on SPARC systems.
253
254 sbus0 at mainbus0 # sun4c
255 obio0 at mainbus0 # sun4 and sun4m
256 sparcvme0 at mainbus0 # sun4
257 iommu0 at mainbus0 # sun4m
258 sbus0 at iommu0 # sun4m
259 sparcvme0 at iommu0 # sun4m
260 vme0 at sparcvme0 # MI VME attachment
261 bootbus0 at cpuunit0 # sun4d
262 bootbus* at cpuunit? # sun4d
263
264 ## SBus expander box
265 xbox* at sbus? slot ? offset ?
266 sbus* at xbox?
267
268 ## SBus to PCMCIA bridge
269 nell* at sbus? slot ? offset ? # PCMCIA bridge
270 pcmcia* at nell?
271 tslot* at sbus? slot ? offset ? # PCMCIA bridge (tadpole 3gx)
272 pcmcia* at tslot?
273
274 #### Standard system devices -- all required for a given architecture
275
276 ## Auxiliary system registers on sun4c and sun4m
277 auxreg0 at mainbus0 # sun4c
278 auxreg0 at obio0 # sun4m
279 auxiotwo0 at obio0 # only on Tadpole SPARCbook.
280
281 ## Power status and control register on Sun4m systems
282 power0 at obio0
283
284 ## Mostek clock found on 4/300, sun4c, sun4m and sun4d systems.
285 ## The Mostek clock NVRAM is the "eeprom" on sun4/300 systems.
286 clock0 at mainbus0 # sun4c
287 clock0 at obio0 # sun4m
288 clock0 at obio0 addr 0xf2000000 # sun4/300
289 clock0 at bootbus0 # sun4d
290
291 ## Intersil clock found on 4/100 and 4/200 systems.
292 oclock0 at obio0 addr 0xf3000000 # sun4/200
293 oclock0 at obio0 addr 0x03000000 # sun4/100
294
295 ## Memory error registers.
296 memreg0 at mainbus0 # sun4c
297 memreg0 at obio0 # sun4m
298 memreg0 at obio0 addr 0xf4000000 # sun4/200 and sun4/300
299 memreg0 at obio0 addr 0x04000000 # sun4/100
300
301 ## ECC memory control
302 eccmemctl0 at mainbus0 # sun4m
303
304 ## Timer chip found on 4/300, sun4c, and sun4m systems.
305 timer0 at mainbus0 # sun4c
306 timer0 at obio0 # sun4m
307 timer0 at obio0 addr 0xef000000 # sun4/300
308
309 ## EEPROM found on 4/100 and 4/200 systems. Note that the 4/300
310 ## doesn't use this driver; the `EEPROM' is in the NVRAM on the
311 ## Mostek clock chip on 4/300 systems.
312 eeprom0 at obio0 addr 0xf2000000 # sun4/200
313 eeprom0 at obio0 addr 0x02000000 # sun4/100
314
315
316 #### Serial port configuration
317
318 ## Zilog 8530 serial chips. Each has two-channels.
319 ## zs0 is ttya and ttyb. zs1 is the keyboard and mouse.
320 zs0 at mainbus0 # sun4c
321 zs0 at obio0 # sun4m
322 zs0 at obio0 addr 0xf1000000 level 12 # sun4/200 and sun4/300
323 zs0 at obio0 addr 0x01000000 level 12 # sun4/100
324 zs0 at bootbus0 # sun4d
325 zstty0 at zs0 channel 0 # ttya
326 zstty1 at zs0 channel 1 # ttyb
327
328 zs1 at mainbus0 # sun4c
329 zs1 at obio0 # sun4m
330 zs1 at obio0 addr 0xf0000000 level 12 # sun4/200 and sun4/300
331 zs1 at obio0 addr 0x00000000 level 12 # sun4/100
332 zs1 at bootbus0 # sun4d
333
334 # old kbd and mouse attachments
335 #kbd0 at zs1 channel 0 # keyboard
336 #ms0 at zs1 channel 1 # mouse
337 zstty* at zs?
338
339 # these are for wscons
340 kbd0 at zstty?
341 ms0 at zstty?
342 wskbd* at wskbddev?
343 wsmouse* at wsmousedev?
344
345 zs2 at obio0 addr 0xe0000000 level 12 # sun4/300
346 zstty2 at zs2 channel 0 # ttyc
347 zstty3 at zs2 channel 1 # ttyd
348
349 zs* at bootbus? # sun4d
350 zstty* at zs?
351
352 ## NS16x50 serial chips and clones. Present on the
353 ## Sun JavaStation-1 and Tadpole SPARCbook 3
354 com* at obio0 # sun4m
355
356 # Parallel port.
357 bpp* at sbus? slot? offset ?
358
359 ## Magma Serial/Parallel driver
360 magma* at sbus? slot ? offset ?
361 mtty* at magma?
362 mbpp* at magma?
363
364 ## SUNW,spif Serial/Parallel driver
365 spif* at sbus? slot ? offset ?
366 stty* at spif?
367 sbpp* at spif?
368
369 ## PCMCIA serial interfaces
370 #com* at pcmcia?
371 #pcmcom* at pcmcia?
372 #com* at pcmcom?
373
374 #### Disk controllers and disks
375
376 #
377
378 ## The following flags may be set for the NCR53c94 based esp driver:
379 ## bits 0-7: disable disconnect/reselect for the corresponding target
380 ## bits 8-15: disable synchronous negotiation for target [bit-8]
381
382 ## sun4/300, sun4c, sun4m on-board SCSI, and FSBE/S SBus SCSI cards.
383 ## Both `dma' and `esp' are needed in all cases.
384 ## Two kinds of additional SBus SCSI interfaces are available. One uses
385 ## "esp at sbus" like the sun4c on-board; the other uses "esp at dma".
386
387 ## sun4/300 SCSI - an NCR53c94 or equivalent behind
388 ## an LSI Logic DMA controller
389
390 dma0 at obio0 addr 0xfa001000 level 4 # sun4/300
391 esp0 at obio0 addr 0xfa000000 level 4 flags 0x0000 # sun4/300
392
393 dma0 at sbus0 slot ? offset ? # sun4c/sun4m
394 esp0 at sbus0 slot ? offset ? flags 0x0000 # sun4c
395 esp0 at dma0 flags 0x0000 # sun4m
396
397 # FSBE/S SCSI & SunSwift Sbus FAS366
398 dma* at sbus? slot ? offset ? # SBus
399 esp* at sbus? slot ? offset ? flags 0x0000 # SBus
400 esp* at dma? flags 0x0000 # SBus
401
402 scsibus* at esp?
403
404 ## Qlogic ISP SBus SCSI Card
405 isp* at sbus? slot ? offset ?
406 scsibus* at isp?
407
408 ## NCR5380-based "Sun SCSI 3" VME SCSI controller.
409 ## This driver has several flags which may be enabled by OR'ing
410 ## the values and using the "flags" directive.
411 ## Valid flags are:
412 ##
413 ## 0x01 Use DMA (may be polled)
414 ## 0x02 Use DMA completion interrupts
415 ## 0x04 Allow disconnect/reselect
416 ##
417 ## E.g. the following would enable DMA, interrupts, and reselect:
418 ## si0 at vme0 addr 0x200000 irq 3 vect 0x40 flags 0x07
419 ##
420 ## By default, DMA is enabled in the driver.
421
422 si0 at vme0 addr 0x200000 irq 2 vect 0x40
423 scsibus* at si?
424
425 ## NCR5380-based "SCSI Weird" on-board SCSI interface found
426 ## on sun4/100 systems. The flags are the same as the "si"
427 ## controller. Note, while DMA is enabled by default, only
428 ## polled DMA works at this time, and reselects do not work
429 ## on this particular controller.
430
431 sw0 at obio0 addr 0x0a000000 level 3
432 scsibus* at sw?
433
434 ## PCMCIA SCSI controllers
435 #aic* at pcmcia?
436 #spc* at pcmcia?
437 #scsibus* at aic?
438 #scsibus* at spc?
439
440
441 ## These entries find devices on all SCSI busses and assign
442 ## unit numbers dynamically.
443 sd* at scsibus? target ? lun ? # SCSI disks
444 st* at scsibus? target ? lun ? # SCSI tapes
445 cd* at scsibus? target ? lun ? # SCSI CD-ROMs
446 ch* at scsibus? target ? lun ? # SCSI changer devices
447 ss* at scsibus? target ? lun ? # SCSI scanners
448 ses* at scsibus? target ? lun ? # SCSI SES/SAF-TE
449 uk* at scsibus? target ? lun ? # unknown SCSI
450
451
452 ## Xylogics 753 or 7053 VME SMD disk controllers and disks, found
453 ## on sun4 systems.
454 xdc0 at vme0 addr 0xee80 irq 3 vect 0x44
455 xdc1 at vme0 addr 0xee90 irq 3 vect 0x45
456 xdc2 at vme0 addr 0xeea0 irq 3 vect 0x46
457 xdc3 at vme0 addr 0xeeb0 irq 3 vect 0x47
458 xd* at xdc? drive ?
459
460 ## Xylogics 451 or 451 VME SMD disk controllers and disks, found
461 ## on sun4 systems.
462 xyc0 at vme0 addr 0xee40 irq 3 vect 0x48
463 xyc1 at vme0 addr 0xee48 irq 3 vect 0x49
464 xy* at xyc? drive ?
465
466
467 ## Floppy controller and drive found on SPARCstations.
468
469 fdc0 at mainbus0 # sun4c controller
470 fdc0 at obio0 # sun4m controller
471 fd* at fdc0 # the drive itself
472
473 ## PCMCIA IDE controllers
474 #wdc* at pcmcia?
475 #atabus* at ata?
476 #wd* at atabus? drive ? flags 0x0000
477
478 ## A disk-like interface to files. Can be used to create floppy, CD,
479 ## miniroot images, etc.
480
481 pseudo-device vnd
482 #options VND_COMPRESSION # compressed vnd(4)
483
484 ## Concatenated and striped disks; with this, you can create a software-based
485 ## disk array similar to a "RAID 0" setup. See ccd(4).
486
487 pseudo-device ccd
488
489 ## Cryptographic disk devices; See cgd(4)
490
491 #pseudo-device cgd
492
493 ## RAIDframe disk driver: software RAID driver. See raid(4).
494
495 pseudo-device raid
496 options RAID_AUTOCONFIG # auto-configuration of RAID components
497 # Options to enable various other RAIDframe RAID types.
498 # options RF_INCLUDE_EVENODD=1
499 # options RF_INCLUDE_RAID5_RS=1
500 # options RF_INCLUDE_PARITYLOGGING=1
501 # options RF_INCLUDE_CHAINDECLUSTER=1
502 # options RF_INCLUDE_INTERDECLUSTER=1
503 # options RF_INCLUDE_PARITY_DECLUSTERING=1
504 # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
505
506
507 ## Memory disk device, used on boot floppies with compressed
508 ## kernel-plus-root-disk images.
509
510 #pseudo-device md
511
512
513 #### Network interfaces
514
515 ## LANCE Ethernet - an AMD 7990 LANCE behind specialized DMA glue
516 ## Three flavors of additional SBus ethernets are available. One attaches
517 ## directly like the sun4c on-board, one uses the ledma device like the
518 ## sun4m on-board, and one uses the lebuffer device.
519
520 le0 at obio0 addr 0xf9000000 level 6 # sun4/300
521 le0 at sbus0 slot ? offset ? # sun4c on-board
522 ledma0 at sbus0 slot ? offset ? # sun4m on-board
523 le0 at ledma0 # sun4m on-board
524 le* at sbus? slot ? offset ? # SBus
525 ledma* at sbus? slot ? offset ? # SBus
526 le* at ledma? # SBus
527 lebuffer0 at sbus? slot ? offset ? # SBus
528 le0 at lebuffer? # SBus
529 lebuffer* at sbus? slot ? offset ? # SBus
530 le* at lebuffer? # SBus
531
532
533 ## sun4/100 and sun4/200 Ethernet - an Intel 82586 on-board
534 ## or on a Multibus/VME card.
535 ie0 at obio0 addr 0xf6000000 level 6 # sun4/200 on-board
536 ie0 at obio0 addr 0x06000000 level 6 # sun4/100 on-board
537 ## VME: the first [addr,len] pair specifies the device registers;
538 ## the second pair specifies the on-board memory buffer
539 ie1 at vme0 addr 0xe88000,0xe00000 len -1,0x40000 irq 3 vect 0x75
540 ie2 at vme0 addr 0x31ff02,0x300000 len -1,0x40000 irq 3 vect 0x76
541 ie3 at vme0 addr 0x35ff02,0x300000 len -1,0x40000 irq 3 vect 0x77
542 ie4 at vme0 addr 0x2dff02,0x200000 len -1,0x40000 irq 3 vect 0x7c
543
544 ## Quad Ethernet Controller with BigMac (be, 10/100MBd) and Mace Ethernet
545 ## (qe, 10MBd) attached.
546 qec* at sbus? slot ? offset ? # Quad Ethernet Controller
547 be* at qec? # BigMac Ethernet (10/100MBd)
548 qe* at qec? # Mace Ethernet (10MBd)
549
550 ## Happy Meal Ethernet
551 hme* at sbus? slot ? offset ?
552
553 # midway ATM
554 en0 at sbus? slot ? offset ?
555
556 # PCMCIA ethernet devices
557 #ep* at pcmcia?
558 #mbe* at pcmcia?
559 #ne* at pcmcia?
560 #sm* at pcmcia?
561
562 ## PCMCIA wavelan card
563 #wi* at pcmcia? function ? # Lucent WaveLan IEEE (802.11)
564
565 # MII/PHY support
566 exphy* at mii? phy ? # 3Com internal PHYs
567 icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
568 inphy* at mii? phy ? # Intel 82555 PHYs
569 lxtphy* at mii? phy ? # Level One LXT-970 PHYs
570 nsphy* at mii? phy ? # NS83840 PHYs
571 qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
572 sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
573 tlphy* at mii? phy ? # ThunderLAN PHYs
574 ukphy* at mii? phy ? # generic unknown PHYs
575
576 ## Loopback network interface; required
577 pseudo-device loop
578
579 ## SLIP and CSLIP interfaces, for IP over a serial line.
580 pseudo-device sl
581
582 ## PPP, the successor to SLIP. See pppd(8).
583 pseudo-device ppp
584
585 ## PPP over Ethernet (RFC 2516)
586 pseudo-device pppoe
587
588 ## Starmode Radio IP, a special hardware network device.
589 #pseudo-device strip
590
591 ## Network "tunnel" device, allowing protocol stacks to run in the userland.
592 ## This is used by the third-party user-mode "ppp" program, and others.
593 pseudo-device tun
594 pseudo-device tap # virtual Ethernet
595
596 ## Generic L3 over IP tunnel
597 #pseudo-device gre # generic L3 over IP tunnel
598
599 ## Berkeley Packet Filter, required to run RARPD. A generic C-language
600 ## interface that allows selective examining of incoming packets.
601 pseudo-device bpfilter
602
603 #pseudo-device carp # Common Address Redundancy Protocol
604
605 ## IP Filter, used in firewall and NAT applications. See ipnat(8) for
606 ## one example of the use of the IP Filter.
607 pseudo-device ipfilter
608
609 ## for IPv6
610 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
611 #pseudo-device faith # IPv[46] tcp relay translation i/f
612 pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
613
614 ## IEEE 802.1Q Virtual LAN encapsulation, see vlan(4).
615 pseudo-device vlan
616
617 ## Simple inter-network traffic bridging
618 pseudo-device bridge
619 #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
620 pseudo-device agr # IEEE 802.3ad link aggregation
621
622 ## accept filters
623 pseudo-device accf_data # "dataready" accept filter
624 pseudo-device accf_http # "httpready" accept filter
625
626 #### Audio and video devices
627
628 ## /dev/audio support (`audioamd' plus `audio')
629 ##
630 audioamd0 at mainbus0 # sun4c
631 audioamd0 at obio0 # sun4m
632 audioamd0 at sbus0 slot ? offset ? # sun4m
633
634 audiocs0 at sbus0 slot ? offset ? # SUNW,CS4231
635
636 #options DBRI_DEBUG # noisy debug output from the dbri driver
637 #options DBRI_BIG_BUFFER # use bigger DMA buffers, for slow CPUs
638 dbri* at sbus? slot ? offset ? # SUNW,DBRI[s3|e]
639
640 audio* at audiobus?
641
642 ## Sun "bwtwo" black and white framebuffer, found on sun4, sun4c, and sun4m
643 ## systems. If your sun4 system has a cgfour installed in the P4 slot,
644 ## the P4 entries for "bwtwo" will attach to the overlay plane of the
645 ## "cgfour".
646
647 bwtwo0 at sbus0 slot ? offset ? # sun4c and sun4m
648 bwtwo* at sbus? slot ? offset ? #
649 bwtwo0 at obio0 addr 0xfd000000 level 4 # sun4/200
650 bwtwo0 at obio0 addr 0xfb300000 level 4 # sun4/300 in P4 slot
651 bwtwo0 at obio0 addr 0x0b300000 level 4 # sun4/100 in P4 slot
652
653 ## Sun "cgtwo" VME color framebuffer
654 # XXX no wsdisplay support
655 #cgtwo0 at vme0 addr 0x400000 irq ? vect 0xa8
656
657 ## Sun "cgthree" Sbus color framebuffer
658 cgthree0 at sbus? slot ? offset ?
659 cgthree* at sbus? slot ? offset ?
660
661 ## Sun "cgfour" color framebuffer with overlay plane. See above comment
662 ## regarding overlay plane.
663 # XXX no wsdisplay support
664 #cgfour0 at obio0 addr 0xfb300000 level 4 # sun4/300 P4
665 #cgfour0 at obio0 addr 0x0b300000 level 4 # sun4/100 P4
666
667 ## Sun "cgsix" accelerated color framebuffer.
668 cgsix0 at sbus? slot ? offset ?
669 cgsix* at sbus? slot ? offset ?
670 cgsix0 at obio0 addr 0xfb000000 level 4 # sun4/300 P4
671 cgsix0 at obio0 addr 0x0b000000 level 4 # sun4/100 P4
672
673 ## Sun "cgeight" 24-bit framebuffer
674 # XXX no wsdisplay support
675 #cgeight0 at obio0 addr 0xfb300000 level 4 # sun4/300 P4
676 #cgeight0 at obio0 addr 0x0b300000 level 4 # sun4/100 P4
677
678 ## Sun "tcx" accelerated color framebuffer.
679 # there can be only one
680 tcx0 at sbus? slot ? offset ?
681
682 ## Sun CG12 / Matrox SG3 accelerated 24bit framebuffer
683 cgtwelve* at sbus? slot ? offset ?
684 # the driver can use the color framebuffer or the monochrome overlay
685 # the latter is faster
686 options CG12_COLOR
687
688 # Sun "cgfourteen" accelerated 24-bit framebuffer.
689 cgfourteen* at obio0 # sun4m
690
691 # P9100-based display on Tadpole SPARCbook 3.
692 pnozz0 at sbus? slot ? offset ?
693 # the SPARCbook 3 hardware docs say that accesses to P9100 registers need to be
694 # 'latched in' but at least my 3GX works happily without
695 # Enable it by default since we don't know which hardware really needs it.
696 options PNOZZ_USE_LATCH
697
698 # Sun ZX/Leo 24-bit framebuffer
699 zx* at sbus? slot ? offset ?
700
701 # Fujitsu AG-10e accelerated graphics 8/24-bit board
702 agten* at sbus? slot ? offset ?
703
704 ## Southland Media Systems (now Quantum 3D) MGX
705 mgx* at sbus? slot ? offset ?
706
707 # generic framebuffer console
708 genfb* at sbus? slot ? offset ?
709
710 # make sure wsdisplay0 is the console
711 wsdisplay0 at wsemuldisplaydev? console 1
712 wsdisplay* at wsemuldisplaydev?
713
714 #### Other device configuration
715
716 # Tadpole microcontroller
717 tctrl0 at obio0
718
719 # Aurora Personality Chip (APC) on SPARCstation-4/5
720 # Not enabled by default as it may hang some systems
721 #apc* at sbus? slot ? offset ?
722
723 ## Pseudo ttys, required for network logins and programs like screen.
724
725 pseudo-device pty # pseudo-terminals
726
727 ## Random device, used to implement /dev/random (a source of random noise),
728 ## and generate randomness for some kernel formulae.
729
730
731 # a pseudo device needed for Coda # also needs CODA (above)
732 pseudo-device vcoda # coda minicache <-> venus comm.
733
734 pseudo-device clockctl # user control of clock subsystem
735 pseudo-device ksyms # /dev/ksyms
736 #pseudo-device pf # PF packet filter
737 #pseudo-device pflog # PF log if
738 pseudo-device fss # file system snapshot device
739 pseudo-device wsmux # mouse and keyboard multiplexor
740 pseudo-device wsfont
741 pseudo-device putter # for puffs and pud
742
743 #options FILEASSOC # fileassoc(9)
744 # and PAX_SEGVGUARD
745
746 # Veriexec
747 #
748 # a pseudo device needed for veriexec
749 #pseudo-device veriexec
750 #
751 # Uncomment the fingerprint methods below that are desired. Note that
752 # removing fingerprint methods will have almost no impact on the kernel
753 # code size.
754 #
755 #options VERIFIED_EXEC_FP_RMD160
756 #options VERIFIED_EXEC_FP_SHA256
757 #options VERIFIED_EXEC_FP_SHA384
758 #options VERIFIED_EXEC_FP_SHA512
759 #options VERIFIED_EXEC_FP_SHA1
760 #options VERIFIED_EXEC_FP_MD5
761
762 #options PAX_MPROTECT=0 # PaX mprotect(2) restrictions
763 # (for static binaries only for now)
764