GENERIC.in revision 1.25
1# $NetBSD: GENERIC.in,v 1.25 2004/09/04 23:29:46 manu Exp $
2#
3# GENERIC machine description file
4#
5# This machine description file is used to generate the default NetBSD
6# kernel.  The generic kernel does not include all options, subsystems
7# and device drivers, but should be useful for most applications.
8#
9# The machine description file can be customised for your specific
10# machine to reduce the kernel size and improve its performance.
11#
12# For further information on compiling NetBSD kernels, see the config(8)
13# man page.
14#
15# For further information on hardware support for this architecture, see
16# the intro(4) man page.  For further information about kernel options
17# for this architecture, see the options(4) man page.  For an explanation
18# of each device driver in this file see the section 4 man page for the
19# device.
20
21m4_divert(-1)
22#
23# GENERIC Amiga or DraCo
24#
25# This configuration file contains all possible options
26#
27# make AMIGA extracts the AMIGA configuration file.
28# make DRACO extracts the DRACO configuration file.
29# make GENERIC extracts the GENERIC configuration file.
30# make INSTALL extracts the INSTALL configuration file.
31# make WSCONS extracts the WSCONS 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# If building WSCONS, uncomment various options
49#
50m4_ifdef(`WSCONS_CONFIGURATION', `m4_define(`WSOFF', `wson')', `m4_define(`WSOFF', `wsoff')')
51
52
53m4_divert(0)m4_dnl
54
55include "arch/amiga/conf/std.amiga"
56
57options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
58
59#ident 		"GENERIC-$Revision: 1.25 $"
60
61m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
62makeoptions	COPTS="-Os"
63')m4_dnl
64
65maxusers	8
66options 	RTC_OFFSET=0
67
68#
69# mainboards to support (in addition to Amiga)
70#
71m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl
72options 	DRACO
73')m4_dnl
74m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
75options 	BB060STUPIDROM	# You need this, if you have a non-DraCo
76				# MC68060 with an OS ROM up to (at least)
77				# V40 (OS3.1) and want to boot with the
78				# bootblock.
79				# You do not need this if you have a DraCo,
80				# have no 68060 or NEVER use the bootblock
81options 	P5PPC68KBOARD	# Phase5 PPC/68K board support
82')m4_dnl
83#
84# processors this kernel should support
85#
86options 	M68060		# support for 060
87options 	M060SP		# MC68060 software support (Required for 060)
88m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
89options 	M68040		# support for 040
90options 	FPSP		# MC68040 floating point support
91options 	M68030		# support for 030
92options 	M68020		# support for 020/851
93options 	FPU_EMULATE	# FPU emulation
94')m4_dnl
95
96#
97# Networking options
98#
99options 	INET		# IP networking support (Required)
100options 	INET6		# IPV6
101#options 	IPSEC		# IP security
102#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
103#options 	IPSEC_DEBUG	# debug for IP security
104#options 	GATEWAY		# Packet forwarding
105#options 	DIRECTED_BROADCAST	# Broadcast across subnets
106
107m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
108#options 	MROUTING	# Multicast routing
109#options 	PIM		# Protocol Independent Multicast
110options 	NS		# XNS
111#options 	NSIP		# XNS tunneling over IP
112options 	ISO,TPIP	# OSI
113#options 	EON		# OSI tunneling over IP
114options 	CCITT,LLC,HDLC	# X.25
115options 	NETATALK	# AppleTalk networking protocols
116#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
117')m4_dnl
118
119options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
120options 	PPP_DEFLATE	# Deflate compression support for PPP
121options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
122options 	PFIL_HOOKS	# pfil(9) packet filter hooks
123options 	IPFILTER_LOG	# ipmon(8) log support
124#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
125
126#options 	ALTQ		# Manipulate network interfaces' output queues
127#options 	ALTQ_BLUE	# Stochastic Fair Blue
128#options 	ALTQ_CBQ	# Class-Based Queueing
129#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
130#options 	ALTQ_FIFOQ	# First-In First-Out Queue
131#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
132#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
133#options 	ALTQ_LOCALQ	# Local queueing discipline
134#options 	ALTQ_PRIQ	# Priority Queueing
135#options 	ALTQ_RED	# Random Early Detection
136#options 	ALTQ_RIO	# RED with IN/OUT
137#options 	ALTQ_WFQ	# Weighted Fair Queueing
138
139# Filesystems
140file-system 	FFS		# Berkeley fast file system
141file-system 	EXT2FS		# second extended file system (linux)
142#file-system 	LFS		# log-structured filesystem (experimental)
143
144m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
145file-system 	MFS		# Memory based filesystem
146')m4_dnl
147
148file-system 	NFS		# Network File System client side code
149file-system 	ADOSFS		# AmigaDOS file system
150file-system 	CD9660		# ISO 9660 + Rock Ridge filesystem
151file-system 	MSDOSFS		# MS-DOS filesystem
152
153file-system 	KERNFS		# kernel data-structure filesystem
154
155m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
156file-system 	FDESC		# user file descriptor filesystem
157file-system 	NULLFS		# loopback filesystem
158file-system 	OVERLAY		# overlay filesystem
159#file-system 	PORTAL		# Portal filesystem
160file-system 	PROCFS		# /proc filesystem
161file-system 	UMAPFS		# NULLFS + uid and gid remapping
162file-system 	UNION		# union filesystem
163')m4_dnl
164
165# Filesystem options
166
167#options 	FFS_EI		# FFS Endian Independant support
168
169m4_ifdef(`INSTALL_CONFIGURATION', `
170options 	VNODE_OP_NOINLINE	# Not inlining vnode op calls saves mem
171', `m4_dnl
172options 	QUOTA		# User and group quotas in FFS
173options 	SOFTDEP		# FFS soft updates support.
174options 	NFSSERVER	# Network File System server side code
175')m4_dnl
176
177#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
178				# immutable) behave as system flags.
179
180#
181# Compatibility options for various existing systems
182#
183
184m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
185#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
186options 	COMPAT_43	# compatibility with 4.3BSD interfaces
187options 	COMPAT_09	# compatibility with NetBSD 0.9
188options 	COMPAT_10	# compatibility with NetBSD 1.0
189options 	COMPAT_12	# compatibility with NetBSD 1.2
190options 	COMPAT_13	# compatibility with NetBSD 1.3
191options 	COMPAT_14	# compatibility with NetBSD 1.4
192options 	COMPAT_15	# compatibility with NetBSD 1.5
193options 	COMPAT_16	# compatibility with NetBSD 1.6
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.
202
203m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
204#
205# Support for System V IPC facilities.
206#
207options 	SYSVSHM		# System V-like shared memory
208options 	SYSVMSG		# System V-like messages
209options 	SYSVSEM		# System V-like semaphores
210#options 	SEMMNI=10	# number of semaphore identifiers
211#options 	SEMMNS=60	# number of semaphores in system
212#options 	SEMUME=10	# max number of undo entries per process
213#options 	SEMMNU=30	# number of undo structures in system
214options 	P1003_1B_SEMAPHORE # p1003.1b semaphore support
215')m4_dnl
216
217#
218# Support for various kernel options
219#
220
221m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
222options 	KTRACE		# system call tracing support
223options 	SYSTRACE	# system call vetting via systrace(1)
224options 	LKM		# Loadable kernel modules
225')m4_dnl
226#options 	INSECURE	# disable kernel security levels
227options 	SCSIVERBOSE	# human readable SCSI error messages
228options 	USERCONF	# userconf(4) support
229m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
230options 	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
231options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
232options 	MALLOC_NOINLINE		# Not inlining MALLOC saves memory
233', `m4_dnl
234options 	NTP		# NTP phase/frequency locked loop
235#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
236')m4_dnl
237
238# Enable experimental buffer queue strategy for better responsiveness under 
239# high disk I/O load. Use it with caution - it's not proven to be stable yet.
240#options 	NEW_BUFQ_STRATEGY
241
242#
243# Misc. debugging options
244#
245options 	DDB		# Kernel debugger
246#options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
247options 	DIAGNOSTIC	# Extra kernel sanity checks
248#options 	DEBUG		# Enable misc. kernel debugging code
249#options 	SYSCALL_DEBUG	# debug all syscalls.
250#options 	SCSIDEBUG	# Add SCSI debugging statements
251#options 	PANICBUTTON	# Forced crash via keypress (?)
252
253#
254# Amiga specific options
255#
256#options 	LIMITMEM=24	# Do not use more than LIMITMEM MB of the
257				# first bank of RAM. (default: unlimited)
258#options 	NKPTADD=4	# set this for 4 additional KPT pages
259#options 	NKPTADDSHIFT=24	# set this for 1 additional KPT page
260				# per 16 MB (1<<24 bytes) of RAM
261				# uncomment and decrease this, or uncomment and
262				# increase NKPTADD if you get "out of PT pages"
263				# panics.
264
265# ATTENTION: There is NO WARRANTY AT ALL that the sync will be complete
266# before the 10 secondinterval ends, or that KBDRESET does work at all.
267#options 	KBDRESET	# sync on Ctrl-Amiga-Amiga
268
269# These options improve performance with the built-in serial port
270# on slower Amigas.  Try the larger buffers first then lev6_defer.
271#options 	SERIBUF_SIZE=4096
272#options 	SEROBUF_SIZE=32
273#options 	LEV6_DEFER	# defers l6 to l4 (below serial l5)
274
275m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
276#options	DEVRELOAD	# implement /dev/reload
277#				# currently only works for a.out kernels
278')m4_dnl
279
280options 	RETINACONSOLE	# enable code to allow retina to be console
281m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
282options 	ULOWELLCONSOLE	# enable code to allow a2410 to be console
283options 	CL5426CONSOLE	# Cirrus console
284options 	CV64CONSOLE	# CyberVision console
285options 	TSENGCONSOLE	# Tseng console
286options 	CV3DCONSOLE	# CyberVision 64/3D console
287
288options 	GRF_ECS		# Enhanced Chip Set
289options 	GRF_NTSC	# NTSC
290options 	GRF_PAL		# PAL
291options 	GRF_A2024	# Support for the A2024
292options 	GRF_AGA		# AGA Chip Set
293options 	GRF_AGA_VGA	# AGA VGAONLY timing
294options 	GRF_SUPER72	# AGA Super-72
295')m4_dnl
296#options 	KFONT_8X11	# 8x11 font
297
298# select a font for the console according to the character set and keymap
299# you want to use
300options        KFONT_CONS_ISO8859_1
301#options         KFONT_CONS_ISO8859_2
302
303# This is how you would tell the kernel the A2410 oscillator frequencies:
304# The used frequencies are the defaults, and do not need option setting
305#options 	ULOWELL_OSC1=36000000
306#options 	ULOWELL_OSC2=66667000
307
308# This is how you specify the blitting speed, higher values may speed up blits
309# a littel bit.  If you raise this value too much some trash may appear.
310# the commented version is the default.
311#options 	RH_MEMCLK=61000000
312# this option enables the 64 bit sprite which does not work
313# for quite a few people.  E.g. The cursor sprite will turn to a block
314# when moved to the top of the screen in X.
315#options 	RH_64BIT_SPRITE
316# enables fast scroll code appears to now work on 040 systems.
317#options 	RETINA_SPEED_HACK
318# enables the Hardwarecursor which does not work on some systems.
319#options 	RH_HARDWARECURSOR
320
321m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
322# wscons aware interface to amiga custom chips.
323# If you enable it enable also wskbd.
324#
325m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl
326amidisplaycc0	at mainbus0		# wscons interface to custom chips
327wsdisplay0	at amidisplaycc0 console ?
328options 	WSEMUL_VT100
329options 	FONT_VT220L8x10
330options 	FONT_VT220ISO8x16
331', `
332#amidisplaycc0	at mainbus0		# wscons interface to custom chips
333#wsdisplay0	at amidisplaycc0 console ?
334#options 	WSEMUL_VT100
335#options 	FONT_VT220L8x10
336#options	FONT_VT220ISO8x16
337')m4_dnl
338')m4_dnl
339
340m4_ifdef(`WSCONS_CONFIGURATION', `', `m4_dnl
341m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
342grfcc0		at mainbus0		# custom chips
343grfrt0		at zbus0		# retina II
344')m4_dnl
345grfrh0		at zbus0		# retina III
346m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
347grfcl*		at zbus0		# Picasso II/Piccolo/Spectrum
348grful0		at zbus0		# A2410
349grfcv0		at zbus0		# CyberVision 64
350grfet*		at zbus0		# Tseng (oMniBus, Domino, Merlin)
351grfcv3d0	at zbus0		# CyberVision 64/3D
352')m4_dnl
353
354m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
355grf0		at grfcc0
356grf1		at grfrt0
357')m4_dnl
358grf2		at grfrh0
359m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
360grf3		at grfcl?
361grf4		at grful0
362grf5		at grfcv0
363grf6		at grfet?
364grf7		at grfcv3d0
365ite0		at grf0			# terminal emulators for grfs
366ite1		at grf1			# terminal emulators for grfs
367')m4_dnl
368ite2		at grf2			# terminal emulators for grfs
369m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
370ite3		at grf3			# terminal emulators for grfs
371ite4		at grf4			# terminal emulators for grfs
372ite5		at grf5			# terminal emulators for grfs
373ite6		at grf6			# terminal emulators for grfs
374ite7		at grf7			# terminal emulators for grfs
375')m4_dnl
376')m4_dnl
377
378msc0		at zbus0		# A2232 MSC multiport serial.
379mfc0		at zbus0		# MultiFaceCard I/O board
380mfcs0		at mfc0 unit 0		# MFC serial
381mfcs1		at mfc0 unit 1		# MFC serial
382#mfcp0		at mfc0 unit 0		# MFC parallel [not available yet]
383#mfc1		at zbus0		# MultiFaceCard 2nd I/O board
384#mfcs2		at mfc1 unit 0
385#mfcs3		at mfc1 unit 1
386#mfcp1		at mfc1 unit 0
387
388hyper*		at zbus?		# zbus HyperCom3/3+/4/4+
389#hyper*		at mainbus0		# not yet: HyperCom1 + HyperCom3
390com*		at hyper? port ?	# Hypercom3/4 serial ports
391lpt*		at hyper? port ?	# Hypercom3+/4+ parallel port
392
393#options 	IOBZCLOCK=22118400 	# default, uncomment the next line
394#options 	IOBZCLOCK=24000000	# if needed.
395
396iobl*		at zbus?		# zbus IOBlix
397com*		at iobl? port ?		# IOBlix serial ports
398lpt*		at iobl? port ?		# IOBlix parallel ports
399
400
401#
402# Keyboard device. Optionally can attach a wskbd.
403# wskbd works together with a wsdisplay so enable them both if you will.
404# Don't enable wskbd if you use ite.
405#
406# XXX in std.amiga: kbd0 at mainbus0
407m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl
408wskbd0		at kbd0 console ?
409', `
410#wskbd0		at kbd0 console ?
411')m4_dnl
412
413
414m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
415#
416# Amiga Mainboard devices (sans graphics and keyboard)
417#
418
419ser0		at mainbus0		# Amiga onboard serial
420par0		at mainbus0		# Amiga onboard parallel
421ms*		at mainbus0		# Amiga mice
422fdc0		at mainbus0		# Amiga FDC
423fd*		at fdc0 unit ?		# floppy disks on the later
424a34kbbc0	at mainbus0		# A3000/A4000 battery backed clock
425a2kbbc0 	at mainbus0		# A2000 battery backed clock
426m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
427aucc*		at mainbus0		# Amiga CC audio
428audio*		at aucc?
429')m4_dnl
430')m4_dnl
431
432m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl
433wsmouse*	at ms?
434', `
435#wsmouse*	at ms?
436')m4_dnl
437
438m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl
439#
440# DraCo Mainboard devices (sans keyboard)
441#
442
443drbbc0		at mainbus0		# DraCo battery backed clock
444drsupio0	at mainbus0		# DraCo superio chip
445com*		at drsupio? port ?	# DraCo serial
446lpt0		at drsupio? port ?	# DraCo parallel
447')m4_dnl
448
449#
450# Zorro-II, Zorro-III, DraCo Direct-Bus devices (sans graphics)
451#
452
453m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
454m4_ifdef(`DRACO_CONFIGURATION', `', `m4_dnl
455# Alas, Melody-Z2 dont configure in the DraCo bus.
456melody* 	at zbus0		# Melody MPEG audio decoder
457audio*		at melody?
458')m4_dnl
459
460repulse*	at zbus0		# ALiENDESiGN Repulse
461audio*		at repulse?
462
463toccata*	at zbus0		# MacroSystem GmbH Toccata
464audio*		at toccata?
465')m4_dnl
466
467# Ethernet cards:
468le*		at zbus0		# A2065, Ameristar, Ariadne
469ne*		at zbus0		# AriadneII, X-surf
470ed*		at zbus0		# Hydra, ASDG LanRover
471es*		at zbus0		# CEI A4066 EthernetPLUS
472qn*		at zbus0		# Quicknet
473
474# Arcnet
475bah*		at zbus0		# C=/Ameristar A2060 / 560
476
477m4_ifdef(`AMIGA_CONFIGURATION', `m4_dnl
478# Greater Valley Product Bus
479gvpbus* 	at zbus0
480
481# scsi stuff, all possible
482gtsc0		at gvpbus?		# GVP series II scsi
483scsibus*	at gtsc0
484ahsc0		at mainbus0		# A3000 scsi
485scsibus*	at ahsc0
486atzsc0		at zbus0		# A2091 scsi
487scsibus*	at atzsc0
488wstsc0		at zbus0		# Wordsync II scsi
489scsibus*	at wstsc0
490ivsc0		at zbus0		# IVS scsi
491scsibus*	at ivsc0
492mlhsc0		at zbus0		# Hacker scsi
493scsibus*	at mlhsc0
494otgsc0		at zbus0		# 12 gauge scsi
495scsibus*	at otgsc0
496zssc0		at zbus0		# Zeus scsi
497scsibus*	at zssc0
498mgnsc0		at zbus0		# Magnum scsi
499scsibus*	at mgnsc0
500wesc0		at zbus0		# Warp Engine scsi
501scsibus*	at wesc0
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 zbus0		# Cyberstorm mk.III/Cyberstorm PPC SCSI
519scsibus*	at cbiiisc0
520empsc0		at zbus0		# Emplant scsi
521scsibus*	at empsc0
522#idesc0		at mainbus0		# A4000 & A1200 IDE
523#scsibus*	at idesc0
524
525# <<< comment out the wdc/atapibus entries below if the idesc lines above >>>
526# <<< are uncommented >>>
527wdc0		at mainbus0		# A4000 & A1200 IDE bus
528atabus* 	at wdc? channel ?	# ATA bus
529wd*		at atabus? drive ?	#  + drives
530atapibus*	at atabus?		# ATAPI bus
531cd*		at atapibus? drive ?	# ATAPI CD-ROM drives
532sd*		at atapibus? drive ?	# ATAPI disk drives
533
534pccard0		at mainbus0
535pcmcia*		at pccard0
536com*		at pcmcia? function ?		# Modems and serial cards
537pcmcom*		at pcmcia? function ?		# PCMCIA multi-port serial cards
538aic*		at pcmcia? function ?		# Adaptec APA-1460 SCSI
539wdc*		at pcmcia? function ?
540awi*		at pcmcia? function ?		# BayStack 650 (802.11FH)
541ep*		at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
542mbe*		at pcmcia? function ?		# MB8696x based Ethernet
543ne*		at pcmcia? function ?		# NE2000-compatible Ethernet
544sm*		at pcmcia? function ?		# Megahertz Ethernet
545mhzc*		at pcmcia? function ?	# Megahertz Ethernet/Modem combo cards
546com*		at mhzc?
547sm*		at mhzc?
548
549')m4_dnl
550
551m4_ifdef(`DRACO_CONFIGURATION', `m4_dnl
552drsc0		at mainbus0		# DraCo scsi
553scsibus*	at drsc0
554')m4_dnl
555
556
557# each hard drive from low target to high
558# will configure to the next available sd unit number
559sd*	at scsibus? target ? lun ?	# scsi disks
560st*	at scsibus? target ? lun ?	# scsi tapes
561cd*	at scsibus? target ? lun ?	# scsi cds
562ch*	at scsibus? target ? lun ?	# scsi autochangers
563m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
564ss*	at scsibus? target ? lun ?	# scsi scanner
565uk*	at scsibus? target ? lun ?	# scsi unknown
566')m4_dnl
567
568pseudo-device	loop			# loopback network interface
569pseudo-device	sl		1	# SLIP network interfaces
570pseudo-device	ppp		1	# PPP network interfaces
571pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
572pseudo-device	tun		1	# network tunnel line discipline
573#pseudo-device	gre		2	# generic L3 over IP tunnel
574pseudo-device	bpfilter	16	# Berkeley packet filter
575pseudo-device	ipfilter		# IP Filter package
576pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
577#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
578#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
579pseudo-device	vlan			# IEEE 802.1q encapsulation
580pseudo-device	bridge			# simple inter-network bridging
581#options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
582#pseudo-device	pf			# PF packet filter
583#pseudo-device	pflog			# PF log if
584
585pseudo-device	view		4	# views (needed for grfcc)
586m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
587pseudo-device	pty		2	# pseudo-terminals
588', `m4_dnl
589pseudo-device	pty			# pseudo-terminals
590')m4_dnl
591pseudo-device	clockctl		# user control of clock subsystem
592
593m4_ifdef(`WSCONS_CONFIGURATION', `m4_dnl
594pseudo-device	wsfont			# wsfont(4) dynamic font loading support
595', `m4_dnl
596#pseudo-device	wsfont			# wsfont(4) dynamic font loading support
597')m4_dnl
598
599pseudo-device	vnd		4	# vnode pseudo-disks
600pseudo-device	ccd		4	# concatenated disk devices
601#pseudo-device	cgd		4	# cryptographic disk devices
602pseudo-device	raid		8	# RAIDframe disk driver
603options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
604# Options to enable various other RAIDframe RAID types.
605# options 	RF_INCLUDE_EVENODD=1
606# options 	RF_INCLUDE_RAID5_RS=1
607# options 	RF_INCLUDE_PARITYLOGGING=1
608# options 	RF_INCLUDE_CHAINDECLUSTER=1
609# options 	RF_INCLUDE_INTERDECLUSTER=1
610# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
611# options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
612
613pseudo-device	rnd			# /dev/random and in-kernel generator
614#options 	RND_COM			# use "com" randomness as well (BROKEN)
615
616m4_ifdef(`INSTALL_CONFIGURATION', `', `m4_dnl
617pseudo-device	ksyms			# /dev/ksyms (kernel symbols)
618')m4_dnl
619
620config	netbsd root on ? type ?
621