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