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