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