GENERIC_TINY revision 1.81
1#	$NetBSD: GENERIC_TINY,v 1.81 2005/02/25 13:46:49 simonb Exp $
2#
3#	GENERIC_TINY -- suitable default for 4M machines
4#			No EISA, PCI, or SCSI.
5#
6
7include "arch/i386/conf/std.i386"
8
9#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
10
11makeoptions	COPTS="-Os"
12
13maxusers	8		# estimated number of users
14
15# CPU support.  At least one is REQUIRED.
16options 	I386_CPU
17options 	I486_CPU
18options 	I586_CPU
19options 	I686_CPU
20
21# CPU-related options.
22options 	MATH_EMULATE	# floating point emulation
23#options 	VM86		# virtual 8086 emulation
24#options 	USER_LDT	# user-settable LDT; used by WINE
25# insert delay no-ops in interrupts; recommended on very old machines
26options 	PIC_DELAY
27
28# This option allows you to force a serial console at the specified
29# I/O address.   see console(4) for details.
30#options 	CONSDEVNAME="\"com\""
31
32# The following options override the memory sizes passed in from the boot
33# block.  Use them *only* if the boot block is unable to determine the correct
34# values.  Note that the BIOS may *correctly* report less than 640k of base
35# memory if the extended BIOS data area is located at the top of base memory
36# (as is the case on most recent systems).
37#options 	REALBASEMEM=...	# size of base memory
38#options 	REALEXTMEM=...	# size of extended memory
39
40# Save a physical page per process by not setting a kernel stack red zone.
41options 	NOREDZONE
42
43# Standard system options
44
45options 	INSECURE	# disable kernel security levels - X needs this
46
47options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
48#options 	NTP		# NTP phase/frequency locked loop
49
50#options 	KTRACE		# system call tracing via ktrace(1)
51
52#options 	SYSVMSG		# System V-like message queues
53#options 	SYSVSEM		# System V-like semaphores
54#options 	SYSVSHM		# System V-like memory sharing
55#options 	SHMMAXPGS=2048	# 2048 pages is the default
56#options 	P1003_1B_SEMAPHORE # p1003.1b semaphore support
57
58options 	NMBCLUSTERS=256
59
60#options 	LKM		# loadable kernel modules
61
62#options 	USERCONF	# userconf(4) support
63options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
64#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
65
66# Diagnostic/debugging support options
67#options 	DIAGNOSTIC	# expensive kernel consistency checks
68#options 	DEBUG		# expensive debugging checks/support
69#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
70#options 	DDB		# in-kernel debugger
71#options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
72#options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
73#options 	KGDB		# remote debugger
74#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
75#makeoptions	DEBUG="-g"	# compile full symbol table
76
77# Compatibility options
78#options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
79#options 	COMPAT_09	# NetBSD 0.9
80#options 	COMPAT_10	# NetBSD 1.0
81#options 	COMPAT_11	# NetBSD 1.1
82options 	COMPAT_12	# NetBSD 1.2, 386BSD, and BSDI
83options 	COMPAT_13	# NetBSD 1.3, 386BSD, and BSDI
84options 	COMPAT_14	# NetBSD 1.4
85options 	COMPAT_15	# NetBSD 1.5
86options 	COMPAT_16	# NetBSD 1.6
87options 	COMPAT_20	# NetBSD 2.0
88options 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
89options 	COMPAT_386BSD_MBRPART # recognize old partition ID
90#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
91
92#options 	COMPAT_SVR4	# binary compatibility with SVR4
93#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
94#options 	COMPAT_LINUX	# binary compatibility with Linux
95#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
96options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
97
98# File systems
99file-system 	FFS		# UFS
100#file-system 	EXT2FS		# second extended file system (linux)
101#file-system 	LFS		# log-structured file system
102#file-system 	MFS		# memory file system
103file-system 	NFS		# Network File System client
104file-system 	CD9660		# ISO 9660 + Rock Ridge file system
105file-system 	MSDOSFS		# MS-DOS file system
106#file-system 	FDESC		# /dev/fd
107file-system 	KERNFS		# /kern
108#file-system 	NULLFS		# loopback file system
109#file-system 	PORTAL		# portal filesystem (still experimental)
110#file-system 	PROCFS		# /proc
111#file-system 	UMAPFS		# NULLFS + uid and gid remapping
112#file-system 	UNION		# union file system
113
114# File system options
115#options 	QUOTA		# UFS quotas
116#options 	FFS_EI		# FFS Endian Independant support
117#options 	NFSSERVER	# Network File System server
118options 	FFS_NO_SNAPSHOT	# ffs snapshots
119#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
120				# immutable) behave as system flags.
121options 	VNODE_OP_NOINLINE # don't inline vnode op calls
122
123# Networking options
124#options 	GATEWAY		# packet forwarding
125options 	INET		# IP + ICMP + TCP + UDP
126#options 	MROUTING	# IP multicast routing
127#options 	PIM		# Protocol Independent Multicast
128#options 	NS		# XNS
129#options 	NSIP		# XNS tunneling over IP
130#options 	ISO,TPIP	# OSI
131#options 	EON		# OSI tunneling over IP
132#options 	CCITT,LLC,HDLC	# X.25
133#options 	NETATALK	# AppleTalk networking protocols
134#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
135#options 	PPP_DEFLATE	# Deflate compression support for PPP
136#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
137#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
138#options 	IPFILTER_LOG	# ipmon(8) log support
139#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
140#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
141
142#options 	ALTQ		# Manipulate network interfaces' output queues
143#options 	ALTQ_BLUE	# Stochastic Fair Blue
144#options 	ALTQ_CBQ	# Class-Based Queueing
145#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
146#options 	ALTQ_FIFOQ	# First-In First-Out Queue
147#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
148#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
149#options 	ALTQ_LOCALQ	# Local queueing discipline
150#options 	ALTQ_PRIQ	# Priority Queueing
151#options 	ALTQ_RED	# Random Early Detection
152#options 	ALTQ_RIO	# RED with IN/OUT
153#options 	ALTQ_WFQ	# Weighted Fair Queueing
154
155# These options enable verbose messages for several subsystems.
156# Warning, these may compile large string tables into the kernel!
157#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
158#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
159#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
160#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
161#options 	SCSIVERBOSE	# human readable SCSI error messages
162#options 	USBVERBOSE	# verbose USB device autoconfig messages
163
164#options 	NFS_BOOT_BOOTP,NFS_BOOT_BOOTPARAM
165
166# Kernel root file system and dump configuration.
167config		netbsd	root on ? type ?
168#config		netbsd	root on sd0a type ffs
169#config		netbsd	root on ? type nfs
170
171#
172# wscons options
173#
174# builtin terminal emulations
175#options 	WSEMUL_SUN		# sun terminal emulation
176options 	WSEMUL_VT100		# VT100 / VT220 emulation
177# customization of console and kernel output - see dev/wscons/wsdisplayvar.h
178#options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
179#options 	WS_DEFAULT_FG=WSCOL_WHITE
180#options 	WS_DEFAULT_BG=WSCOL_BLACK
181#options 	WS_DEFAULT_COLATTR="(0)"
182#options 	WS_DEFAULT_MONOATTR="(0)"
183options 	WS_KERNEL_FG=WSCOL_GREEN
184#options 	WS_KERNEL_BG=WSCOL_BLACK
185#options 	WS_KERNEL_COLATTR=""
186#options 	WS_KERNEL_MONOATTR=""
187# customization of console border color
188#options 	WSDISPLAY_CUSTOM_BORDER	# border customization from wsconsctl(8)
189#options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
190# compatibility to other console drivers
191options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
192options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
193options 	WSDISPLAY_COMPAT_USL		# VT handling
194options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
195# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
196#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
197# allocate a number of virtual screens at autoconfiguration time
198#options 	WSDISPLAY_DEFAULTSCREENS=4
199# use a large software cursor that doesn't blink
200options 	PCDISPLAY_SOFTCURSOR
201
202#
203# Device configuration
204#
205
206mainbus0 at root
207
208cpu0 at mainbus0
209
210#apm0	at mainbus0			# Advanced power management
211
212
213# Basic Bus Support
214
215# PCI bus support
216#pci*	at mainbus? bus ?
217#pci*	at pchb? bus ?
218#pci*	at ppb? bus ?
219
220# PCI bridges
221#pchb*	at pci? dev ? function ?	# PCI-Host bridges
222#pceb*	at pci? dev ? function ?	# PCI-EISA bridges
223#pcib*	at pci? dev ? function ?	# PCI-ISA bridges
224#ichlpcib* at pci? dev ? function ?	# Intel ICH PCI-ISA w/ watchdog and
225					# SpeedStep support
226#ppb*	at pci? dev ? function ?	# PCI-PCI bridges
227# XXX 'puc's aren't really bridges, but there's no better place for them here
228#puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
229
230# EISA bus support
231#eisa0	at mainbus?
232#eisa0	at pceb?
233
234# ISA bus support
235isa0	at mainbus?
236#isa0	at pceb?
237#isa0	at pcib?
238#isa0	at ichlpcib?
239
240# PCMCIA bus support
241pcmcia*	at pcic? controller ? socket ?
242
243# ISA PCMCIA controllers
244pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
245pcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
246
247# ISA Plug-and-Play bus support
248#isapnp0	at isa?
249
250# ISA Plug-and-Play PCMCIA controllers
251#pcic*	at isapnp?
252
253# Coprocessor Support
254
255# Math Coprocessor support
256npx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
257
258# Console Devices
259
260# ISA console
261#pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
262
263# wscons
264pckbc0 		at isa?			# pc keyboard controller
265pckbd* 		at pckbc?		# PC keyboard
266#pms*		at pckbc?		# PS/2 mouse for wsmouse
267vga0		at isa?
268#vga*		at pci? dev ? function ?
269pcdisplay0 	at isa?			# CGA, MDA, EGA, HGA
270wsdisplay*	at vga? console ?
271wsdisplay* 	at pcdisplay? console ?
272wskbd* 		at pckbd? console ?
273#wsmouse*	at pms? mux 0
274
275
276#pcppi0	at isa?
277#sysbeep0	at pcppi?
278
279# Serial Devices
280
281# PCI serial interfaces
282#com*	at puc? port ?			# 16x50s on "universal" comm boards
283#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
284
285# ISA Plug-and-Play serial interfaces
286#com*	at isapnp?			# Modems and serial boards
287
288# PCMCIA serial interfaces
289com*	at pcmcia? function ?		# Modems and serial cards
290
291# ISA serial interfaces
292#options 	COM_HAYESP		# adds Hayes ESP serial board support
293com0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
294com1	at isa? port 0x2f8 irq 3
295com2	at isa? port 0x3e8 irq 5
296#com3	at isa? port 0x2e8 irq 9
297#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
298#com*	at ast? slave ?
299#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
300#com*	at boca? slave ?
301#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
302#com*	at rtfps? slave ?
303#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
304
305
306# Parallel Printer Interfaces
307
308# PCI parallel printer interfaces
309#lpt*	at puc? port ?			# || ports on "universal" comm boards
310
311# ISA parallel printer interfaces
312lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
313#lpt1	at isa? port 0x278
314#lpt2	at isa? port 0x3bc
315
316
317# SCSI Controllers and Devices
318
319# PCI SCSI controllers
320#ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
321#dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
322#bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
323#isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
324#siop*	at pci? dev ? function ?	# NCR 53c8xx SCSI
325#esiop*	at pci? dev ? function ?	# NCR 53c875 SCSI and newer
326#options 	SIOP_SYMLED		# drive the act. LED in software
327
328# EISA SCSI controllers
329#ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
330#ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
331#bha*	at eisa? slot ?			# BusLogic 7xx SCSI
332#dpt*	at eisa? slot ?			# DPT SmartCache/SmartRAID
333#uha*	at eisa? slot ?			# UltraStor 24f SCSI
334
335# PCMCIA SCSI controllers
336#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
337
338# ISA Plug-and-Play SCSI controllers
339#aic*	at isapnp?			# Adaptec AHA-1520B
340
341# ISA SCSI controllers
342#aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
343#aha1	at isa? port 0x334 irq ? drq ?
344#ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
345#aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
346#bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
347#bha1	at isa? port 0x334 irq ? drq ?
348#sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
349#uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
350#uha1	at isa? port 0x340 irq ? drq ?
351#wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
352#wds1	at isa? port 0x358 irq 11 drq 5
353
354# SCSI bus support
355#scsibus* at scsi?
356
357# SCSI devices
358#sd*	at scsibus? target ? lun ?	# SCSI disk drives
359#st*	at scsibus? target ? lun ?	# SCSI tape drives
360#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
361#ch*	at scsibus? target ? lun ?	# SCSI autochangers
362#ss*	at scsibus? target ? lun ?	# SCSI scanners
363#uk*	at scsibus? target ? lun ?	# SCSI unknown
364
365
366# IDE and related devices
367
368# ISA Plug-and-Play IDE controllers
369#wdc*	at isapnp?
370
371# PCMCIA IDE controllers
372wdc*	at pcmcia? function ?
373
374# ISA IDE controllers
375wdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
376wdc1	at isa? port 0x170 irq 15
377
378# ATA (IDE) bus support
379atabus* at ata?
380
381# IDE drives
382wd*	at atabus? drive ?			# the drives themselves
383
384# ATAPI bus support
385atapibus* at atapi?
386
387# ATAPI devices
388cd*	at atapibus? drive ?		# ATAPI CD-ROM drives
389sd*	at atapibus? drive ?		# ATAPI disk drives
390
391
392# Miscellaneous mass storage devices
393
394# ISA floppy
395fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
396#fdc1	at isa? port 0x370 irq ? drq ?
397fd*	at fdc? drive ?			# the drives themselves
398# some machines need you to do this instead of fd*
399#fd0	at fdc0 drive 0
400
401# ISA CD-ROM devices
402#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
403
404# ISA tape devices
405# note: the wt driver conflicts unpleasantly with SMC boards at the
406# same I/O address. The probe reprograms their EEPROMs. Don't
407# uncomment it unless you are actually using it.
408#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
409
410
411# Network Interfaces
412
413# PCI network interfaces
414#en*	at pci? dev ? function ?	# ENI/Adaptec ATM
415#ep*	at pci? dev ? function ?	# 3Com 3c59x/3c90x Ethernet
416#epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
417#esh*	at pci? dev ? function ?	# Essential HIPPI card
418#fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
419#fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
420#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
421#ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
422#tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
423#tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
424
425# EISA network interfaces
426#ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
427#fea*	at eisa? slot ?			# DEC DEFEA FDDI
428
429# ISA Plug-and-Play network interfaces
430#ep*	at isapnp?			# 3Com 3c509 Ethernet
431#ne*	at isapnp?			# NE2000-compatible Ethernet
432
433# PCMCIA network interfaces
434ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
435mbe*	at pcmcia? function ?		# MB8696x based Ethernet
436ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
437sm*	at pcmcia? function ?		# Megahertz Ethernet
438
439# ISA network interfaces
440ate0	at isa? port 0x2a0 irq ?		# AT1700
441ec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
442eg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
443el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
444ep0	at isa? port ? irq ?			# 3C509 ethernet cards
445ef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
446ai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
447fmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
448ix0	at isa? port 0x300 irq 10		# EtherExpress/16
449iy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
450lc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
451#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
452#le*	at depca?
453nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
454le*	at nele?
455bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
456le*	at bicc?
457ne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
458ne1	at isa? port 0x300 irq 10
459sm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
460we0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
461we1	at isa? port 0x300 iomem 0xcc000 irq 10
462
463# MII bus support
464#mii*	at tl?
465
466# MII PHY network interfaces
467#tlphy*	at mii? dev ?			# ThunderLAN PHYs
468#nsphy*	at mii? dev ?			# NS and compatible PHYs
469#ukphy*	at mii? phy ?			# generic unknown PHYs
470
471
472# USB Controller and Devices
473
474# PCI USB controllers
475#uhci*	at pci?				# Universal Host Controller (Intel)
476#ohci*	at pci?				# Open Host Controller
477
478# USB bus support
479#usb*	at uhci?
480#usb*	at ohci?
481
482# USB Hubs
483#uhub*	at usb?
484#uhub*	at uhub? port ?
485
486# USB Mice
487#ums*	at uhub? port ?
488
489# USB Keyboards
490#ukbd*	at uhub? port ?
491
492# USB Generic HID devices
493#uhid*	at uhub? port ?
494
495# USB Printer
496#ulpt*	at uhub? port ?
497
498# USB Mass Storage
499#umass*	at uhub? port ? configuration ? interface ?
500#scsibus* at umass?
501#wd*	at umass?
502
503# USB Ethernet adapters
504#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
505#axe*	at uhub? port ?		# ASIX AX88172 based adapters
506#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
507#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
508#url*	at uhub? port ?		# Realtek RTL8150L based adapters
509
510# Y@P firmware loader
511#uyap* at uhub? port ?
512
513# USB Generic driver
514#ugen*	at uhub? port ?
515
516# Audio Devices
517
518# PCI audio devices
519#eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
520
521# ISA Plug-and-Play audio devices
522#guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
523#sb*	at isapnp?			# SoundBlaster-compatible audio
524#ym*	at isapnp?			# Yamaha OPL3-SA3 audio
525
526# ISA audio devices
527#aria0	at isa? port 0x290 irq 10 		# Aria
528#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
529#pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
530#pss0	at isa? port 0x220 irq 7 drq 6		# Personal Sound System
531#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
532#sb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
533#wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
534
535# Audio support
536#audio*	at audiobus?
537
538# The spkr driver provides a simple tone interface to the built in speaker.
539#spkr0	at pcppi?		# PC speaker
540
541
542# Joysticks
543
544# ISA Plug-and-Play joysticks
545#joy*	at isapnp?			# Game ports (usually on audio cards)
546
547# ISA joysticks. Probe is a little strange; add only if you have one.
548#joy0	at isa? port 0x201
549
550
551# Miscellaneous Devices
552
553# Planetconnect Satellite receiver driver.
554#satlink0 at isa? port 0x300 drq 1
555
556
557# Pull in optional local configuration
558include	"arch/i386/conf/GENERIC.local"
559
560
561# Pseudo-Devices
562
563# disk/mass storage pseudo-devices
564#pseudo-device	ccd		4	# concatenated/striped disk devices
565pseudo-device	fss		4	# file system snapshot device
566#pseudo-device	md		1	# memory disk device (ramdisk)
567pseudo-device	vnd		4	# disk-like interface to files
568
569# network pseudo-devices
570pseudo-device	bpfilter	8	# Berkeley packet filter
571pseudo-device	bridge			# simple inter-network bridging
572pseudo-device	ipfilter		# IP filter (firewall) and NAT
573pseudo-device	loop			# network loopback
574pseudo-device	ppp		2	# Point-to-Point Protocol
575pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
576#pseudo-device	sl		2	# Serial Line IP
577#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
578pseudo-device	tun		2	# network tunneling over tty
579#pseudo-device	tap			# virtual Ethernet
580
581# miscellaneous pseudo-devices
582pseudo-device	pty			# pseudo-terminals
583#pseudo-device	tb		1	# tablet line discipline
584pseudo-device	rnd			# /dev/random and in-kernel generator
585#options 	RND_COM			# use "com" randomness as well (BROKEN)
586pseudo-device	clockctl		# user control of clock subsystem
587