GENERIC revision 1.10
1#	$NetBSD: GENERIC,v 1.10 2000/06/30 17:10:20 itojun Exp $
2#
3#	GENERIC -- everything that's currently supported
4#
5
6include "arch/prep/conf/std.prep"
7
8#ident		"GENERIC-$Revision: 1.10 $"
9
10maxusers	32
11
12# Standard system options
13
14options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
15options 	NTP		# NTP phase/frequency locked loop
16
17options 	KTRACE		# system call tracing via ktrace(1)
18
19options 	SYSVMSG		# System V-like message queues
20options 	SYSVSEM		# System V-like semaphores
21options 	SYSVSHM		# System V-like memory sharing
22#options 	SHMMAXPGS=1024	# 1024 pages is the default
23
24options 	LKM		# loadable kernel modules
25
26# Diagnostic/debugging support options
27options 	DIAGNOSTIC	# cheap kernel consistency checks
28#options 	DEBUG		# expensive debugging checks/support
29#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
30options 	DDB		# in-kernel debugger
31#options 	DDB_HISTORY_SIZE=100    # Enable history editing in DDB
32#makeoptions	DEBUG="-g"
33
34# Compatibility options
35options 	COMPAT_13	# NetBSD 1.3,
36options 	COMPAT_14	# NetBSD 1.4,
37options 	COMPAT_43	# and 4.3BSD
38
39# File systems
40file-system 	FFS		# UFS
41file-system	EXT2FS		# second extended file system (linux)
42file-system	LFS		# log-structured file system
43file-system 	MFS		# memory file system
44file-system 	NFS		# Network File System client
45file-system	NTFS		# Windows/NT file system (experimental)
46file-system 	CD9660		# ISO 9660 + Rock Ridge file system
47file-system 	MSDOSFS		# MS-DOS file system
48file-system 	FDESC		# /dev/fd
49file-system 	KERNFS		# /kern
50file-system 	NULLFS		# loopback file system
51file-system	OVERLAY		# overlay file system
52file-system 	PORTAL		# portal filesystem (still experimental)
53file-system 	PROCFS		# /proc
54file-system 	UMAPFS		# NULLFS + uid and gid remapping
55file-system 	UNION		# union file system
56#file-system	CODA		# Coda File System; also needs vcoda (below)
57
58# File system options
59options 	QUOTA		# UFS quotas
60options 	FFS_EI		# FFS Endian Independant support
61options 	SOFTDEP		# FFS soft updates support.
62options 	NFSSERVER	# Network File System server
63#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
64 				# immutable) behave as system flags.
65
66# Networking options
67#options 	GATEWAY		# packet forwarding
68options 	INET		# IP + ICMP + TCP + UDP
69options 	INET6		# IPv6
70options 	PULLDOWN_TEST	# use m_pulldown for IPv4/v6 processing
71#options 	IPSEC		# IP security
72#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
73#options 	IPSEC_DEBUG	# debug for IP security
74#options 	MROUTING	# IP multicast routing
75options 	NETATALK	# AppleTalk networking protocols
76options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
77options 	PPP_DEFLATE	# Deflate compression support for PPP
78options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
79options 	PFIL_HOOKS	# pfil(9) packet filter hooks
80options 	IPFILTER_LOG	# ipmon(8) log support
81
82# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
83#options 	TCP_COMPAT_42
84
85# These options enable verbose messages for several subsystems.
86# Warning, these may compile large string tables into the kernel!
87options 	MIIVERBOSE	# verbose PHY autoconfig messages
88options 	PCIVERBOSE	# verbose PCI device autoconfig messages
89#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
90options 	SCSIVERBOSE	# human readable SCSI error messages
91options 	USBVERBOSE	# verbose USB device autoconfig messages
92
93options 	NFS_BOOT_BOOTP
94options 	NFS_BOOT_BOOTPARAM
95options 	NFS_BOOT_DHCP
96
97#
98# wscons options
99#
100# builtin terminal emulations
101options 	WSEMUL_VT100		# VT100 / VT220 emulation
102# different kernel output - see dev/wscons/wsdisplayvar.h
103options 	WS_KERNEL_FG=WSCOL_GREEN
104#options 	WS_KERNEL_BG=WSCOL_BLACK
105# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
106#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
107# allocate a number of virtual screens at autoconfiguration time
108#options 	WSDISPLAY_DEFAULTSCREENS=4
109# use a large software cursor that doesn't blink
110options 	PCDISPLAY_SOFTCURSOR
111
112# Kernel root file system and dump configuration.
113config	netbsd	root on ? type ?
114#config	netbsd	root on de0 type nfs
115#config	netbsd	root on le0 type nfs
116
117#
118# Device configuration
119#
120
121mainbus0 at root
122cpu0	at mainbus0
123
124# Basic Bus Support
125
126# PCI bus support
127pci0	at mainbus0 bus ?
128pci*	at pchb? bus ?
129pci*	at ppb? bus ?
130
131# PCI bridges
132pchb*	at pci? dev ? function ?	# PCI-Host bridges
133ppb*	at pci? dev ? function ?	# PCI-PCI bridges
134pcib*	at pci? dev ? function ?	# PCI-ISA bridges
135
136# ISA bus support
137isa*	at pcib?			# ISA on PCI-ISA bridge
138
139# Console Devices
140
141# ISA console.
142#pc0	at isa? port 0x60 irq 1		# generic PC console device
143
144# Keyboard layout configuration for pccons
145#options	FRENCH_KBD
146#options	FINNISH_KBD
147#options	GERMAN_KBD
148#options	NORWEGIAN_KBD
149
150# wscons
151pckbc0		at isa?			# pc keyboard controller
152pckbd*		at pckbc?		# PC keyboard
153pms*		at pckbc?		# PS/2 mouse for wsmouse
154pmsi*		at pckbc?		# PS/2 "Intelli"mouse for wsmouse
155vga*		at pci?
156wsdisplay*	at vga? console ?
157wskbd*		at pckbd? console ?
158wsmouse*	at pms? mux 0
159wsmouse*	at pmsi? mux 0
160
161pcppi0	at isa?				# PC prog. periph. interface
162isabeep0 at pcppi?			# "keyboard" beep
163
164mcclock0 at isa? port 0x70		# mc146818 and compatible
165
166# Serial Devices
167
168# ISA serial interfaces
169com0	at isa? port 0x3f8 irq 4	# standard PC serial ports
170com1	at isa? port 0x2f8 irq 3
171
172# Parallel Printer Interfaces
173
174# ISA parallel printer interfaces
175lpt0	at isa? port 0x3bc irq 7	# standard PC parallel ports
176
177# SCSI Controllers and Devices
178
179# PCI SCSI controllers
180pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
181
182# SCSI bus support
183scsibus* at pcscp?
184
185# SCSI devices
186sd*	at scsibus? target ? lun ?	# SCSI disk drives
187st*	at scsibus? target ? lun ?	# SCSI tape drives
188cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
189ch*	at scsibus? target ? lun ?	# SCSI autochangers
190ss*	at scsibus? target ? lun ?	# SCSI scanners
191uk*	at scsibus? target ? lun ?	# SCSI unknown
192
193# IDE and related devices
194
195# ATAPI devices
196# flags have the same meaning as for IDE drives.
197#cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
198#sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
199#uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
200
201# Network Interfaces
202
203# PCI network interfaces
204de*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
205ep*	at pci? dev ? function ?	# 3Com 3c59x
206#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
207ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
208vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
209
210# MII/PHY support
211dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
212exphy*	at mii? phy ?			# 3Com internal PHYs
213icsphy* at mii? phy ?			# Integrated Circuit Systems ICS1890
214inphy*	at mii? phy ?			# Intel 82555 PHYs
215iophy*	at mii? phy ?			# Intel 82553 PHYs
216lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
217nsphy*	at mii? phy ?			# NS83840 PHYs
218nsphyter* at mii? phy ?			# NS83843 PHYs
219qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
220sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
221tlphy*	at mii? phy ?			# ThunderLAN PHYs
222tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
223ukphy*	at mii? phy ?			# generic unknown PHYs
224
225# USB Controller and Devices
226
227# PCI USB controllers
228uhci*	at pci? dev ? function ?	# Universal Host Controller (Intel)
229ohci*	at pci? dev ? function ?	# Open Host Controller
230
231# USB bus support
232usb*	at uhci?
233usb*	at ohci?
234
235# USB Hubs
236uhub*	at usb?
237uhub*	at uhub? port ? configuration ? interface ?
238
239# USB Mice
240ums*	at uhub? port ? configuration ? interface ?
241wsmouse* at ums? mux 0
242
243# USB Keyboards
244ukbd*	at uhub? port ? configuration ? interface ?
245wskbd*	at ukbd? console ? mux 1
246
247# USB Generic HID devices
248uhid*	at uhub? port ? configuration ? interface ?
249
250# USB Printer
251ulpt*	at uhub? port ? configuration ? interface ?
252
253# USB Modem
254umodem* at uhub? port ? configuration ?
255ucom*	at umodem?
256
257# USB Mass Storage
258umass*	at uhub? port ? configuration ? interface ?
259scsibus* at umass? channel ?
260#atapibus* at umass? channel ?
261
262# USB audio
263uaudio* at uhub? port ? configuration ?
264
265# USB Ethernet adapters
266aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
267cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
268kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
269
270# Prolofic PL2301/PL2302 host-to-host adapter
271upl*	at uhub? port ?
272
273# Serial adapters
274# FTDI FT8U100AX serial adapter
275#uftdi*	at uhub? port ?
276#ucom*	at uftdi? portno ?
277
278# Diamond Multimedia Rio 500
279urio*	at uhub? port ?
280
281# USB Handspring Visor
282uvisor* at uhub? port ?
283ucom*	at uvisor?
284
285# USB Generic driver
286ugen*	at uhub? port ?
287
288# Audio device
289
290# Audio support
291audio*  at uaudio?
292
293# MIDI support
294midi*	at pcppi?		# MIDI interface to the PC speaker
295
296# The spkr driver provides a simple tone interface to the built in speaker.
297spkr0	at pcppi?		# PC speaker
298
299# Joysticks
300
301# ISA joysticks. Probe is a little strange; add only if you have one.
302joy0	at isa? port 0x201
303
304# Pseudo-Devices
305
306# disk/mass storage pseudo-devices
307pseudo-device	ccd		4	# concatenated/striped disk devices
308pseudo-device	raid		4	# RAIDframe disk driver
309#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
310pseudo-device	md		1	# memory disk device (ramdisk)
311pseudo-device	vnd		4	# disk-like interface to files
312
313# network pseudo-devices
314pseudo-device	loop			# network loopback
315pseudo-device	bpfilter	8	# Berkeley packet filter
316pseudo-device	ipfilter		# IP filter (firewall) and NAT
317pseudo-device	ppp		2	# Point-to-Point Protocol
318pseudo-device	sl		2	# Serial Line IP
319pseudo-device	strip		2	# Starmode Radio IP (Metricom)
320pseudo-device	tun		2	# network tunneling over tty
321pseudo-device	gre		2	# generic L3 over IP tunnel
322pseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
323pseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
324#pseudo-device	faith		2	# IPv[46] tcp relay translation i/f
325#pseudo-device	stf		2	# 6to4 IPv6 over IPv4 encapsulation
326
327# miscellaneous pseudo-devices
328pseudo-device	pty		64	# pseudo-terminals
329pseudo-device	tb		1	# tablet line discipline
330pseudo-device	sequencer	1	# MIDI sequencer
331pseudo-device	rnd			# /dev/random and in-kernel generator
332#options	RND_COM			# use "com" randomness as well
333
334# a pseudo device needed for Coda	# also needs CODA (above)
335#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
336
337# mouse & keyboard multiplexor pseudo-devices
338pseudo-device	wsmux		2
339