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