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