xref: /freebsd/sys/i386/conf/LINT (revision 5ebc7e6281887681c3a348a5a4c902e262ccd656)
1#
2# LINT -- config file for checking all the sources, tries to pull in
3#	as much of the source tree as it can.
4#
5#	$Id: LINT,v 1.183 1995/05/27 04:32:12 davidg Exp $
6#
7# NB: You probably don't want to try running a kernel built from this
8# file.  Instead, you should start from GENERIC, and add options from
9# this file as required.
10#
11
12#
13# This directive is mandatory; it defines the architecture to be
14# configured for; in this case, the 386 family.  You must also specify
15# at least one CPU (the one you intend to run on); deleting the
16# specification for CPUs you don't need to use may make parts of the
17# system run faster
18#
19machine		"i386"
20cpu		"I386_CPU"
21cpu		"I486_CPU"
22cpu		"I586_CPU"		# aka Pentium(tm)
23
24#
25# This is the ``identification'' of the kernel.  Usually this should
26# be the same as the name of your kernel.
27#
28ident		LINT
29
30#
31# The `maxusers' parameter controls the static sizing of a number of
32# internal system tables by a complicated formula defined in param.c.
33#
34maxusers	10
35
36#
37# Under some circumstances it is necessary to make the default max
38# number of processes per user and open files per user more than the
39# defaults on bootup.  (an example is a large news server in which
40# the uid, news, can sometimes need > 100 simultaneous processes running)
41options		"CHILD_MAX=128"
42options		"OPEN_MAX=128"
43
44#
45# A math emulator is mandatory if you wish to run on hardware which
46# does not have a floating-point processor.  Pick either the original,
47# bogus (but freely-distributable) math emulator, or a much more
48# fully-featured but GPL-licensed emulator taken from Linux.
49#
50options		MATH_EMULATE		#Support for x87 emulation
51#options        GPL_MATH_EMULATE        #Support for x87 emualtion via
52                                        #new math emulator
53
54#
55# This directive defines a number of things:
56#  - The compiled kernel is to be called `kernel'
57#  - The root filesystem might be on partition wd0a
58#  - Crash dumps will be written to wd0b, if possible.  Specifying the
59#    dump device here is not recommended.  Use dumpon(8).
60#
61config		kernel	root on wd0 dumps on wd0
62
63
64#####################################################################
65# COMPATIBILITY OPTIONS
66
67#
68# Implement system calls compatible with 4.3BSD and older versions of
69# FreeBSD.
70#
71options		"COMPAT_43"
72
73#
74# Allow user-mode programs to manipulat their local descriptor tables.
75# This option is required for the WINE Windows(tm) emulator, and is
76# not used by anything else (that we know of).
77#
78options		USER_LDT		#allow user-level control of i386 ldt
79
80#
81# These three options provide support for System V Interface
82# Definition-style interprocess communication, in the form of shared
83# memory, semaphores, and message queues, respectively.
84#
85options		SYSVSHM
86options		SYSVSEM
87options		SYSVMSG
88
89
90#####################################################################
91# DEBUGGING OPTIONS
92
93#
94# Enable the kernel debugger.
95#
96options		DDB
97
98#
99# KTRACE enables the system-call tracing facility ktrace(2).
100#
101options		KTRACE			#kernel tracing
102
103#
104# The DIAGNOSTIC option is used in a number of source files to enable
105# extra sanity checking of internal structures.  This support is not
106# enabled by default because of the extra time it would take to check
107# for these conditions, which can only occur as a result of
108# programming errors.
109#
110options		DIAGNOSTIC
111
112#
113# Allow ordinary users to take the console - this is useful for X.
114options		UCONSOLE
115
116
117#####################################################################
118# NETWORKING OPTIONS
119
120#
121# Protocol families:
122#  Only the INET (Internet) family is officially supported in FreeBSD.
123#  Source code for the NS (Xerox Network Service), ISO (OSI), and
124#  CCITT (X.25) families is provided for amusement value, although we
125#  try to ensure that it actually compiles.
126#
127options		INET			#Internet communications protocols
128options		CCITT			#X.25 network layer
129options		NS			#Xerox NS communications protocols
130
131# These are currently broken and don't compile
132#options		ISO
133#options		TPIP			#ISO TP class 4 over IP
134#options		TPCONS			#ISO TP class 0 over X.25
135
136#
137# Network interfaces:
138#  The `loop' pseudo-device is mandatory when networking is enabled.
139#  The `ether' pseudo-device provides generic code to handle
140#  Ethernets; it is mandatory when a Ethernet device driver is
141#  configured.
142#  The 'fddi' pseudo-device provides generic code to support FDDI.
143#  The `sppp' pseudo-device serves a similar role for certain types
144#  of synchronous PPP links (like `cx').
145#  The `sl' pseudo-device implements the Serial Line IP (SLIP) service.
146#  The `ppp' pseudo-device implements the Point-to-Point Protocol.
147#  The `bpfilter' pseudo-device enables the Berkeley Packet Filter.  Be
148#  aware of the legal and administrative consequences of enabling this
149#  option.  The number of devices determines the maximum number of
150#  simultaneous BPF clients programs runnable.
151#  The `disc' pseudo-device implements a minimal network interface,
152#  which throws away all packets sent and never receives any.  It is
153#  included for testing purposes.
154#  The `tun' pseudo-device implements the User Process PPP (iijppp)
155#
156pseudo-device	ether			#Generic Ethernet
157pseudo-device	fddi			#Generic FDDI
158pseudo-device	sppp			#Generic Synchronous PPP
159pseudo-device	loop			#Network loopback device
160pseudo-device	sl	2		#Serial Line IP
161pseudo-device	ppp	2		#Point-to-point protocol
162pseudo-device	bpfilter	4	#Berkeley packet filter
163pseudo-device	disc			#Discard device
164pseudo-device	tun	1		#Tunnel driver(user process ppp)
165
166options		NSIP			#XNS over IP
167options		LLC			#X.25 link layer for Ethernets
168options		HDLC			#X.25 link layer for serial lines
169
170# broken
171#options		EON			#ISO CLNP over IP
172
173#
174# Internet family options:
175#
176# TCP_COMPAT_42 causes the TCP code to emulate certain bugs present in
177# 4.2BSD.  This option should not be used unless you have a 4.2BSD
178# machine and TCP connections fail.
179#
180# GATEWAY allows the machine to forward packets, and also configures
181# larger static sizes of a number of system tables.
182#
183# MROUTING enables the kernel multicast packet forwarder, which works
184# with mrouted(8).
185#
186# IPFIREWALL enables support for IP firewall construction, in
187# conjunction with the `ipfw' program.  IPFIREWALL_VERBOSE does
188# the obvious thing.
189# IPACCT enables IP accounting.
190#
191# ARP_PROXYALL enables global proxy ARP.  Beware!  This can burn
192# your house down!  See netinet/if_ether.c for the gory details.
193# (Eventually there will be a better management interface.)
194#
195options		"TCP_COMPAT_42"		#emulate 4.2BSD TCP bugs
196options		GATEWAY			#internetwork gateway
197options		MROUTING		# Multicast routing
198options         IPFIREWALL              #firewall
199options         IPFIREWALL_VERBOSE      #print information about
200options		IPACCT			#ipaccounting
201					# dropped packets
202options		ARP_PROXYALL		# global proxy ARP
203
204
205#####################################################################
206# FILESYSTEM OPTIONS
207
208#
209# Only the root, /usr, and /tmp filesystems need be statically
210# compiled; everything else will be automatically loaded at mount
211# time.  (Exception: the UFS family---FFS, MFS, and LFS---cannot
212# currently be demand-loaded.)  Some people still prefer to statically
213# compile other filesystems as well.
214#
215# NB: The LFS, PORTAL, and UNION filesystems are known to be buggy,
216# and WILL panic your system if you attempt to do anything with them.
217# They are included here as an incentive for some enterprising soul to
218# sit down and fix them.
219#
220# Note: 4.4BSD NQNFS lease checking has relatively high cost for
221# _local_ I/O as well as remote I/O. Don't use it unless you will
222# using NQNFS.
223#
224
225# One of these is mandatory:
226options		FFS			#Fast filesystem
227options		NFS			#Network File System
228
229# The rest are optional:
230options		NQNFS			#Enable NQNFS lease checking
231options		"CD9660"		#ISO 9660 filesystem
232options		FDESC			#File descriptor filesystem
233options		KERNFS			#Kernel filesystem
234options		LFS			#Log filesystem
235options		MFS			#Memory File System
236options		MSDOSFS			#MS DOS File System
237options		NULLFS			#NULL filesystem
238options		PORTAL			#Portal filesystem
239options		PROCFS			#Process filesystem
240options		UMAPFS			#UID map filesystem
241options		UNION			#Union filesystem
242
243# Make space in the kernel for a MFS rootfilesystem.  Define to the number
244# of kilobytes to reserve for the filesystem.
245options		"MFS_ROOT=10"
246
247# Allow this many swap-devices.
248options		"NSWAPDEV=20"
249
250# Disk quotas are supported when this option is enabled.  If you
251# change the value of this option, you must do a `make clean' in your
252# kernel compile directory in order to get a working kernel.
253#
254options		QUOTA			#enable disk quotas
255
256
257#####################################################################
258# SCSI DEVICES
259
260# SCSI DEVICE CONFIGURATION
261
262# The SCSI subsystem consists of the `base' SCSI code, a number of
263# high-level SCSI device `type' drivers, and the low-level host-adapter
264# device drivers.  The host adapters are listed in the ISA and PCI
265# device configuration sections below.
266#
267# Beginning with FreeBSD 2.0.5 you can wire down your SCSI devices so
268# that a given bus, target, and LUN always come on line as the same
269# device unit.  In earlier versions the unit numbers were assigned
270# in the order that the devices were probed on the SCSI bus.  This
271# means that if you removed a disk drive, you may have had to rewrite
272# your /etc/fstab file, and also that you had to be careful when adding
273# a new disk as it may have been probed earlier and moved your device
274# configuration around.
275
276# This old behavior is maintained as the default behavior.  The unit
277# assignment begins with the first non-wired down unit for a device
278# type.  For example, if you wire a disk as "sd3" then the first
279# non-wired disk will be assigned sd4.
280
281# The syntax for wiring down devices is:
282
283# disk sd0 at scbus0 target 0 unit 0
284# disk sd1 at scbus0 target 1
285# disk sd2 at scbus0 target 3
286# tape st1 at scbus0 target 6
287# device cd0 at scbus?
288
289# "units" (SCSI logical unit number) that are not specified are
290# treated as if specified as LUN 0.
291
292# All SCSI devices allocate as many units as are required.
293
294# The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI
295# configuration and doesn't have to be explicitly configured.
296
297controller	scbus0	#base SCSI code
298device		ch0	#SCSI media changers
299device		sd0	#SCSI disks
300device		st0	#SCSI tapes
301device		cd0	#SCSI CD-ROMs
302
303# The previous devices (ch, sd, st, cd) are recognized by config.
304# config doesn't (and shouldn't) know about these newer ones,
305# so we have to specify that they are on a SCSI bus with the "at scbus?"
306# clause.
307
308device worm0 at scbus?	# SCSI worm
309device pt0 at scbus?	# SCSI processor type
310device sctarg0 at scbus? # SCSI target
311
312# SCSI OPTIONS:
313
314# SCSIDEBUG: When defined enables debugging macros
315# NO_SCSI_SENSE: When defined disables sense descriptions (about 4k)
316# SCSI_REPORT_GEOMETRY: Always report disk geometry at boot up instead
317#                       of only when booting verbosely.
318options		SCSIDEBUG
319#options	NO_SCSI_SENSE
320options		SCSI_REPORT_GEOMETRY
321
322
323#####################################################################
324# MISCELLANEOUS DEVICES AND OPTIONS
325
326#
327# Of these, only the `log' device is truly mandatory.  The `pty'
328# device usually turns out to be ``effectively mandatory'', as it is
329# required for `telnetd', `rlogind', `screen', `emacs', and `xterm',
330# among others.  The `isdn', `ii', `ity', `itel', and `ispy' devices
331# are all required when ISDN support is used.
332#
333pseudo-device	pty	16	#Pseudo ttys - can go as high as 64
334pseudo-device	speaker		#Play IBM BASIC-style noises out your speaker
335pseudo-device	log		#Kernel syslog interface (/dev/klog)
336pseudo-device	gzip		#Exec gzipped a.out's
337pseudo-device	vn		#Vnode driver (turns a file into a device)
338pseudo-device	snp	3	#Snoop device - to look at pty/vty/etc..
339
340# These are non-optional for ISDN
341pseudo-device   isdn
342pseudo-device   ii      4
343pseudo-device   ity     4
344pseudo-device   itel    2
345pseudo-device   ispy    1
346
347
348#####################################################################
349# HARDWARE DEVICE CONFIGURATION
350
351# ISA and EISA devices:
352# Currently there is no separate support for EISA.  There should be.
353# Micro Channel is not supported at all.
354
355#
356# Mandatory ISA devices: isa, sc or vt, npx
357#
358controller	isa0
359
360#
361# Options for `isa':
362#
363# AUTO_EOI_1 enables the `automatic EOI' feature for the master 8259A
364# interrupt controller.  This saves about 1.25 usec for each interrupt.
365# No problems are known to be caused by this option.
366#
367# AUTO_EOI_2 enables the `automatic EOI' feature for the slave 8259A
368# interrupt controller.  This saves about 1.25 usec for each interrupt.
369# Automatic EOI is documented not to work for for the slave with the
370# original i8259A, but it works for some clones and some integrated
371# versions.
372#
373# BOUNCE_BUFFERS provides support for ISA DMA on machines with more
374# than 16 megabytes of memory.  It doesn't hurt on other machines.
375# Some broken EISA and VLB hardware may need this, too.
376#
377# DUMMY_NOPS disables extra delays for some bus operations.  The delays
378# are mostly for older systems and aren't used consistently.  Probably
379# works OK on most EISA bus machines.
380#
381# TUNE_1542 enables the automatic ISA bus speed selection for the
382# Adaptec 1542 boards. Does not work for all boards, use it with caution.
383#
384# BROKEN_KEYBOARD_RESET disables the use of the keyboard controller to
385# reset the CPU for reboot.  This is needed on some systems with broken
386# keyboard controllers.
387options		"AUTO_EOI_1"
388#options	"AUTO_EOI_2"
389options		BOUNCE_BUFFERS
390#options	DUMMY_NOPS
391#options        "TUNE_1542"
392#options	"BROKEN_KEYBOARD_RESET"
393
394# Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver
395#device		vt0	at isa? port "IO_KBD" tty irq 1 vector pcrint
396#options		"PCVT_FREEBSD=210"	# pcvt running on FreeBSD 2.0.5
397#options		XSERVER			# include code for XFree86
398#options		FAT_CURSOR		# start with block cursor
399
400# The syscons console driver (sco color console compatible) - default.
401device		sc0	at isa? port "IO_KBD" tty irq 1 vector scintr
402
403#
404# Options for `sc':
405#
406# HARDFONTS allows the driver to load an ISO-8859-1 font to replace
407# the default font in your display adapter's memory.
408#
409options		HARDFONTS
410#
411# MAXCONS is maximum number of virtual consoles, no more than 16
412# default value: 12
413#
414options         "MAXCONS=16"
415
416device		npx0	at isa? port "IO_NPX" irq 13 vector npxintr
417
418#
419# Optional ISA and EISA devices:
420#
421
422#
423# SCSI host adapters: `aha', `ahb', `aic', `bt', `nca'
424#
425# aha: Adaptec 154x
426# ahb: Adaptec 174x
427# ahc: Adaptec 274x/284x/294x
428# aic: Adaptec 152x and sound cards using the Adaptec AIC-6360 (slow!)
429# bt: Most Buslogic controllers
430# nca: ProAudioSpectrum cards using the NCR 5380 or Trantor T130
431# uha: UltraStore 14F and 34F
432# sea: Seagate ST01/02 8 bit controller (slow!)
433# wds: Western Digital WD7000 controller (no scatter/gather!).
434#
435# Note that the order is important in order for Buslogic cards to be
436# probed correctly.
437#
438
439controller	bt0	at isa? port "IO_BT0" bio irq ? vector btintr
440controller	ahc0	at isa? bio irq ? vector ahcintr # port??? iomem?
441controller	ahb0	at isa? bio irq ? vector ahbintr
442controller	aha0	at isa? port "IO_AHA0" bio irq ? drq 5 vector ahaintr
443controller	uha0	at isa? port "IO_UHA0" bio irq ? drq 5 vector uhaintr
444
445controller      aic0    at isa? port 0x340 bio irq 11 vector aicintr
446controller	nca0	at isa? port 0x1f88 bio irq 10 vector ncaintr
447controller	nca1	at isa? port 0x1f84
448controller	nca2	at isa? port 0x1f8c
449controller	nca3	at isa? port 0x1e88
450controller	nca4	at isa? port 0x350 bio irq 5 vector ncaintr
451
452controller	sea0	at isa? bio irq 5 iomem 0xdc000 iosiz 0x2000 vector seaintr
453controller	wds0	at isa? port 0x350 bio irq 15 drq 6 vector wdsintr
454
455#
456# ST-506, ESDI, and IDE hard disks: `wdc' and `wd'
457#
458# NB: ``Enhanced IDE'' is NOT supported at this time.
459#
460# The flags fields are used to enable the multi-sector I/O and
461# the 32BIT I/O modes.  The flags may be used in either the controller
462# definition or in the individual disk definitions.  The controller
463# definition is supported for the boot configuration stuff.
464#
465# Each drive has a 16 bit flags value defined:
466#	The low 8 bits are the maximum value for the multi-sector I/O,
467#	where 0xff defaults to the maximum that the drive can handle.
468#	The high bit of the 16 bit flags (0x8000) allows probing for
469#	32 bit transfers.
470#
471# The flags field for the drives can be specified in the controller
472# specification with the low 16 bits for drive 0, and the high 16 bits
473# for drive 1.
474# e.g.:
475#controller	wdc0	at isa? port "IO_WD1" bio irq 14 flags 0x00ff8004 vector wdintr
476#
477# specifies that drive 0 will be allowed to probe for 32 bit transfers and
478# a maximum multi-sector transfer of 4 sectors, and drive 1 will not be
479# allowed to probe for 32 bit transfers, but will allow multi-sector
480# transfers up to the maximum that the drive supports.
481#
482
483#
484controller	wdc0	at isa? port "IO_WD1" bio irq 14 vector wdintr
485disk		wd0	at wdc0 drive 0
486disk		wd1	at wdc0 drive 1
487controller	wdc1	at isa? port "IO_WD2" bio irq 15 vector wdintr
488disk		wd2	at wdc1 drive 0
489disk		wd3	at wdc1 drive 1
490
491#
492# Standard floppy disk controllers and floppy tapes: `fdc', `fd', and `ft'
493#
494controller	fdc0	at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
495#
496# Activate this line instead of the fdc0 line above if you happen to
497# have an Insight floppy tape.  Probing them proved to be dangerous
498# for people with floppy disks only, so it's "hidden" behind a flag:
499#controller fdc0 at isa? port "IO_FD1" bio flags 1 irq 6 drq 2 vector fdintr
500
501disk		fd0	at fdc0 drive 0
502disk		fd1	at fdc0 drive 1
503tape		ft0	at fdc0 drive 2
504
505
506#
507# Options for `fd':
508#
509# FDSEEKWAIT selects a non-default head-settle time (i.e., the time to
510# wait after a seek is performed).  The default value (1/32 s) is
511# usually sufficient.  The units are inverse seconds, so a value of 16
512# here means to wait 1/16th of a second; you should choose a power of
513# two.
514#
515options	FDSEEKWAIT="16"
516
517#
518# Other standard PC hardware: `lpt', `mse', `psm', `sio', etc.
519#
520# lpt: printer port
521# mse: Logitech and ATI InPort bus mouse ports
522# psm: PS/2 mouse port [note: conflicts with sc0/vt0, thus "conflicts" keywd]
523# sio: serial ports (see sio(4))
524
525device		lpt0	at isa? port "IO_LPT3" tty irq 7 vector lptintr
526device		mse0	at isa? port 0x23c tty irq 5 vector mseintr
527device		psm0	at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr
528device		sio0	at isa? port "IO_COM1" tty irq 4 vector siointr
529
530# Options for sio:
531options		COMCONSOLE		#prefer serial console to video console
532options		COM_MULTIPORT		#code for some cards with shared IRQs
533options		DSI_SOFT_MODEM		#code for DSI Softmodems
534options		BREAK_TO_DEBUGGER	#a BREAK on a comconsole goes to
535					#DDB, if available.
536
537#
538# Network interfaces: `cx', `ed', `el', `ep', `ie', `is', `le', `lnc'
539#
540# cx: Cronyx/Sigma multiport sync/async (with Cisco or PPP framing)
541# ed: Western Digital and SMC 80xx; Novell NE1000 and NE2000; 3Com 3C503
542# el: 3Com 3C501 (slow!)
543# ep: 3Com 3C509 (buggy)
544# fe: Fujitsu MB86960A/MB86965A Ethernet
545# fea: DEC DEFEA EISA FDDI adapter
546# ie: AT&T StarLAN 10 and EN100; 3Com 3C507; unknown NI5210
547# le: Digital Equipment EtherWorks 2 and EtherWorks 3 (DEPCA, DE100,
548#     DE101, DE200, DE201, DE202, DE203, DE204, DE205, DE422)
549# lnc: Lance/PCnet cards (Isolan, Novell NE2100, NE32-VL)
550# ze: IBM/National Semiconductor PCMCIA ethernet controller.
551# zp: 3Com PCMCIA Etherlink III (It does not require shared memory for
552#     send/receive operation, but it needs 'iomem' to read/write the
553#     attribute memory)
554#
555
556device cx0 at isa? port 0x240 net irq 15 drq 7 vector cxintr
557device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr
558device eg0 at isa? port 0x310 net irq 5 vector egintr
559device el0 at isa? port 0x300 net irq 9 vector elintr
560device ep0 at isa? port 0x300 net irq 10 vector epintr
561device fe0 at isa? port 0x240 net irq ? vector feintr
562device fea0 at isa? net irq ? vector feaintr
563device ie0 at isa? port 0x360 net irq 7 iomem 0xd0000 vector ieintr
564device ix0 at isa? port 0x300 net irq 10 iomem 0xd0000 iosiz 32768 vector ixintr
565device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector le_intr
566device lnc0 at isa? port 0x300 net irq 10 drq 0 vector lncintr
567device ze0 at isa? port 0x300 net irq 5 iomem 0xd8000 vector zeintr
568device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zpintr
569
570#
571# ISDN drivers - `isdn'.
572#
573# Uncomment one (and only one) of the following two drivers for the appropriate
574# ISDN device you have.  For more information on what's considered appropriate
575# for your given set of circumstances, please read
576# /usr/src/gnu/usr.sbin/docs/INSTALL.  It's a bit sparse at present, but it's
577# the best we have right now.  The snic driver is also disabled at present,
578# waiting for someone to upgrade the driver to 2.0 (it's in /sys/gnu/scsi/).
579#
580device nic0 at isa? port "IO_COM3" iomem 0xe0000 tty irq 9 vector nicintr
581device nnic0 at isa? port 0x150 iomem 0xe0000 tty irq 12 vector nnicintr
582
583#
584# Audio drivers: `snd', `sb', `pas', `gus', `pca'
585#
586# snd: Voxware sound support code
587# sb: SoundBlaster PCM - SoundBlaster, SB Pro, SB16, ProAudioSpectrum
588# sbxvi: SoundBlaster 16
589# sbmidi: SoundBlaster 16 MIDI interface
590# pas: ProAudioSpectrum PCM and MIDI
591# gus: Gravis Ultrasound - Ultrasound, Ultrasound 16, Ultrasound MAX
592# gusxvi: Gravis Ultrasound 16-bit PCM
593# gusmax: Gravis Ultrasound MAX (currently broken)
594# mss: Microsoft Sound System
595# opl: Yamaha OPL-2 and OPL-3 FM - SB, SB Pro, SB 16, ProAudioSpectrum
596# uart: stand-alone 6850 UART for MIDI
597# mpu: Roland MPU-401 stand-alone card
598#
599# Beware!  The addresses specified below are also hard-coded in
600# i386/isa/sound/sound_config.h.  If you change the values here, you
601# must also change the values in the include file.
602#
603# pca: PCM audio through your PC speaker
604#
605# If you don't have a lpt0 device at IRQ 7, you can remove the
606# ``conflicts'' specification in the appropriate device entries below.
607#
608# Controls all sound devices
609controller	snd0
610device sb0      at isa? port 0x220 irq 7 conflicts drq 1 vector sbintr
611device sbxvi0   at isa? drq 5
612device sbmidi0  at isa? port 0x330
613device pas0     at isa? port 0x388 irq 10 drq 6 vector pasintr
614device gus0 at isa? port 0x220 irq 11 drq 1 vector gusintr
615device gusxvi0 at isa? port 0x530 irq 7 conflicts drq 3 vector adintr
616device gusmax0 at isa? port 0x32c
617device mss0 at isa? port 0x530 irq 10 drq 1 vector adintr
618device opl0     at isa? port 0x388
619device mpu0     at isa? port 0x330 irq 6 drq 0
620device uart0 at isa? port 0x330 irq 5 vector "m6850intr"
621
622# Not controlled by `snd'
623device pca0 at isa? port IO_TIMER1 tty
624
625#
626# Miscellaneous hardware: `mcd', `wt', `ctx', `apm'
627#
628# mcd: Mitsumi CD-ROM
629# scd: Sony CD-ROM
630# matcd: Matsushita/Panasonic CD-ROM
631# wt: Wangtek and Archive QIC-02/QIC-36 tape drives
632# ctx: Cortex-I frame grabber
633# apm: Laptop Advanced Power Management (experimental)
634# spigot: The Creative Labs Video Spigot video-aquisition board
635# cy: Cyclades high-speed serial driver (ALPHA QUALITY!)
636# gp:  National Instruments AT-GPIB and AT-GPIB/TNT board
637# gsc: Genius GS-4500 hand scanner.
638# joy: joystick
639# labpc: National Instrument's Lab-PC and Lab-PC+
640# rc: RISCom/8 multiport card
641
642#
643# Notes on the spigot:
644#  The video spigot is at 0xad6.  This port address can not be changed.
645#  The irq values may only be 10, 11, or 15
646#  I/O memory is an 8kb region.  Possible values are:
647#    0a0000, 0a2000, ..., 0fffff, f00000, f02000, ..., ffffff
648#  Note that the start address must be on an even boundary.
649
650device		mcd0	at isa? port 0x300 bio irq 10 vector mcdintr
651# for the Sony CDU31/33A CDROM
652device		scd0	at isa? port 0x230 bio
653# for the soundblaster 16 multicd - up to 4 devices
654controller      matcd0  at isa? port ? bio
655device		wt0	at isa? port 0x300 bio irq 5 drq 1 vector wtintr
656device		ctx0	at isa? port 0x230 iomem 0xd0000
657device		spigot0 at isa? port 0xad6 irq 15 iomem 0xee000 vector spigintr
658device		apm0	at isa?
659device		gp0	at isa? port 0x2c0 tty
660device		gsc0	at isa? port "IO_GSC1" tty drq 3
661device		joy0	at isa? port "IO_GAME"
662device		cy0	at isa? tty irq 10 iomem 0xd4000 vector cyintr
663device		labpc0	at isa? port 0x260 tty irq 5 vector labpcintr
664device          rc0     at isa? port 0x220 tty irq 12 vector rcintr
665
666#
667# PCI devices:
668#
669# The main PCI bus device is `pci'.  It provides auto-detection and
670# configuration support for all devices on the PCI bus, using either
671# configuration mode defined in the PCI specification.
672#
673# The `ncr' device provides support for the NCR 53C810 and 53C825
674# self-contained SCSI host adapters.
675#
676# The `de' device provides support for the Digital Equipment DC21040
677# self-contained Ethernet adapter.
678#
679# The `fpa' device provides support for the Digital DEFPA PCI FDDI
680# adapter. pseudo-device fddi is also needed.
681#
682# The PROBE_VERBOSE option enables a long listing of chip set registers
683# for supported PCI chip sets (currently only intel Saturn and Mercury).
684#
685controller	pci0
686device		ncr0
687device		de0
688device		fpa0
689options		PROBE_VERBOSE
690