GENERIC.in revision 1.147
1# $NetBSD: GENERIC.in,v 1.147 2020/10/26 06:21:49 rin Exp $
2#
3##
4# GENERIC machine description file
5#
6# This machine description file is used to generate the default NetBSD
7# kernel.  The generic kernel does not include all options, subsystems
8# and device drivers, but should be useful for most applications.
9#
10# The machine description file can be customised for your specific
11# machine to reduce the kernel size and improve its performance.
12#
13# For further information on compiling NetBSD kernels, see the config(8)
14# man page.
15#
16# For further information on hardware support for this architecture, see
17# the intro(4) man page.  For further information about kernel options
18# for this architecture, see the options(4) man page.  For an explanation
19# of each device driver in this file see the section 4 man page for the
20# device.
21
22m4_divert(-1)
23#
24# GENERIC Amiga or DraCo
25#
26# This configuration file contains all possible options
27#
28# make AMIGA extracts the AMIGA configuration file.
29# make DRACO extracts the DRACO configuration file.
30# make GENERIC extracts the GENERIC configuration file.
31# make INSTALL extracts the INSTALL configuration file.
32#
33# commit them, too.
34#
35
36# Define XXX_CONFIGURATION
37#
38m4_define(M4_Target`_CONFIGURATION', `')
39
40# If not building AMIGA, set DRACO_CONFIGURATION
41#
42m4_ifelse(M4_Target, `AMIGA', `', `m4_define(`DRACO_CONFIGURATION', `')')
43
44# If not building DRACO, set AMIGA_CONFIGURATION
45#
46m4_ifelse(M4_Target, `DRACO', `', `m4_define(`AMIGA_CONFIGURATION', `')')
47
48
49m4_divert(0)m4_dnl
50
51include "arch/amiga/conf/std.amiga"
52
53options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
54
55#ident 		"GENERIC-$Revision: 1.147 $"
56
57m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
58makeoptions	COPTS="-Os -fno-omit-frame-pointer"
59',`m4_dnl
60makeoptions	COPTS="-O2 -fno-reorder-blocks -fno-omit-frame-pointer"
61	# See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
62	# backtraces in DDB.
63')m4_dnl
64
65maxusers	8
66options 	RTC_OFFSET=0
67
68#
69# mainboards to support (in addition to Amiga)
70#
71m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl
72options 	DRACO
73')m4_dnl
74m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
75options 	BB060STUPIDROM	# You need this, if you have a non-DraCo
76				# MC68060 with an OS ROM up to (at least)
77				# V40 (OS3.1) and want to boot with the
78				# bootblock.
79				# You do not need this if you have a DraCo,
80				# have no 68060 or NEVER use the bootblock
81options 	P5PPC68KBOARD	# Phase5 PPC/68K board support
82')m4_dnl
83#
84# processors this kernel should support
85#
86options 	M68060		# support for 060
87options 	M060SP		# MC68060 software support (Required for 060)
88m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
89options 	M68040		# support for 040
90options 	FPSP		# MC68040 floating point support
91options 	M68030		# support for 030
92options 	M68020		# support for 020/851
93options 	FPU_EMULATE	# FPU emulation
94')m4_dnl
95
96#
97# Networking options
98#
99options 	INET		# IP networking support (Required)
100options 	INET6		# IPV6
101#options 	IPSEC		# IP security
102#options 	IPSEC_DEBUG	# debug for IP security
103#options 	GATEWAY		# Packet forwarding
104
105m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
106#options 	MROUTING	# Multicast routing
107#options 	PIM		# Protocol Independent Multicast
108options 	NETATALK	# AppleTalk networking protocols
109#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
110')m4_dnl
111
112options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
113options 	PPP_DEFLATE	# Deflate compression support for PPP
114options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
115
116#options 	ALTQ		# Manipulate network interfaces' output queues
117#options 	ALTQ_BLUE	# Stochastic Fair Blue
118#options 	ALTQ_CBQ	# Class-Based Queueing
119#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
120#options 	ALTQ_FIFOQ	# First-In First-Out Queue
121#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
122#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
123#options 	ALTQ_LOCALQ	# Local queueing discipline
124#options 	ALTQ_PRIQ	# Priority Queueing
125#options 	ALTQ_RED	# Random Early Detection
126#options 	ALTQ_RIO	# RED with IN/OUT
127#options 	ALTQ_WFQ	# Weighted Fair Queueing
128
129# Filesystems
130file-system 	FFS		# Berkeley fast file system
131file-system 	EXT2FS		# second extended file system (linux)
132#file-system 	LFS		# log-structured filesystem (experimental)
133
134m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
135file-system 	MFS		# Memory based filesystem
136')m4_dnl
137
138file-system 	NFS		# Network File System client side code
139file-system 	ADOSFS		# AmigaDOS file system
140file-system 	CD9660		# ISO 9660 + Rock Ridge filesystem
141file-system 	MSDOSFS		# MS-DOS filesystem
142
143file-system 	KERNFS		# kernel data-structure filesystem
144
145m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
146file-system 	FDESC		# user file descriptor filesystem
147file-system 	NULLFS		# loopback filesystem
148file-system 	OVERLAY		# overlay filesystem
149file-system 	PROCFS		# /proc filesystem
150file-system 	UMAPFS		# NULLFS + uid and gid remapping
151file-system 	UNION		# union filesystem
152file-system	PTYFS		# /dev/pts/N support
153file-system	TMPFS		# Efficient memory file-system
154#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
155')m4_dnl
156
157# Filesystem options
158
159#options 	FFS_EI		# FFS Endian Independent support
160options 	WAPBL		# File system journaling support
161
162m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
163options 	QUOTA		# legacy UFS quotas
164options 	QUOTA2		# new, in-filesystem UFS quotas
165#options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
166options 	NFSSERVER	# Network File System server side code
167#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
168options 	UFS_EXTATTR	# Extended attribute support for UFS1
169')m4_dnl
170
171#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
172				# immutable) behave as system flags.
173
174#
175# Compatibility options for various existing systems
176#
177
178m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
179
180include 	"conf/compat_netbsd09.config"
181
182options 	COMPAT_SUNOS	# Support to run Sun (m68k) executables
183options 	COMPAT_NOMID	# allow nonvalid machine id executables
184#options 	COMPAT_LINUX	# Support to run Linux/m68k executables
185')m4_dnl
186
187options 	EXEC_AOUT	# 32-bit aout executables (NetBSD-1.5.x)
188options 	COMPAT_AOUT_M68K # actually make some system calls work.
189
190m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
191#
192# Support for System V IPC facilities.
193#
194options 	SYSVSHM		# System V-like shared memory
195options 	SYSVMSG		# System V-like messages
196options 	SYSVSEM		# System V-like semaphores
197')m4_dnl
198
199#
200# Support for various kernel options
201#
202
203m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
204options 	KTRACE		# system call tracing support
205')m4_dnl
206#options 	INSECURE	# disable kernel security levels
207options 	SCSIVERBOSE	# human readable SCSI error messages
208options 	USERCONF	# userconf(4) support
209m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
210options 	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
211options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
212', `m4_dnl
213options 	NTP		# NTP phase/frequency locked loop
214#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
215')m4_dnl
216
217# Alternate buffer queue strategies for better responsiveness under high
218# disk I/O load.
219#options 	BUFQ_READPRIO
220options 	BUFQ_PRIOCSCAN
221
222#
223# Misc. debugging options
224#
225options 	DDB		# Kernel debugger
226#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
227#options 	DIAGNOSTIC	# Extra kernel sanity checks
228#options 	DEBUG		# Enable misc. kernel debugging code
229makeoptions	DEBUG="-g"	# compile full symbol table
230#options 	SYSCALL_DEBUG	# debug all syscalls.
231#options 	SCSIDEBUG	# Add SCSI debugging statements
232#options 	PANICBUTTON	# Forced crash via keypress (?)
233
234#
235# Amiga specific options
236#
237#options 	LIMITMEM=24	# Do not use more than LIMITMEM MB of the
238				# first bank of RAM. (default: unlimited)
239
240# ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete
241# before the 10 secondinterval ends, or that KBDRESET does work at all.
242#options 	KBDRESET	# sync on Ctrl-Amiga-Amiga
243
244# These options improve performance with the built-in serial port
245# on slower Amigas.  Try the larger buffers first then lev6_defer.
246#options 	SERIBUF_SIZE=4096
247#options 	SEROBUF_SIZE=32
248#options 	LEV6_DEFER	# defers l6 to l4 (below serial l5)
249
250m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
251#options	DEVRELOAD	# implement /dev/reload
252#				# currently only works for a.out kernels
253')m4_dnl
254
255options 	RETINACONSOLE	# enable code to allow retina to be console
256m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
257options 	ULOWELLCONSOLE	# enable code to allow a2410 to be console
258options 	CL5426CONSOLE	# Cirrus console
259options 	CV64CONSOLE	# CyberVision console
260options 	TSENGCONSOLE	# Tseng console
261options 	CV3DCONSOLE	# CyberVision 64/3D console
262
263options 	GRF_ECS		# Enhanced Chip Set
264options 	GRF_NTSC	# NTSC
265options 	GRF_PAL		# PAL
266options 	GRF_A2024	# Support for the A2024
267options 	GRF_AGA		# AGA Chip Set
268options 	GRF_AGA_VGA	# AGA VGAONLY timing
269options 	GRF_SUPER72	# AGA Super-72
270')m4_dnl
271#options 	KFONT_8X11	# 8x11 font
272
273# select a font for the console according to the character set and keymap
274# you want to use
275options        KFONT_CONS_ISO8859_1
276#options         KFONT_CONS_ISO8859_2
277
278# This is how you would tell the kernel the A2410 oscillator frequencies:
279# The used frequencies are the defaults, and do not need option setting
280#options 	ULOWELL_OSC1=36000000
281#options 	ULOWELL_OSC2=66667000
282
283# This is how you specify the blitting speed, higher values may speed up blits
284# a littel bit.  If you raise this value too much some trash may appear.
285# the commented version is the default.
286#options 	RH_MEMCLK=61000000
287# this option enables the 64 bit sprite which does not work
288# for quite a few people.  E.g. The cursor sprite will turn to a block
289# when moved to the top of the screen in X.
290#options 	RH_64BIT_SPRITE
291# enables fast scroll code appears to now work on 040 systems.
292#options 	RETINA_SPEED_HACK
293# enables the Hardwarecursor which does not work on some systems.
294#options 	RH_HARDWARECURSOR
295
296m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
297# wscons aware interface to amiga custom chips.
298# If you enable it enable also wskbd.
299#
300#amidisplaycc0	at mainbus0		# wscons interface to custom chips
301#wsdisplay0	at amidisplaycc0 console ?
302#options 	WSEMUL_VT100
303#options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
304#options 	FONT_VT220L8x10
305#options	FONT_VT220ISO8x16
306')m4_dnl
307
308m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
309#z3rambd*	at zbus0		# Zorro III RAM block devices
310#altmem*	at z3rambd?
311
312p5bus0		at zbus0		# Phase5 CSPPC/BPPC internal bus
313
314grfcc0		at mainbus0		# custom chips
315grfrt0		at zbus0		# retina II
316')m4_dnl
317grfrh0		at zbus0		# retina III
318m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
319grfcl*		at zbus0		# Picasso II/Piccolo/Spectrum
320grful0		at zbus0		# A2410
321grfcv0		at zbus0		# CyberVision 64
322grfet*		at zbus0		# Tseng (oMniBus, Domino, Merlin)
323grfcv3d0	at zbus0		# CyberVision 64/3D
324')m4_dnl
325
326m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
327grf0		at grfcc0
328grf1		at grfrt0
329')m4_dnl
330grf2		at grfrh0
331m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
332grf3		at grfcl?
333grf4		at grful0
334grf5		at grfcv0
335grf6		at grfet?
336grf7		at grfcv3d0
337ite0		at grf0			# terminal emulators for grfs
338ite1		at grf1			# terminal emulators for grfs
339')m4_dnl
340ite2		at grf2			# terminal emulators for grfs
341m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
342ite3		at grf3			# terminal emulators for grfs
343ite4		at grf4			# terminal emulators for grfs
344ite5		at grf5			# terminal emulators for grfs
345ite6		at grf6			# terminal emulators for grfs
346ite7		at grf7			# terminal emulators for grfs
347
348#wsdisplay*	at grf5 console ?	# wsdisplay on top of grf (CV64)
349#wsdisplay*	at grf7 console ?	# wsdisplay on top of grf (CV64/3D)
350')m4_dnl
351
352msc0		at zbus0		# A2232 MSC multiport serial.
353mfc0		at zbus0		# MultiFaceCard I/O board
354mfcs0		at mfc0 unit 0		# MFC serial
355mfcs1		at mfc0 unit 1		# MFC serial
356#mfcp0		at mfc0 unit 0		# MFC parallel [not available yet]
357#mfc1		at zbus0		# MultiFaceCard 2nd I/O board
358#mfcs2		at mfc1 unit 0
359#mfcs3		at mfc1 unit 1
360#mfcp1		at mfc1 unit 0
361
362hyper*		at zbus?		# zbus HyperCom3/3+/4/4+
363#hyper*		at mainbus0		# not yet: HyperCom1 + HyperCom3
364com*		at hyper? port ?	# Hypercom3/4 serial ports
365lpt*		at hyper? port ?	# Hypercom3+/4+ parallel port
366
367#options 	IOBZCLOCK=22118400 	# default, uncomment the next line
368#options 	IOBZCLOCK=24000000	# if needed.
369
370iobl*		at zbus?		# zbus IOBlix
371com*		at iobl? port ?		# IOBlix serial ports
372lpt*		at iobl? port ?		# IOBlix parallel ports
373
374
375#
376# Keyboard device. Optionally can attach a wskbd.
377# wskbd works together with a wsdisplay so enable them both if you will.
378# Don't enable wskbd if you use ite.
379#
380# XXX in std.amiga: kbd0 at mainbus0
381#wskbd0		at kbd0 console ?
382
383
384m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
385#
386# Amiga Mainboard devices (sans graphics and keyboard)
387#
388
389ser0		at mainbus0		# Amiga onboard serial
390par0		at mainbus0		# Amiga onboard parallel
391ms*		at mainbus0		# Amiga mice
392fdc0		at mainbus0		# Amiga FDC
393fd*		at fdc0 unit ?		# floppy disks on the later
394a34kbbc0	at mainbus0		# A3000/A4000 battery backed clock
395a2kbbc0 	at mainbus0		# A2000 battery backed clock
396m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
397aucc*		at mainbus0		# Amiga CC audio
398audio*		at aucc?
399
400spkr*		at audio?		# PC speaker (synthesized)
401
402a1k2cp0         at mainbus0             # A1200 on-board clockport
403clockport*      at a1k2cp0
404
405#com*            at clockport?           # Individual Computers SilverSurfer
406')m4_dnl
407')m4_dnl
408
409#wsmouse*	at ms?
410
411m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl
412#
413# DraCo Mainboard devices (sans keyboard)
414#
415
416drbbc0		at mainbus0		# DraCo battery backed clock
417drsupio0	at mainbus0		# DraCo superio chip
418com*		at drsupio? port ?	# DraCo serial
419lpt0		at drsupio? port ?	# DraCo parallel
420')m4_dnl
421
422#
423# Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics)
424#
425
426m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
427m4_ifdef(`DRACO_CONFIGURATION', `', `m4_dnl
428# Alas, Melody-Z2 dont configure in the DraCo bus.
429melody* 	at zbus0		# Melody MPEG audio decoder
430audio*		at melody?
431')m4_dnl
432
433repulse*	at zbus0		# ALiENDESiGN Repulse
434audio*		at repulse?
435
436toccata*	at zbus0		# MacroSystem GmbH Toccata
437audio*		at toccata?
438')m4_dnl
439
440# Ethernet cards:
441le*		at zbus0		# A2065, Ameristar, Ariadne
442ne*		at zbus0		# AriadneII
443ed*		at zbus0		# Hydra, ASDG LanRover
444es*		at zbus0		# CEI A4066 EthernetPLUS
445qn*		at zbus0		# Quicknet
446
447m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
448xsh*		at zbus0		# X-Surf 100
449ne*		at xshbus?		# NE2000 chip on X-Surf 100
450
451xsurf*		at zbus0		# X-Surf
452ne*		at xsurfbus?		# NE2000 chip on X-Surf
453gencp*		at xsurfbus?		# clockports on X-Surf
454wdc*		at xsurfbus?		# IDE on X-Surf
455
456clockport*	at gencp?
457')m4_dnl
458
459# Arcnet
460bah*		at zbus0		# C=/Ameristar A2060 / 560
461
462m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
463# Greater Valley Product Bus
464gvpbus* 	at zbus0
465
466# scsi stuff, all possible
467gtsc0		at gvpbus?		# GVP series II scsi
468scsibus*	at gtsc0
469ahsc0		at mainbus0		# A3000 scsi
470scsibus*	at ahsc0
471atzsc0		at zbus0		# A2091 scsi
472scsibus*	at atzsc0
473wstsc0		at zbus0		# Wordsync II scsi
474scsibus*	at wstsc0
475ivsc0		at zbus0		# IVS scsi
476scsibus*	at ivsc0
477mlhsc0		at zbus0		# Hacker scsi
478scsibus*	at mlhsc0
479otgsc0		at zbus0		# 12 gauge scsi
480scsibus*	at otgsc0
481zssc0		at zbus0		# Zeus scsi
482scsibus*	at zssc0
483mgnsc0		at zbus0		# Magnum scsi
484scsibus*	at mgnsc0
485wesc0		at zbus0		# Warp Engine scsi
486scsibus*	at wesc0
487bppcsc0		at p5bus0		# BlizzardPPC 603e+ scsi
488scsibus*	at bppcsc0
489afsc0		at zbus0		# A4091 scsi
490scsibus*	at afsc0
491aftsc0		at mainbus0		# A4000T scsi
492scsibus*	at aftsc0
493flsc0		at zbus0		# FastlaneZ3 scsi
494scsibus*	at flsc0
495bzsc0		at zbus0		# Blizzard 1230 I,II scsi
496scsibus*	at bzsc0
497bzivsc0 	at zbus0		# Blizzard 12x0 IV scsi
498scsibus*	at bzivsc0
499bztzsc0 	at zbus0		# Blizzard 2060 scsi
500scsibus*	at bztzsc0
501cbsc0		at zbus0		# CyberSCSI I
502scsibus*	at cbsc0
503cbiisc0 	at zbus0		# CyberSCSI II
504scsibus*	at cbiisc0
505cbiiisc0 	at p5bus0		# Cyberstorm mk.III/Cyberstorm PPC SCSI
506scsibus*	at cbiiisc0
507empsc0		at zbus0		# Emplant scsi
508scsibus*	at empsc0
509
510acafh0		at mainbus0		# Individual Computers ACA500
511wdc*		at acafhbus?		# CF slots on ACA500
512gencp*		at acafhbus?		# clockport on ACA500
513
514wdc0		at mainbus0		# A4000 & A1200 IDE bus
515wdc*		at zbus0		# Buddha / Catweasel
516#efa0		at mainbus0		# ELBOX FastATA 1200 Mk-III/Mk-IV 
517
518atabus* 	at wdc? channel ?	# ATA bus
519#atabus*	at efa? channel ?	# ATA bus 
520atabus*		at ata? channel ?	# ATA bus 
521wd*		at atabus? drive ?	#  + drives
522atapibus*	at atabus?		# ATAPI bus
523cd*		at atapibus? drive ?	# ATAPI CD-ROM drives
524sd*		at atapibus? drive ?	# ATAPI disk drives
525
526pccard0		at mainbus0
527pcmcia*		at pccard0
528com*		at pcmcia? function ?	# Modems and serial cards
529pcmcom*		at pcmcia? function ?	# PCMCIA multi-port serial cards
530aic*		at pcmcia? function ?	# Adaptec APA-1460 SCSI
531wdc*		at pcmcia? function ?
532awi*		at pcmcia? function ?	# BayStack 650 (802.11FH)
533ep*		at pcmcia? function ?	# 3Com 3c589 and 3c562 Ethernet
534mbe*		at pcmcia? function ?	# MB8696x based Ethernet
535ne*		at pcmcia? function ?	# NE2000-compatible Ethernet
536sm*		at pcmcia? function ?	# Megahertz Ethernet
537mhzc*		at pcmcia? function ?	# Megahertz Ethernet/Modem combo cards
538com*		at mhzc?
539sm*		at mhzc?
540
541nsphyter*	at mii? phy ?		# NS83843 PHYs
542ukphy*		at mii? phy ?		# generic unknown PHYs
543')m4_dnl
544
545m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl
546drsc0		at mainbus0		# DraCo scsi
547scsibus*	at drsc0
548')m4_dnl
549
550
551# each hard drive from low target to high
552# will configure to the next available sd unit number
553sd*	at scsibus? target ? lun ?	# scsi disks
554st*	at scsibus? target ? lun ?	# scsi tapes
555cd*	at scsibus? target ? lun ?	# scsi cds
556ch*	at scsibus? target ? lun ?	# scsi autochangers
557m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
558ss*	at scsibus? target ? lun ?	# scsi scanner
559uk*	at scsibus? target ? lun ?	# scsi unknown
560')m4_dnl
561m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
562
563# PCI bus support
564options		PCIVERBOSE              # verbose PCI device autoconfig messages
565#options	PCI_CONFIG_DUMP
566options		PCI_NETBSD_CONFIGURE	# supported by mppb(4), p5pb(4), empb(4)
567
568p5pb0		at p5bus0		# Phase5 PCI bridge (CVPPC/BVPPC/G-REX)
569p5membar*	at zbus0		# Phase5 PCI bridge autoconfiguring BARs
570#options	P5PB_DEBUG		# enable excessive debug for p5pb
571#options	P5PB_CONSOLE		# console on CVPPC/BVPPC/Voodoo3
572pci*		at p5pb0
573
574mppb*           at zbus0		# Matay Prometheus Zorro-PCI bridge
575pci*            at mppb?
576
577empb0		at zbus0		# ELBOX Mediator PCI 1200
578em4k0		at zbus0		# ELBOX Mediator PCI 4000
579emmem0		at zbus0		# ELBOX Mediator PCI memory space
580empm0		at empb0		# ELBOX Mediator PCI Power Management
581pci*		at empb0
582pci*		at em4k0
583
584#cv3dpb*	at zbus0		# CyberVision 64/3D PCI bridge
585
586#genfb*		at pci?			# generic fb, CVPPC/BVPPC only
587#voodoofb*	at pci?			# 3Dfx Voodoo 3 in G-REX
588#radeonfb*	at pci?			# untested
589
590ne*             at pci?			# NE2000 Ethernet
591satalink* at pci? dev ? function ? flags 0x0002	# SiI SATALink 3112 
592
593# Bluetooth Controller and Device support
594# tested only with btuart on an A1200
595
596# Bluetooth PCMCIA Controllers
597bt3c*   at pcmcia? function ?           # 3Com 3CRWB6096-A
598btbc*   at pcmcia? function ?           # AnyCom BlueCard LSE041/039/139
599
600# Bluetooth Device Hub
601bthub*  at bcsp?
602bthub*  at bt3c?
603bthub*  at btbc?
604bthub*  at btuart?
605
606# Bluetooth HID support
607bthidev* at bthub?
608
609# Bluetooth Mouse
610#btms*   at bthidev? reportid ?
611#wsmouse* at btms? mux 0
612
613# Bluetooth Keyboard
614#btkbd* at bthidev? reportid ?
615#wskbd* at btkbd? console ? mux 1
616
617# Bluetooth Apple Magic Mouse
618#btmagic* at bthub?
619#wsmouse* at btmagic? mux 0
620
621# Bluetooth Audio support
622#btsco* at bthub?
623
624# USB
625slhci*		at zbus?                # Thylacine
626usb*		at slhci?
627
628uhub*		at usb?
629uhub*		at uhub? port ?
630
631uhidev*		at uhub? port ? configuration ? interface ?
632uhid*		at uhidev? reportid ?
633
634')m4_dnl
635m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
636#
637# accept filters
638pseudo-device	accf_data		# "dataready" accept filter
639pseudo-device	accf_http		# "httpready" accept filter
640')m4_dnl
641
642pseudo-device	loop			# loopback network interface
643pseudo-device	sl			# SLIP network interfaces
644pseudo-device	ppp			# PPP network interfaces
645pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
646pseudo-device	tun			# network tunnel line discipline
647pseudo-device	tap			# virtual Ethernet
648#pseudo-device	gre			# generic L3 over IP tunnel
649pseudo-device	bpfilter		# Berkeley packet filter
650pseudo-device	carp			# Common Address Redundancy Protocol
651pseudo-device	npf			# NPF packet filter
652pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
653#pseudo-device	faith			# IPv[46] tcp relay translation i/f
654pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
655pseudo-device	vlan			# IEEE 802.1q encapsulation
656pseudo-device	bridge			# simple inter-network bridging
657pseudo-device	vether			# Virtual Ethernet for bridge
658pseudo-device	agr			# IEEE 802.3ad link aggregation
659m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
660#pseudo-device	fss			# file system snapshot device
661', `m4_dnl
662pseudo-device	fss			# file system snapshot device
663')m4_dnl
664m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
665#pseudo-device	putter			# for puffs and pud
666', `m4_dnl
667pseudo-device	putter			# for puffs and pud
668')m4_dnl
669
670pseudo-device	view		4	# views (needed for grfcc)
671m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
672pseudo-device	pty			# pseudo-terminals
673', `m4_dnl
674pseudo-device	pty			# pseudo-terminals
675')m4_dnl
676pseudo-device	clockctl		# user control of clock subsystem
677m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
678pseudo-device	drvctl			# user control of drive subsystem
679')m4_dnl
680
681#pseudo-device	wsfont			# wsfont(4) dynamic font loading support
682#pseudo-device	wsmux			# mouse & keyboard multiplexor
683
684pseudo-device	vnd			# vnode pseudo-disks
685#options 	VND_COMPRESSION		# compressed vnd(4)
686pseudo-device	ccd			# concatenated disk devices
687#pseudo-device	cgd			# cryptographic disk devices
688pseudo-device	raid			# RAIDframe disk driver
689options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
690# Options to enable various other RAIDframe RAID types.
691# options 	RF_INCLUDE_EVENODD=1
692# options 	RF_INCLUDE_RAID5_RS=1
693# options 	RF_INCLUDE_PARITYLOGGING=1
694# options 	RF_INCLUDE_CHAINDECLUSTER=1
695# options 	RF_INCLUDE_INTERDECLUSTER=1
696# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
697# options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
698
699#options 	RND_COM			# use "com" randomness as well (BROKEN)
700
701m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
702pseudo-device	ksyms			# /dev/ksyms (kernel symbols)
703')m4_dnl
704m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
705pseudo-device   bcsp                    # BlueCore Serial Protocol
706pseudo-device   btuart                  # Bluetooth HCI UART (H4)
707')m4_dnl
708
709# Veriexec
710include "dev/veriexec.config"
711
712config	netbsd root on ? type ?
713