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