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