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