NOTES revision 97983
1#
2# NOTES -- Lines that can be cut/pasted into kernel and hints configs.
3#
4# Lines that begin with 'device', 'options', 'machine', 'ident', 'maxusers',
5# 'makeoptions', 'hints' etc go into the kernel configuration that you
6# run config(8) with.
7#
8# Lines that begin with 'hints.' are NOT for config(8), they go into your
9# hints file.  See /boot/device.hints and/or the 'hints' config(8) directive.
10#
11# Please use ``make LINT'' to create an old-style LINT file if you want to
12# do kernel test-builds.
13#
14# This file contains machine independent kernel configuration notes.  For
15# machine dependent notes, look in /sys/<arch>/conf/NOTES.
16#
17# $FreeBSD: head/sys/conf/NOTES 97983 2002-06-07 02:04:09Z mdodd $
18#
19
20#
21# This is the ``identification'' of the kernel.  Usually this should
22# be the same as the name of your kernel.
23#
24ident		LINT
25
26#
27# The `maxusers' parameter controls the static sizing of a number of
28# internal system tables by a formula defined in subr_param.c.  Setting
29# maxusers to 0 will cause the system to auto-size based on physical 
30# memory.
31#
32maxusers	10
33
34#
35# We want LINT to cover profiling as well
36profile 	2
37
38#
39# The `makeoptions' parameter allows variables to be passed to the
40# generated Makefile in the build area.
41#
42# CONF_CFLAGS gives some extra compiler flags that are added to ${CFLAGS}
43# after most other flags.  Here we use it to inhibit use of non-optimal
44# gcc builtin functions (e.g., memcmp).
45#
46# DEBUG happens to be magic.
47# The following is equivalent to 'config -g KERNELNAME' and creates
48# 'kernel.debug' compiled with -g debugging as well as a normal
49# 'kernel'.  Use 'make install.debug' to install the debug kernel
50# but that isn't normally necessary as the debug symbols are not loaded
51# by the kernel and are not useful there anyway.
52#
53# KERNEL can be overridden so that you can change the default name of your
54# kernel.
55#
56# MODULES_OVERRIDE can be used to limit modules built to a specific list.
57#
58makeoptions	CONF_CFLAGS=-fno-builtin  #Don't allow use of memcmp, etc.
59#makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
60#makeoptions	KERNEL=foo		#Build kernel "foo" and install "/foo"
61# Only build Linux API modules and plus those parts of the sound system I need.
62#makeoptions	MODULES_OVERRIDE="linux sound/snd sound/pcm sound/driver/maestro3"
63
64#
65# Certain applications can grow to be larger than the 512M limit
66# that FreeBSD initially imposes.  Below are some options to
67# allow that limit to grow to 1GB, and can be increased further
68# with changing the parameters.  MAXDSIZ is the maximum that the
69# limit can be set to, and the DFLDSIZ is the default value for
70# the limit.  MAXSSIZ is the maximum that the stack limit can be
71# set to.  You might want to set the default lower than the max, 
72# and explicitly set the maximum with a shell command for processes
73# that regularly exceed the limit like INND.
74#
75options 	MAXDSIZ="(1024UL*1024*1024)"
76options 	MAXSSIZ="(128UL*1024*1024)"
77options 	DFLDSIZ="(1024UL*1024*1024)"
78
79#
80# BLKDEV_IOSIZE sets the default block size used in user block
81# device I/O.  Note that this value will be overriden by the label
82# when specifying a block device from a label with a non-0
83# partition blocksize.  The default is PAGE_SIZE.
84#
85options 	BLKDEV_IOSIZE=8192
86
87# Options for the VM subsystem
88options 	PQ_CACHESIZE=512	# color for 512k/16k cache
89options 	KSTACK_PAGES=3		# number of stack pages per process
90# Deprecated options supported for backwards compatibility
91#options 	PQ_NOOPT		# No coloring
92#options 	PQ_LARGECACHE		# color for 512k/16k cache
93#options 	PQ_HUGECACHE		# color for 1024k/16k cache
94#options 	PQ_MEDIUMCACHE		# color for 256k/16k cache
95#options 	PQ_NORMALCACHE		# color for 64k/16k cache
96
97# This allows you to actually store this configuration file into
98# the kernel binary itself, where it may be later read by saying:
99#    strings -n 3 /boot/kernel/kernel | sed -n 's/^___//p' > MYKERNEL
100#
101options 	INCLUDE_CONFIG_FILE     # Include this file in kernel
102
103options	GEOM				# Use the GEOMetry system for
104					# disk-I/O transformations.
105options	GEOM_GPT			# Include support for GPT disks.
106
107#
108# The root device and filesystem type can be compiled in;
109# this provides a fallback option if the root device cannot
110# be correctly guessed by the bootstrap code, or an override if
111# the RB_DFLTROOT flag (-r) is specified when booting the kernel.
112#
113options 	ROOTDEVNAME=\"ufs:da0s2e\"
114
115
116#####################################################################
117# SMP OPTIONS:
118#
119# SMP enables building of a Symmetric MultiProcessor Kernel.
120
121# Mandatory:
122options 	SMP			# Symmetric MultiProcessor Kernel
123
124# ADAPTIVE_MUTEXES changes the behavior of blocking mutexes to spin
125# if the thread that currently owns the mutex is executing on another
126# CPU.
127options 	ADAPTIVE_MUTEXES
128
129# SMP Debugging Options:
130#
131# MUTEX_DEBUG enables various extra assertions in the mutex code.
132# WITNESS enables the witness code which detects deadlocks and cycles
133#         during locking operations.
134# WITNESS_DDB causes the witness code to drop into the kernel debugger if
135#	  a lock heirarchy violation occurs or if locks are held when going to
136#	  sleep.
137# WITNESS_SKIPSPIN disables the witness checks on spin mutexes.
138options 	MUTEX_DEBUG
139options 	WITNESS
140options 	WITNESS_DDB
141options 	WITNESS_SKIPSPIN
142
143#
144# MUTEX_PROFILING - Profiling mutual exclusion locks (mutexes).  This
145# records four numbers for each acquisition point (identified by
146# source file name and line number): longest time held, total time held,
147# number of non-recursive acquisitions, and average time held. Measurements
148# are made and stored in nanoseconds (using nanotime(9)), but are presented
149# in microseconds, which should be sufficient for the locks which actually
150# want this (those that are held long and / or often).  The MUTEX_PROFILING
151# option has the following sysctl namespace for controlling and viewing its
152# operation:
153#
154#  debug.mutex.prof.enable - enable / disable profiling
155#  debug.mutex.prof.acquisitions - number of mutex acquisitions held
156#  debug.mutex.prof.records - number of acquisition points recorded
157#  debug.mutex.prof.maxrecords - max number of acquisition points
158#  debug.mutex.prof.rejected - number of rejections (due to full table)
159#  debug.mutex.prof.hashsize - hash size
160#  debug.mutex.prof.collisions - number of hash collisions
161#  debug.mutex.prof.stats - profiling statistics
162#
163options		MUTEX_PROFILING
164
165
166#####################################################################
167# COMPATIBILITY OPTIONS                                             
168
169#
170# Implement system calls compatible with 4.3BSD and older versions of
171# FreeBSD.  You probably do NOT want to remove this as much current code
172# still relies on the 4.3 emulation.
173#
174options 	COMPAT_43
175
176#
177# These three options provide support for System V Interface
178# Definition-style interprocess communication, in the form of shared
179# memory, semaphores, and message queues, respectively.
180#
181options 	SYSVSHM
182options 	SYSVSEM
183options 	SYSVMSG
184
185
186#####################################################################
187# DEBUGGING OPTIONS
188
189#
190# Enable the kernel debugger.
191#
192options 	DDB
193
194#
195# Use direct symbol lookup routines for ddb instead of the kernel linker
196# ones, so that symbols (mostly) work before the kernel linker has been
197# initialized.  This is not the default because it breaks ddb's lookup of
198# symbols in loaded modules.
199#
200#!options 	DDB_NOKLDSYM
201
202#
203# Don't drop into DDB for a panic. Intended for unattended operation
204# where you may want to drop to DDB from the console, but still want
205# the machine to recover from a panic
206#
207options 	DDB_UNATTENDED
208
209#
210# If using GDB remote mode to debug the kernel, there's a non-standard
211# extension to the remote protocol that can be used to use the serial
212# port as both the debugging port and the system console.  It's non-
213# standard and you're on your own if you enable it.  See also the
214# "remotechat" variables in the FreeBSD specific version of gdb.
215#
216options 	GDB_REMOTE_CHAT
217
218#
219# KTRACE enables the system-call tracing facility ktrace(2).
220#
221options 	KTRACE			#kernel tracing
222
223#
224# KTR is a kernel tracing mechanism imported from BSD/OS.  Currently it
225# has no userland interface aside from a few sysctl's.  It is enabled with
226# the KTR option.  KTR_ENTRIES defines the number of entries in the circular
227# trace buffer.  KTR_COMPILE defines the mask of events to compile into the
228# kernel as defined by the KTR_* constants in <sys/ktr.h>.  KTR_MASK defines the
229# initial value of the ktr_mask variable which determines at runtime what
230# events to trace.  KTR_CPUMASK determines which CPU's log events, with
231# bit X corresponding to cpu X.  KTR_VERBOSE enables dumping of KTR events
232# to the console by default.  This functionality can be toggled via the
233# debug.ktr_verbose sysctl and defaults to off if KTR_VERBOSE is not defined.
234#
235options 	KTR
236options 	KTR_ENTRIES=1024
237options 	KTR_COMPILE="(KTR_INTR|KTR_PROC)"
238options 	KTR_MASK=KTR_INTR
239options 	KTR_CPUMASK=0x3
240options 	KTR_VERBOSE
241
242#
243# The INVARIANTS option is used in a number of source files to enable
244# extra sanity checking of internal structures.  This support is not
245# enabled by default because of the extra time it would take to check
246# for these conditions, which can only occur as a result of
247# programming errors.
248#
249options 	INVARIANTS
250
251#
252# The INVARIANT_SUPPORT option makes us compile in support for
253# verifying some of the internal structures.  It is a prerequisite for
254# 'INVARIANTS', as enabling 'INVARIANTS' will make these functions be
255# called.  The intent is that you can set 'INVARIANTS' for single
256# source files (by changing the source file or specifying it on the
257# command line) if you have 'INVARIANT_SUPPORT' enabled.  Also, if you
258# wish to build a kernel module with 'INVARIANTS', then adding
259# 'INVARIANT_SUPPORT' to your kernel will provide all the necessary
260# infrastructure without the added overhead.
261#
262options 	INVARIANT_SUPPORT
263
264#
265# The DIAGNOSTIC option is used to enable extra debugging information
266# from some parts of the kernel.  As this makes everything more noisy,
267# it is disabled by default.
268#
269options 	DIAGNOSTIC
270
271#
272# REGRESSION causes optional kernel interfaces necessary only for regression
273# testing to be enabled.  These interfaces may consitute security risks
274# when enabled, as they permit processes to easily modify aspects of the
275# run-time environment to reproduce unlikely or unusual (possibly normally
276# impossible) scenarios.
277#
278options 	REGRESSION
279
280#
281# RESTARTABLE_PANICS allows one to continue from a panic as if it were
282# a call to the debugger via the Debugger() function instead.  It is only
283# useful if a kernel debugger is present.  To restart from a panic, reset
284# the panicstr variable to NULL and continue execution.  This option is
285# for development use only and should NOT be used in production systems
286# to "workaround" a panic.
287#
288#options 	RESTARTABLE_PANICS
289
290#
291# This option let some drivers co-exist that can't co-exist in a running
292# system.  This is used to be able to compile all kernel code in one go for
293# quality assurance purposes (like this file, which the option takes it name
294# from.)
295#
296options 	COMPILING_LINT
297
298
299#####################################################################
300# NETWORKING OPTIONS
301
302#
303# Protocol families:
304#  Only the INET (Internet) family is officially supported in FreeBSD.
305#  Source code for the NS (Xerox Network Service) is provided for amusement
306#  value.
307#
308options 	INET			#Internet communications protocols
309options 	INET6			#IPv6 communications protocols
310options 	IPSEC			#IP security
311options 	IPSEC_ESP		#IP security (crypto; define w/ IPSEC)
312options 	IPSEC_DEBUG		#debug for IP security
313
314options 	IPX			#IPX/SPX communications protocols
315options 	IPXIP			#IPX in IP encapsulation (not available)
316options 	IPTUNNEL		#IP in IPX encapsulation (not available)
317
318#options 	NCP			#NetWare Core protocol
319
320options 	NETATALK		#Appletalk communications protocols
321options 	NETATALKDEBUG		#Appletalk debugging
322
323# These are currently broken but are shipped due to interest.
324#options 	NS			#Xerox NS protocols
325#options 	NSIP			#XNS over IP
326
327#
328# SMB/CIFS requester
329# NETSMB enables support for SMB protocol, it requires LIBMCHAIN and LIBICONV
330# options.
331# NETSMBCRYPTO enables support for encrypted passwords.
332options 	NETSMB			#SMB/CIFS requester
333options 	NETSMBCRYPTO		#encrypted password support for SMB
334
335# mchain library. It can be either loaded as KLD or compiled into kernel
336options 	LIBMCHAIN
337
338# netgraph(4). Enable the base netgraph code with the NETGRAPH option.
339# Individual node types can be enabled with the corresponding option
340# listed below; however, this is not strictly necessary as netgraph
341# will automatically load the corresponding KLD module if the node type
342# is not already compiled into the kernel. Each type below has a
343# corresponding man page, e.g., ng_async(8).
344options 	NETGRAPH		#netgraph(4) system
345options 	NETGRAPH_ASYNC
346options 	NETGRAPH_BPF
347options 	NETGRAPH_CISCO
348options 	NETGRAPH_ECHO
349options 	NETGRAPH_ETHER
350options 	NETGRAPH_FRAME_RELAY
351options 	NETGRAPH_GIF
352options 	NETGRAPH_GIF_DEMUX
353options 	NETGRAPH_HOLE
354options 	NETGRAPH_IFACE
355options 	NETGRAPH_IP_INPUT
356options 	NETGRAPH_KSOCKET
357options 	NETGRAPH_LMI
358# MPPC compression requires proprietary files (not included)
359#options 	NETGRAPH_MPPC_COMPRESSION
360options 	NETGRAPH_MPPC_ENCRYPTION
361options 	NETGRAPH_ONE2MANY
362options 	NETGRAPH_PPP
363options 	NETGRAPH_PPPOE
364options 	NETGRAPH_PPTPGRE
365options 	NETGRAPH_RFC1490
366options 	NETGRAPH_SOCKET
367options 	NETGRAPH_SPLIT
368options 	NETGRAPH_TEE
369options 	NETGRAPH_TTY
370options 	NETGRAPH_UI
371options 	NETGRAPH_VJC
372
373device		mn	# Munich32x/Falc54 Nx64kbit/sec cards.
374device		lmc	# tulip based LanMedia WAN cards
375device		musycc	# LMC/SBE LMC1504 quad T1/E1
376
377#
378# Network interfaces:
379#  The `loop' device is MANDATORY when networking is enabled.
380#  The `ether' device provides generic code to handle
381#  Ethernets; it is MANDATORY when a Ethernet device driver is
382#  configured or token-ring is enabled.
383#  The `fddi' device provides generic code to support FDDI.
384#  The `arcnet' device provides generic code to support Arcnet.
385#  The `sppp' device serves a similar role for certain types
386#  of synchronous PPP links (like `cx', `ar').
387#  The `sl' device implements the Serial Line IP (SLIP) service.
388#  The `ppp' device implements the Point-to-Point Protocol.
389#  The `bpf' device enables the Berkeley Packet Filter.  Be
390#  aware of the legal and administrative consequences of enabling this
391#  option.  The number of devices determines the maximum number of
392#  simultaneous BPF clients programs runnable.
393#  The `disc' device implements a minimal network interface,
394#  which throws away all packets sent and never receives any.  It is
395#  included for testing purposes.  This shows up as the `ds' interface.
396#  The `tap' device is a pty-like virtual Ethernet interface
397#  The `tun' device implements (user-)ppp and nos-tun
398#  The `gif' device implements IPv6 over IP4 tunneling,
399#  IPv4 over IPv6 tunneling, IPv4 over IPv4 tunneling and
400#  IPv6 over IPv6 tunneling.
401#  The XBONEHACK option allows the same pair of addresses to be configured on
402#  multiple gif interfaces.
403#  The `faith' device captures packets sent to it and diverts them
404#  to the IPv4/IPv6 translation daemon.
405#  The `stf' device implements 6to4 encapsulation.
406#  The `ef' device provides support for multiple ethernet frame types
407#  specified via ETHER_* options. See ef(4) for details.
408#
409# The PPP_BSDCOMP option enables support for compress(1) style entire
410# packet compression, the PPP_DEFLATE is for zlib/gzip style compression.
411# PPP_FILTER enables code for filtering the ppp data stream and selecting
412# events for resetting the demand dial activity timer - requires bpf.
413# See pppd(8) for more details.
414#
415device		ether			#Generic Ethernet
416device		vlan			#VLAN support
417device		token			#Generic TokenRing
418device		fddi			#Generic FDDI
419device		arcnet			#Generic Arcnet
420device		sppp			#Generic Synchronous PPP
421device		loop			#Network loopback device
422device		bpf			#Berkeley packet filter
423device		disc			#Discard device (ds0, ds1, etc)
424device		tap			#Virtual Ethernet driver
425device		tun			#Tunnel driver (ppp(8), nos-tun(8))
426device		sl			#Serial Line IP
427device		ppp	2		#Point-to-point protocol
428options 	PPP_BSDCOMP		#PPP BSD-compress support
429options 	PPP_DEFLATE		#PPP zlib/deflate/gzip support
430options 	PPP_FILTER		#enable bpf filtering (needs bpf)
431
432device		ef			# Multiple ethernet frames support
433options 	ETHER_II		# enable Ethernet_II frame
434options 	ETHER_8023		# enable Ethernet_802.3 (Novell) frame
435options 	ETHER_8022		# enable Ethernet_802.2 frame
436options 	ETHER_SNAP		# enable Ethernet_802.2/SNAP frame
437
438# for IPv6
439device		gif			#IPv6 and IPv4 tunneling
440options 	XBONEHACK
441device		faith			#for IPv6 and IPv4 translation
442device		stf			#6to4 IPv6 over IPv4 encapsulation
443
444#
445# Internet family options:
446#
447# MROUTING enables the kernel multicast packet forwarder, which works
448# with mrouted(8).
449#
450# IPFIREWALL enables support for IP firewall construction, in
451# conjunction with the `ipfw' program.  IPFIREWALL_VERBOSE sends
452# logged packets to the system logger.  IPFIREWALL_VERBOSE_LIMIT
453# limits the number of times a matching entry can be logged.
454#
455# WARNING:  IPFIREWALL defaults to a policy of "deny ip from any to any"
456# and if you do not add other rules during startup to allow access,
457# YOU WILL LOCK YOURSELF OUT.  It is suggested that you set firewall_type=open
458# in /etc/rc.conf when first enabling this feature, then refining the
459# firewall rules in /etc/rc.firewall after you've tested that the new kernel
460# feature works properly.
461#
462# IPFIREWALL_DEFAULT_TO_ACCEPT causes the default rule (at boot) to
463# allow everything.  Use with care, if a cracker can crash your
464# firewall machine, they can get to your protected machines.  However,
465# if you are using it as an as-needed filter for specific problems as
466# they arise, then this may be for you.  Changing the default to 'allow'
467# means that you won't get stuck if the kernel and /sbin/ipfw binary get
468# out of sync.
469#
470# IPDIVERT enables the divert IP sockets, used by ``ipfw divert''
471#
472# IPSTEALTH enables code to support stealth forwarding (i.e., forwarding
473# packets without touching the ttl).  This can be useful to hide firewalls
474# from traceroute and similar tools.
475#
476# PFIL_HOOKS enables an abtraction layer which is meant to be used in
477# network code where filtering is required.  See the pfil(9) man page.
478# This option is a subset of the IPFILTER option.
479#
480# TCPDEBUG enables code which keeps traces of the TCP state machine
481# for sockets with the SO_DEBUG option set, which can then be examined
482# using the trpt(8) utility.
483#
484options 	MROUTING		# Multicast routing
485options 	IPFIREWALL		#firewall
486options 	IPFIREWALL_VERBOSE	#enable logging to syslogd(8)
487options 	IPFIREWALL_FORWARD	#enable transparent proxy support
488options 	IPFIREWALL_VERBOSE_LIMIT=100	#limit verbosity
489options 	IPFIREWALL_DEFAULT_TO_ACCEPT	#allow everything by default
490options 	IPV6FIREWALL		#firewall for IPv6
491options 	IPV6FIREWALL_VERBOSE
492options 	IPV6FIREWALL_VERBOSE_LIMIT=100
493options 	IPV6FIREWALL_DEFAULT_TO_ACCEPT
494options 	IPDIVERT		#divert sockets
495options 	IPFILTER		#ipfilter support
496options 	IPFILTER_LOG		#ipfilter logging
497options 	IPFILTER_DEFAULT_BLOCK	#block all packets by default
498options 	IPSTEALTH		#support for stealth forwarding
499options 	PFIL_HOOKS
500options 	TCPDEBUG
501
502# RANDOM_IP_ID causes the ID field in IP packets to be randomized
503# instead of incremented by 1 with each packet generated.  This
504# option closes a minor information leak which allows remote
505# observers to determine the rate of packet generation on the
506# machine by watching the counter.
507options 	RANDOM_IP_ID
508
509# Statically Link in accept filters
510options 	ACCEPT_FILTER_DATA
511options 	ACCEPT_FILTER_HTTP
512
513# TCP_DROP_SYNFIN adds support for ignoring TCP packets with SYN+FIN. This
514# prevents nmap et al. from identifying the TCP/IP stack, but breaks support
515# for RFC1644 extensions and is not recommended for web servers.
516#
517options 	TCP_DROP_SYNFIN		#drop TCP packets with SYN+FIN
518
519# DUMMYNET enables the "dummynet" bandwidth limiter. You need
520# IPFIREWALL as well. See the dummynet(4) and ipfw(8) manpages for more info.
521# When you run DUMMYNET it is advisable to also have "options HZ=1000"
522# to achieve a smoother scheduling of the traffic.
523#
524# BRIDGE enables bridging between ethernet cards -- see bridge(4).
525# You can use IPFIREWALL and DUMMYNET together with bridging.
526#
527options 	DUMMYNET
528options 	BRIDGE
529
530#
531# ATM (HARP version) options
532#
533# ATM_CORE includes the base ATM functionality code.  This must be included
534#	for ATM support.
535#
536# ATM_IP includes support for running IP over ATM.
537#
538# At least one (and usually only one) of the following signalling managers
539# must be included (note that all signalling managers include PVC support):
540# ATM_SIGPVC includes support for the PVC-only signalling manager `sigpvc'.
541# ATM_SPANS includes support for the `spans' signalling manager, which runs
542#	the FORE Systems's proprietary SPANS signalling protocol.
543# ATM_UNI includes support for the `uni30' and `uni31' signalling managers,
544#	which run the ATM Forum UNI 3.x signalling protocols.
545#
546# The `hea' driver provides support for the Efficient Networks, Inc.
547# ENI-155p ATM PCI Adapter.
548#
549# The `hfa' driver provides support for the FORE Systems, Inc.
550# PCA-200E ATM PCI Adapter.
551#
552options 	ATM_CORE		#core ATM protocol family
553options 	ATM_IP			#IP over ATM support
554options 	ATM_SIGPVC		#SIGPVC signalling manager
555options 	ATM_SPANS		#SPANS signalling manager
556options 	ATM_UNI			#UNI signalling manager
557
558device		hea			#Efficient ENI-155p ATM PCI
559device		hfa			#FORE PCA-200E ATM PCI
560
561
562#####################################################################
563# FILESYSTEM OPTIONS
564
565#
566# Only the root, /usr, and /tmp filesystems need be statically
567# compiled; everything else will be automatically loaded at mount
568# time.  (Exception: the UFS family--- FFS --- cannot
569# currently be demand-loaded.)  Some people still prefer to statically
570# compile other filesystems as well.
571#
572# NB: The NULL, PORTAL, UMAP and UNION filesystems are known to be
573# buggy, and WILL panic your system if you attempt to do anything with
574# them.  They are included here as an incentive for some enterprising
575# soul to sit down and fix them.
576#
577
578# One of these is mandatory:
579options 	FFS			#Fast filesystem
580options 	NFSCLIENT		#Network File System
581options 	NFSSERVER		#Network File System
582
583# The rest are optional:
584options 	CD9660			#ISO 9660 filesystem
585options 	FDESCFS			#File descriptor filesystem
586options 	HPFS			#OS/2 File system
587options 	MSDOSFS			#MS DOS File System (FAT, FAT32)
588options 	NTFS			#NT File System
589options 	NULLFS			#NULL filesystem
590#options 	NWFS			#NetWare filesystem
591options 	PORTALFS		#Portal filesystem
592options 	PROCFS			#Process filesystem (requires PSEUDOFS)
593options 	PSEUDOFS		#Pseudo-filesystem framework
594options 	SMBFS			#SMB/CIFS filesystem
595options		UDF			#Universal Disk Format
596options 	UMAPFS			#UID map filesystem
597options 	UNIONFS			#Union filesystem
598# options 	NODEVFS			#disable devices filesystem
599# The xFS_ROOT options REQUIRE the associated ``options xFS''
600options 	NFS_ROOT		#NFS usable as root device
601
602# Soft updates is a technique for improving filesystem speed and
603# making abrupt shutdown less risky.
604#
605options 	SOFTUPDATES
606
607# Extended attributes allow additional data to be associated with files,
608# and is used for ACLs, Capabilities, and MAC labels.
609# See src/sys/ufs/ufs/README.extattr for more information.
610options 	UFS_EXTATTR
611options 	UFS_EXTATTR_AUTOSTART
612
613# Access Control List support for UFS filesystems.  The current ACL
614# implementation requires extended attribute support, UFS_EXTATTR,
615# for the underlying filesystem.
616# See src/sys/ufs/ufs/README.acls for more information.
617options 	UFS_ACL
618
619# Directory hashing improves the speed of operations on very large
620# directories at the expense of some memory.
621options 	UFS_DIRHASH
622
623# Make space in the kernel for a root filesystem on a md device.
624# Define to the number of kilobytes to reserve for the filesystem.
625options 	MD_ROOT_SIZE=10
626
627# Make the md device a potential root device, either with preloaded
628# images of type mfs_root or md_root.
629options 	MD_ROOT
630
631# Allow this many swap-devices.
632#
633# In order to manage swap, the system must reserve bitmap space that
634# scales with the largest mounted swap device multiplied by NSWAPDEV, 
635# irregardless of whether other swap devices exist or not.  So it
636# is not a good idea to make this value too large.
637options 	NSWAPDEV=5
638
639# Disk quotas are supported when this option is enabled.
640options 	QUOTA			#enable disk quotas
641
642# If you are running a machine just as a fileserver for PC and MAC
643# users, using SAMBA or Netatalk, you may consider setting this option
644# and keeping all those users' directories on a filesystem that is
645# mounted with the suiddir option. This gives new files the same
646# ownership as the directory (similar to group). It's a security hole
647# if you let these users run programs, so confine it to file-servers
648# (but it'll save you lots of headaches in those cases). Root owned
649# directories are exempt and X bits are cleared. The suid bit must be
650# set on the directory as well; see chmod(1) PC owners can't see/set
651# ownerships so they keep getting their toes trodden on. This saves
652# you all the support calls as the filesystem it's used on will act as
653# they expect: "It's my dir so it must be my file".
654#
655options 	SUIDDIR
656
657# NFS options:
658options 	NFS_MINATTRTIMO=3	# VREG attrib cache timeout in sec
659options 	NFS_MAXATTRTIMO=60
660options 	NFS_MINDIRATTRTIMO=30	# VDIR attrib cache timeout in sec
661options 	NFS_MAXDIRATTRTIMO=60
662options 	NFS_GATHERDELAY=10	# Default write gather delay (msec)
663options 	NFS_WDELAYHASHSIZ=16	# and with this
664options 	NFS_DEBUG		# Enable NFS Debugging
665
666# Coda stuff:
667options 	CODA			#CODA filesystem.
668device		vcoda	4		#coda minicache <-> venus comm.
669
670#
671# Add support for the EXT2FS filesystem of Linux fame.  Be a bit
672# careful with this - the ext2fs code has a tendency to lag behind
673# changes and not be exercised very much, so mounting read/write could
674# be dangerous (and even mounting read only could result in panics.)
675#
676options 	EXT2FS
677
678# Use real implementations of the aio_* system calls.  There are numerous
679# stability and security issues in the current aio code that make it
680# unsuitable for inclusion on machines with untrusted local users.
681options 	VFS_AIO
682
683# Enable the code UFS IO optimization through the VM system.  This allows
684# use VM operations instead of copying operations when possible.
685# 
686# Even with this enabled, actual use of the code is still controlled by the
687# sysctl vfs.ioopt.  0 gives no optimization, 1 gives normal (use VM
688# operations if a request happens to fit), 2 gives agressive optimization
689# (the operations are split to do as much as possible through the VM system.)
690#
691# Enabling this will probably not give an overall speedup except for
692# special workloads.
693options 	ENABLE_VFS_IOOPT
694
695# Cryptographically secure random number generator; /dev/[u]random
696device		random
697
698
699#####################################################################
700# POSIX P1003.1B
701
702# Real time extensions added in the 1993 Posix
703# P1003_1B: Infrastructure
704# _KPOSIX_PRIORITY_SCHEDULING: Build in _POSIX_PRIORITY_SCHEDULING
705# _KPOSIX_VERSION:             Version kernel is built for
706
707options 	P1003_1B
708options 	_KPOSIX_PRIORITY_SCHEDULING
709options 	_KPOSIX_VERSION=199309L
710
711
712#####################################################################
713# CLOCK OPTIONS
714
715# The granularity of operation is controlled by the kernel option HZ whose
716# default value (100) means a granularity of 10ms (1s/HZ).
717# Some subsystems, such as DUMMYNET, might benefit from a smaller
718# granularity such as 1ms or less, for a smoother scheduling of packets.
719# Consider, however, that reducing the granularity too much might
720# cause excessive overhead in clock interrupt processing,
721# potentially causing ticks to be missed and thus actually reducing
722# the accuracy of operation.
723
724options 	HZ=100
725
726
727#####################################################################
728# SCSI DEVICES
729
730# SCSI DEVICE CONFIGURATION
731
732# The SCSI subsystem consists of the `base' SCSI code, a number of
733# high-level SCSI device `type' drivers, and the low-level host-adapter
734# device drivers.  The host adapters are listed in the ISA and PCI
735# device configuration sections below.
736#
737# Beginning with FreeBSD 2.0.5 you can wire down your SCSI devices so
738# that a given bus, target, and LUN always come on line as the same
739# device unit.  In earlier versions the unit numbers were assigned
740# in the order that the devices were probed on the SCSI bus.  This
741# means that if you removed a disk drive, you may have had to rewrite
742# your /etc/fstab file, and also that you had to be careful when adding
743# a new disk as it may have been probed earlier and moved your device
744# configuration around.
745
746# This old behavior is maintained as the default behavior.  The unit
747# assignment begins with the first non-wired down unit for a device
748# type.  For example, if you wire a disk as "da3" then the first
749# non-wired disk will be assigned da4.
750
751# The syntax for wiring down devices is:
752
753hint.scbus.0.at="ahc0"
754hint.scbus.1.at="ahc1"
755hint.scbus.1.bus="0"
756hint.scbus.3.at="ahc2"
757hint.scbus.3.bus="0"
758hint.scbus.2.at="ahc2"
759hint.scbus.2.bus="1"
760hint.da.0.at="scbus0"
761hint.da.0.target="0"
762hint.da.0.unit="0"
763hint.da.1.at="scbus3"
764hint.da.1.target="1"
765hint.da.2.at="scbus2"
766hint.da.2.target="3"
767hint.sa.1.at="scbus1"
768hint.sa.1.target="6"
769
770# "units" (SCSI logical unit number) that are not specified are
771# treated as if specified as LUN 0.
772
773# All SCSI devices allocate as many units as are required.
774
775# The ch driver drives SCSI Media Changer ("jukebox") devices.
776#
777# The da driver drives SCSI Direct Access ("disk") and Optical Media
778# ("WORM") devices.
779#
780# The sa driver drives SCSI Sequential Access ("tape") devices.
781#
782# The cd driver drives SCSI Read Only Direct Access ("cd") devices.
783#
784# The ses driver drives SCSI Envinronment Services ("ses") and
785# SAF-TE ("SCSI Accessable Fault-Tolerant Enclosure") devices.
786#
787# The pt driver drives SCSI Processor devices.
788#
789# 
790# Target Mode support is provided here but also requires that a SIM
791# (SCSI Host Adapter Driver) provide support as well.
792#
793# The targ driver provides target mode support as a Processor type device.
794# It exists to give the minimal context necessary to respond to Inquiry
795# commands. There is a sample user application that shows how the rest
796# of the command support might be done in /usr/share/examples/scsi_target.
797#
798# The targbh driver provides target mode support and exists to respond
799# to incoming commands that do not otherwise have a logical unit assigned
800# to them.
801# 
802# The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI
803# configuration as the "pass" driver.
804
805device		scbus		#base SCSI code
806device		ch		#SCSI media changers
807device		da		#SCSI direct access devices (aka disks)
808device		sa		#SCSI tapes
809device		cd		#SCSI CD-ROMs
810device		ses		#SCSI Environmental Services (and SAF-TE)
811device		pt		#SCSI processor 
812device		targ		#SCSI Target Mode Code
813device		targbh		#SCSI Target Mode Blackhole Device
814device		pass		#CAM passthrough driver
815
816# CAM OPTIONS:
817# debugging options:
818# -- NOTE --  If you specify one of the bus/target/lun options, you must
819#             specify them all!
820# CAMDEBUG: When defined enables debugging macros
821# CAM_DEBUG_BUS:  Debug the given bus.  Use -1 to debug all busses.
822# CAM_DEBUG_TARGET:  Debug the given target.  Use -1 to debug all targets.
823# CAM_DEBUG_LUN:  Debug the given lun.  Use -1 to debug all luns.
824# CAM_DEBUG_FLAGS:  OR together CAM_DEBUG_INFO, CAM_DEBUG_TRACE,
825#                   CAM_DEBUG_SUBTRACE, and CAM_DEBUG_CDB
826#
827# CAM_MAX_HIGHPOWER: Maximum number of concurrent high power (start unit) cmds
828# CAM_NEW_TRAN_CODE: this is the new transport layer code that will be switched
829#			to soon
830# SCSI_NO_SENSE_STRINGS: When defined disables sense descriptions
831# SCSI_NO_OP_STRINGS: When defined disables opcode descriptions
832# SCSI_DELAY: The number of MILLISECONDS to freeze the SIM (scsi adapter)
833#             queue after a bus reset, and the number of milliseconds to
834#             freeze the device queue after a bus device reset.
835options 	CAMDEBUG
836options 	CAM_DEBUG_BUS=-1
837options 	CAM_DEBUG_TARGET=-1
838options 	CAM_DEBUG_LUN=-1
839options 	CAM_DEBUG_FLAGS="CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB"
840options 	CAM_MAX_HIGHPOWER=4
841options 	SCSI_NO_SENSE_STRINGS
842options 	SCSI_NO_OP_STRINGS
843options 	SCSI_DELAY=8000	# Be pessimistic about Joe SCSI device
844
845# Options for the CAM CDROM driver:
846# CHANGER_MIN_BUSY_SECONDS: Guaranteed minimum time quantum for a changer LUN
847# CHANGER_MAX_BUSY_SECONDS: Maximum time quantum per changer LUN, only
848#                           enforced if there is I/O waiting for another LUN
849# The compiled in defaults for these variables are 2 and 10 seconds,
850# respectively.
851#
852# These can also be changed on the fly with the following sysctl variables:
853# kern.cam.cd.changer.min_busy_seconds
854# kern.cam.cd.changer.max_busy_seconds
855#
856options 	CHANGER_MIN_BUSY_SECONDS=2
857options 	CHANGER_MAX_BUSY_SECONDS=10
858
859# Options for the CAM sequential access driver:
860# SA_IO_TIMEOUT: Timeout for read/write/wfm  operations, in minutes
861# SA_SPACE_TIMEOUT: Timeout for space operations, in minutes
862# SA_REWIND_TIMEOUT: Timeout for rewind operations, in minutes
863# SA_ERASE_TIMEOUT: Timeout for erase operations, in minutes
864# SA_1FM_AT_EOD: Default to model which only has a default one filemark at EOT.
865options 	SA_IO_TIMEOUT="(4)"
866options 	SA_SPACE_TIMEOUT="(60)"
867options 	SA_REWIND_TIMEOUT="(2*60)"
868options 	SA_ERASE_TIMEOUT="(4*60)"
869options 	SA_1FM_AT_EOD
870
871# Optional timeout for the CAM processor target (pt) device
872# This is specified in seconds.  The default is 60 seconds.
873options 	SCSI_PT_DEFAULT_TIMEOUT="60"
874
875# Optional enable of doing SES passthrough on other devices (e.g., disks)
876#
877# Normally disabled because a lot of newer SCSI disks report themselves
878# as having SES capabilities, but this can then clot up attempts to build
879# build a topology with the SES device that's on the box these drives
880# are in....
881options 	SES_ENABLE_PASSTHROUGH
882
883
884#####################################################################
885# MISCELLANEOUS DEVICES AND OPTIONS
886
887# The `pty' device usually turns out to be ``effectively mandatory'',
888# as it is required for `telnetd', `rlogind', `screen', `emacs', and
889# `xterm', among others.
890
891device		pty		#Pseudo ttys
892device		nmdm		#back-to-back tty devices
893device		md		#Memory/malloc disk
894device		snp		#Snoop device - to look at pty/vty/etc..
895device		ccd		#Concatenated disk driver
896
897# Configuring Vinum into the kernel is not necessary, since the kld
898# module gets started automatically when vinum(8) starts.  This
899# device is also untested.  Use at your own risk.
900#
901# The option VINUMDEBUG must match the value set in CFLAGS
902# in src/sbin/vinum/Makefile.  Failure to do so will result in
903# the following message from vinum(8):
904#
905# Can't get vinum config: Invalid argument
906#
907# see vinum(4) for more reasons not to use these options.
908device		vinum		#Vinum concat/mirror/raid driver
909options 	VINUMDEBUG	#enable Vinum debugging hooks
910
911# Kernel side iconv library
912options 	LIBICONV
913
914# Size of the kernel message buffer.  Should be N * pagesize.
915options 	MSGBUF_SIZE=40960
916
917
918#####################################################################
919# HARDWARE BUS CONFIGURATION
920
921#
922# ISA bus
923#
924
925options 	COMPAT_OLDISA	#Use ISA shims and glue for old drivers
926
927# Enable support for the kernel PLL to use an external PPS signal,
928# under supervision of [x]ntpd(8)
929# More info in ntpd documentation: http://www.eecis.udel.edu/~ntp
930
931options 	PPS_SYNC
932
933# If you see the "calcru: negative time of %ld usec for pid %d (%s)\n"
934# message you probably have some broken sw/hw which disables interrupts
935# for too long.  You can make the system more resistant to this by
936# choosing a high value for NTIMECOUNTER.  The default is 5, there
937# is no upper limit but more than a couple of hundred are not productive.
938
939options 	NTIMECOUNTER=20
940
941# 
942# EISA bus
943#
944
945# By default, only 10 EISA slots are probed, since the slot numbers
946# above clash with the configuration address space of the PCI subsystem,
947# and the EISA probe is not very smart about this.  This is sufficient
948# for most machines, but in particular the HP NetServer LC series comes
949# with an onboard AIC7770 dual-channel SCSI controller on EISA slot #11,
950# thus you need to bump this figure to 12 for them.
951options 	EISA_SLOTS=12
952
953#
954# PCI bus & PCI options:
955#
956
957
958#####################################################################
959# HARDWARE DEVICE CONFIGURATION
960
961# For ISA the required hints are listed.
962# EISA, MCA, PCI and pccard are self identifying buses, so no hints
963# are needed.
964
965#
966# Mandatory devices:
967#
968
969# The keyboard controller; it controls the keyboard and the PS/2 mouse.
970device		atkbdc	1
971hint.atkbdc.0.at="isa"
972hint.atkbdc.0.port="0x060"
973
974# The AT keyboard
975device		atkbd
976hint.atkbd.0.at="atkbdc"
977hint.atkbd.0.irq="1"
978
979# Options for atkbd:
980options 	ATKBD_DFLT_KEYMAP	# specify the built-in keymap
981makeoptions	ATKBD_DFLT_KEYMAP="jp.106"
982
983# These options are valid for other keyboard drivers as well.
984options 	KBD_DISABLE_KEYMAP_LOAD	# refuse to load a keymap
985options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
986
987# `flags' for atkbd:
988#       0x01    Force detection of keyboard, else we always assume a keyboard
989#       0x02    Don't reset keyboard, useful for some newer ThinkPads
990#	0x03	Force detection and avoid reset, might help with certain
991#		dockingstations
992#       0x04    Old-style (XT) keyboard support, useful for older ThinkPads
993
994# PS/2 mouse
995device		psm
996hint.psm.0.at="atkbdc"
997hint.psm.0.irq="12"
998
999# Options for psm:
1000options 	PSM_HOOKRESUME		#hook the system resume event, useful
1001					#for some laptops
1002options 	PSM_RESETAFTERSUSPEND	#reset the device at the resume event
1003
1004# The video card driver.
1005device		vga
1006hint.vga.0.at="isa"
1007
1008# Options for vga:
1009# Try the following option if the mouse pointer is not drawn correctly
1010# or font does not seem to be loaded properly.  May cause flicker on
1011# some systems.
1012options 	VGA_ALT_SEQACCESS
1013
1014# If you can dispense with some vga driver features, you may want to
1015# use the following options to save some memory.
1016#options 	VGA_NO_FONT_LOADING	# don't save/load font
1017#options 	VGA_NO_MODE_CHANGE	# don't change video modes
1018
1019# Older video cards may require this option for proper operation.
1020options 	VGA_SLOW_IOACCESS	# do byte-wide i/o's to TS and GDC regs
1021
1022# The following option probably won't work with the LCD displays.
1023options 	VGA_WIDTH90		# support 90 column modes
1024
1025options 	FB_DEBUG		# Frame buffer debugging
1026options 	FB_INSTALL_CDEV		# install a CDEV entry in /dev
1027
1028# Splash screen at start up!  Screen savers require this too.
1029device		splash
1030
1031# Various screen savers.
1032device		apm_saver		# Requires APM
1033device		blank_saver
1034device		daemon_saver
1035device		fade_saver
1036device		fire_saver
1037device		green_saver
1038device		logo_saver
1039device		rain_saver
1040device		star_saver
1041device		warp_saver
1042
1043# The syscons console driver (sco color console compatible).
1044device		sc	1
1045hint.sc.0.at="isa"
1046options 	MAXCONS=16		# number of virtual consoles
1047options 	SC_ALT_MOUSE_IMAGE	# simplified mouse cursor in text mode
1048options 	SC_DFLT_FONT		# compile font in
1049makeoptions	SC_DFLT_FONT=cp850
1050options 	SC_DISABLE_DDBKEY	# disable `debug' key
1051options 	SC_DISABLE_REBOOT	# disable reboot key sequence
1052options 	SC_HISTORY_SIZE=200	# number of history buffer lines
1053options 	SC_MOUSE_CHAR=0x3	# char code for text mode mouse cursor
1054options 	SC_PIXEL_MODE		# add support for the raster text mode
1055
1056# The following options will let you change the default colors of syscons.
1057options 	SC_NORM_ATTR="(FG_GREEN|BG_BLACK)"
1058options 	SC_NORM_REV_ATTR="(FG_YELLOW|BG_GREEN)"
1059options 	SC_KERNEL_CONS_ATTR="(FG_RED|BG_BLACK)"
1060options 	SC_KERNEL_CONS_REV_ATTR="(FG_BLACK|BG_RED)"
1061
1062# The following options will let you change the default behaviour of
1063# cut-n-paste feature
1064options 	SC_CUT_SPACES2TABS	# convert leading spaces into tabs
1065options 	SC_CUT_SEPCHARS="\x20"	# set of characters that delimit words
1066					# (default is single space - "\x20")
1067
1068# If you have a two button mouse, you may want to add the following option
1069# to use the right button of the mouse to paste text.
1070options 	SC_TWOBUTTON_MOUSE
1071
1072# You can selectively disable features in syscons.
1073options 	SC_NO_CUTPASTE
1074options 	SC_NO_FONT_LOADING
1075options 	SC_NO_HISTORY
1076options 	SC_NO_SYSMOUSE
1077
1078# `flags' for sc
1079#	0x80	Put the video card in the VESA 800x600 dots, 16 color mode
1080#	0x100	Probe for a keyboard device periodically if one is not present
1081
1082#
1083# ACPI support using the Intel ACPI Component Architecture reference
1084# implementation.
1085#
1086# ACPI_DEBUG enables the use of the debug.acpi.level and debug.acpi.layer
1087# kernel environment variables to select initial debugging levels for the
1088# Intel ACPICA code.  (Note that the Intel code must also have USE_DEBUGGER
1089# defined when it is built).
1090#
1091# Note that building ACPI into the kernel is deprecated; the module is
1092# normally loaded automatically by the loader.
1093#
1094device		acpica
1095options 	ACPI_DEBUG
1096
1097#
1098# Optional devices:
1099#
1100
1101# DRM options:
1102# gammadrm:  3Dlabs Oxygen GMX 2000
1103# mgadrm:    AGP Matrox G200, G400, G450, G550
1104# tdfxdrm:   3dfx Voodoo 3/4/5 and Banshee
1105# r128drm:   AGP ATI Rage 128
1106# radeondrm: AGP ATI Radeon, including 7200 and 7500
1107# DRM_LINUX: include linux compatibility, requires COMPAT_LINUX
1108# DRM_DEBUG: inlcude debugging code, very slow
1109#
1110# mga, r128, and radeon require AGP in the kernel
1111
1112device		gammadrm
1113device		mgadrm
1114device		"r128drm"
1115device		radeondrm
1116device		tdfxdrm
1117
1118options 	DRM_DEBUG
1119options 	DRM_LINUX
1120
1121# 3Dfx Voodoo Graphics, Voodoo II /dev/3dfx CDEV support. This will create
1122# the /dev/3dfx0 device to work with glide implementations. This should get
1123# linked to /dev/3dfx and /dev/voodoo. Note that this is not the same as
1124# the tdfx DRI module from XFree86 and is completely unrelated.
1125#
1126# To enable Linuxulator support, one must also include COMPAT_LINUX in the
1127# config as well, or you will not have the dependencies. The other option
1128# is to load both as modules.
1129
1130device 		tdfx			# Enable 3Dfx Voodoo support
1131options 	TDFX_LINUX		# Enable Linuxulator support
1132
1133#
1134# SCSI host adapters:
1135#
1136# adv: All Narrow SCSI bus AdvanSys controllers.
1137# adw: Second Generation AdvanSys controllers including the ADV940UW.
1138# aha: Adaptec 154x/1535/1640
1139# ahb: Adaptec 174x EISA controllers
1140# ahc: Adaptec 274x/284x/2910/293x/294x/394x/3950x/3960x/398X/4944/
1141#      19160x/29160x, aic7770/aic78xx
1142# ahd: Adaptec 29320/39320 Controllers.
1143# aic: Adaptec 6260/6360, APA-1460 (PC Card), NEC PC9801-100 (C-BUS)
1144# amd: Support for the AMD 53C974 SCSI host adapter chip as found on devices
1145#      such as the Tekram DC-390(T).
1146# bt:  Most Buslogic controllers: including BT-445, BT-54x, BT-64x, BT-74x,
1147#      BT-75x, BT-946, BT-948, BT-956, BT-958, SDC3211B, SDC3211F, SDC3222F
1148# isp: Qlogic ISP 1020, 1040 and 1040B PCI SCSI host adapters,
1149#      ISP 1240 Dual Ultra SCSI, ISP 1080 and 1280 (Dual) Ultra2,
1150#      ISP 12160 Ultra3 SCSI,
1151#      Qlogic ISP 2100 and ISP 2200 1Gb Fibre Channel host adapters.
1152#      Qlogic ISP 2300 and ISP 2312 2Gb Fibre Channel host adapters.
1153# ispfw: Firmware module for Qlogic host adapters
1154# ncr: NCR 53C810, 53C825 self-contained SCSI host adapters.
1155# ncv: NCR 53C500 based SCSI host adapters.
1156# nsp: Workbit Ninja SCSI-3 based PC Card SCSI host adapters.
1157# stg: TMC 18C30, 18C50 based SCSI host adapters.
1158# sym: Symbios/Logic 53C8XX family of PCI-SCSI I/O processors:
1159#      53C810, 53C810A, 53C815, 53C825,  53C825A, 53C860, 53C875, 
1160#      53C876, 53C885,  53C895, 53C895A, 53C896,  53C897, 53C1510D, 
1161#      53C1010-33, 53C1010-66.
1162# wds: WD7000
1163
1164#
1165# Note that the order is important in order for Buslogic ISA/EISA cards to be
1166# probed correctly.
1167#
1168device		bt
1169hint.bt.0.at="isa"
1170hint.bt.0.port="0x330"
1171device		adv
1172hint.adv.0.at="isa"
1173device		adw
1174device		aha
1175hint.aha.0.at="isa"
1176device		aic
1177hint.aic.0.at="isa"
1178device		ahb
1179device		ahc
1180device		ahd
1181device		amd
1182device		isp
1183hint.isp.0.disable="1"
1184hint.isp.0.role="3"
1185hint.isp.0.prefer_iomap="1"
1186hint.isp.0.prefer_memmap="1"
1187hint.isp.0.fwload_disable="1"
1188hint.isp.0.ignore_nvram="1"
1189hint.isp.0.fullduplex="1"
1190hint.isp.0.topology="lport"
1191hint.isp.0.topology="nport"
1192hint.isp.0.topology="lport-only"
1193hint.isp.0.topology="nport-only"
1194# we can't get u_int64_t types, nor can we get strings if it's got
1195# a leading 0x, hence this silly dodge.
1196hint.isp.0.portwnn="w50000000aaaa0000"
1197hint.isp.0.nodewnn="w50000000aaaa0001"
1198device		ispfw
1199device		ncr
1200device		ncv
1201device		nsp
1202device		sym
1203device		stg
1204hint.stg.0.at="isa"
1205hint.stg.0.port="0x140"
1206hint.stg.0.port="11"
1207device		wds
1208hint.wds.0.at="isa"
1209hint.wds.0.port="0x350"
1210hint.wds.0.irq="11"
1211hint.wds.0.drq="6"
1212
1213# The aic7xxx driver will attempt to use memory mapped I/O for all PCI
1214# controllers that have it configured only if this option is set. Unfortunately,
1215# this doesn't work on some motherboards, which prevents it from being the
1216# default.
1217options 	AHC_ALLOW_MEMIO
1218
1219# Enable diagnostic sequencer code.
1220options 	AHC_DEBUG_SEQUENCER
1221
1222# Dump the contents of the ahc controller configuration PROM.
1223options 	AHC_DUMP_EEPROM
1224
1225# Bitmap of units to enable targetmode operations.
1226options 	AHC_TMODE_ENABLE
1227
1228# Compile in aic79xx debugging code.
1229options		AHD_DEBUG
1230
1231# Aic79xx driver debugging options.   
1232# See sys/dev/aic79xx/aic79xx.h
1233options		AHD_DEBUG_OPTS=0xFFFFFFFF
1234
1235# The adw driver will attempt to use memory mapped I/O for all PCI
1236# controllers that have it configured only if this option is set.
1237options 	ADW_ALLOW_MEMIO
1238
1239# Options used in dev/isp/ (Qlogic SCSI/FC driver).
1240#
1241#	ISP_TARGET_MODE		-	enable target mode operation
1242#
1243#options 	ISP_TARGET_MODE=1
1244
1245# Options used in dev/sym/ (Symbios SCSI driver).
1246#options 	SYM_SETUP_LP_PROBE_MAP	#-Low Priority Probe Map (bits)
1247					# Allows the ncr to take precedence
1248					# 1 (1<<0) -> 810a, 860
1249					# 2 (1<<1) -> 825a, 875, 885, 895
1250					# 4 (1<<2) -> 895a, 896, 1510d 
1251#options 	SYM_SETUP_SCSI_DIFF	#-HVD support for 825a, 875, 885
1252					# disabled:0 (default), enabled:1
1253#options 	SYM_SETUP_PCI_PARITY	#-PCI parity checking
1254					# disabled:0, enabled:1 (default)
1255#options 	SYM_SETUP_MAX_LUN	#-Number of LUNs supported
1256					# default:8, range:[1..64]
1257
1258# The 'asr' driver provides support for current DPT/Adaptec SCSI RAID
1259# controllers (SmartRAID V and VI and later).
1260# These controllers require the CAM infrastructure.
1261#
1262device		asr
1263
1264# The 'dpt' driver provides support for old DPT controllers (http://www.dpt.com/).
1265# These have hardware RAID-{0,1,5} support, and do multi-initiator I/O.
1266# The DPT controllers are commonly re-licensed under other brand-names -
1267# some controllers by Olivetti, Dec, HP, AT&T, SNI, AST, Alphatronic, NEC and
1268# Compaq are actually DPT controllers.
1269#
1270# See src/sys/dev/dpt for debugging and other subtle options.
1271#   DPT_MEASURE_PERFORMANCE Enables a set of (semi)invasive metrics. Various
1272#                           instruments are enabled.  The tools in
1273#                           /usr/sbin/dpt_* assume these to be enabled.
1274#   DPT_HANDLE_TIMEOUTS     Normally device timeouts are handled by the DPT.
1275#                           If you ant the driver to handle timeouts, enable
1276#                           this option.  If your system is very busy, this
1277#                           option will create more trouble than solve.
1278#   DPT_TIMEOUT_FACTOR      Used to compute the excessive amount of time to
1279#                           wait when timing out with the above option.
1280#  DPT_DEBUG_xxxx           These are controllable from sys/dev/dpt/dpt.h
1281#  DPT_LOST_IRQ             When enabled, will try, once per second, to catch
1282#                           any interrupt that got lost.  Seems to help in some
1283#                           DPT-firmware/Motherboard combinations.  Minimal
1284#                           cost, great benefit.
1285#  DPT_RESET_HBA            Make "reset" actually reset the controller
1286#                           instead of fudging it.  Only enable this if you
1287#			    are 100% certain you need it.
1288
1289device		dpt
1290
1291# DPT options
1292#!CAM# options 	DPT_MEASURE_PERFORMANCE
1293#!CAM# options 	DPT_HANDLE_TIMEOUTS
1294options 	DPT_TIMEOUT_FACTOR=4
1295options 	DPT_LOST_IRQ
1296options 	DPT_RESET_HBA
1297options 	DPT_ALLOW_MEMIO
1298
1299#
1300# Compaq "CISS" RAID controllers (SmartRAID 5* series)
1301# These controllers have a SCSI-like interface, and require the
1302# CAM infrastructure.
1303#
1304device		ciss
1305
1306#
1307# Intel Integrated RAID controllers.
1308# This driver was developed and is maintained by Intel.  Contacts
1309# at Intel for this driver are
1310# "Kannanthanam, Boji T" <boji.t.kannanthanam@intel.com> and
1311# "Leubner, Achim" <achim.leubner@intel.com>.
1312#
1313device		iir
1314
1315#
1316# Mylex AcceleRAID and eXtremeRAID controllers with v6 and later
1317# firmware.  These controllers have a SCSI-like interface, and require
1318# the CAM infrastructure.
1319#
1320device		mly
1321
1322#
1323# Adaptec FSA RAID controllers, including integrated DELL controllers,
1324# the Dell PERC 2/QC and the HP NetRAID-4M
1325#
1326# AAC_COMPAT_LINUX	Include code to support Linux-binary management
1327#			utilities (requires Linux compatibility
1328#			support).
1329#
1330device		aac
1331device		aacp	# SCSI Passthrough interface (optional, CAM required)
1332
1333#
1334# Compaq Smart RAID, Mylex DAC960 and AMI MegaRAID controllers.  Only
1335# one entry is needed; the code will find and configure all supported
1336# controllers.
1337#
1338device		ida		# Compaq Smart RAID
1339device		mlx		# Mylex DAC960
1340device		amr		# AMI MegaRAID
1341
1342#
1343# 3ware ATA RAID
1344#
1345device		twe		# 3ware ATA RAID
1346
1347#
1348# The 'ATA' driver supports all ATA and ATAPI devices, including PC Card
1349# devices. You only need one "device ata" for it to find all
1350# PCI and PC Card ATA/ATAPI devices on modern machines.
1351device		ata
1352device		atadisk		# ATA disk drives
1353device		atapicd		# ATAPI CDROM drives
1354device		atapifd		# ATAPI floppy drives
1355device		atapist		# ATAPI tape drives
1356
1357#
1358# For older non-PCI, non-PnPBIOS systems, these are the hints lines to add:
1359hint.ata.0.at="isa"
1360hint.ata.0.port="0x1f0"
1361hint.ata.0.irq="14"
1362hint.ata.1.at="isa"
1363hint.ata.1.port="0x170"
1364hint.ata.1.irq="15"
1365
1366#
1367# The following options are valid on the ATA driver:
1368#
1369# ATA_STATIC_ID:	controller numbering is static ie depends on location
1370#			else the device numbers are dynamically allocated.
1371
1372options 	ATA_STATIC_ID
1373
1374#
1375# Standard floppy disk controllers and floppy tapes, supports
1376# the Y-E DATA External FDD (PC Card)
1377#
1378device		fdc
1379hint.fdc.0.at="isa"
1380hint.fdc.0.port="0x3F0"
1381hint.fdc.0.irq="6"
1382hint.fdc.0.drq="2"
1383#
1384# FDC_DEBUG enables floppy debugging.  Since the debug output is huge, you
1385# gotta turn it actually on by setting the variable fd_debug with DDB,
1386# however.
1387options 	FDC_DEBUG
1388#
1389# Activate this line if you happen to have an Insight floppy tape.
1390# Probing them proved to be dangerous for people with floppy disks only,
1391# so it's "hidden" behind a flag:
1392#hint.fdc.0.flags="1"
1393
1394# Specify floppy devices
1395hint.fd.0.at="fdc0"
1396hint.fd.0.drive="0"
1397hint.fd.1.at="fdc0"
1398hint.fd.1.drive="1"
1399
1400#
1401# sio: serial ports (see sio(4)), including support for various
1402#      PC Card devices, such as Modem and NICs (see etc/defaults/pccard.conf)
1403
1404device		sio
1405hint.sio.0.at="isa"
1406hint.sio.0.port="0x3F8"
1407hint.sio.0.flags="0x10"
1408hint.sio.0.irq="4"
1409
1410#
1411# `flags' for serial drivers that support consoles (only for sio now):
1412#	0x10	enable console support for this unit.  The other console flags
1413#		are ignored unless this is set.  Enabling console support does
1414#		not make the unit the preferred console - boot with -h or set
1415#		the 0x20 flag for that.  Currently, at most one unit can have
1416#		console support; the first one (in config file order) with
1417#		this flag set is preferred.  Setting this flag for sio0 gives
1418#		the old behaviour.
1419#	0x20	force this unit to be the console (unless there is another
1420#		higher priority console).  This replaces the COMCONSOLE option.
1421#	0x40	reserve this unit for low level console operations.  Do not
1422#		access the device in any normal way.
1423#	0x80	use this port for serial line gdb support in ddb.
1424#
1425# PnP `flags'
1426#	0x1	disable probing of this device.  Used to prevent your modem
1427#		from being attached as a PnP modem.
1428#
1429
1430# Options for serial drivers that support consoles (only for sio now):
1431options 	BREAK_TO_DEBUGGER	#a BREAK on a comconsole goes to
1432					#DDB, if available.
1433options 	CONSPEED=115200		# speed for serial console
1434					# (default 9600)
1435
1436# Solaris implements a new BREAK which is initiated by a character
1437# sequence CR ~ ^b which is similar to a familiar pattern used on
1438# Sun servers by the Remote Console.
1439options 	ALT_BREAK_TO_DEBUGGER
1440
1441# Options for sio:
1442options 	COM_ESP			#code for Hayes ESP
1443options 	COM_MULTIPORT		#code for some cards with shared IRQs
1444
1445# Other flags for sio that aren't documented in the man page.
1446#	0x20000	enable hardware RTS/CTS and larger FIFOs.  Only works for
1447#		ST16650A-compatible UARTs.
1448
1449# PCI Universal Communications driver
1450# Supports various single and multi port PCI serial cards. Maybe later
1451# also the parallel ports on combination serial/parallel cards. New cards
1452# can be added in src/sys/dev/puc/pucdata.c.
1453#
1454# If the PUC_FASTINTR option is used the driver will try to use fast
1455# interrupts. The card must then be the only user of that interrupt.
1456# Interrupts cannot be shared when using PUC_FASTINTR.
1457device		puc
1458options 	PUC_FASTINTR
1459
1460#
1461# Network interfaces:
1462#
1463# MII bus support is required for some PCI 10/100 ethernet NICs,
1464# namely those which use MII-compliant transceivers or implement
1465# tranceiver control interfaces that operate like an MII. Adding
1466# "device miibus0" to the kernel config pulls in support for
1467# the generic miibus API and all of the PHY drivers, including a
1468# generic one for PHYs that aren't specifically handled by an
1469# individual driver.
1470device		miibus
1471
1472# an:   Aironet 4500/4800 802.11 wireless adapters. Supports the PCMCIA,
1473#       PCI and ISA varieties.
1474# ar:   Arnet SYNC/570i hdlc sync 2/4 port V.35/X.21 serial driver
1475#       (requires sppp)
1476# awi:  Support for IEEE 802.11 PC Card devices using the AMD Am79C930 and
1477#       Harris (Intersil) Chipset with PCnetMobile firmware by AMD.
1478# bge:	Support for gigabit ethernet adapters based on the Broadcom
1479#	BCM570x family of controllers, including the 3Com 3c996-T,
1480#	the Netgear GA302T, the SysKonnect SK-9D21 and SK-9D41, and
1481#	the embedded gigE NICs on Dell PowerEdge 2550 servers.
1482# cm:	Arcnet SMC COM90c26 / SMC COM90c56
1483#	(and SMC COM90c66 in '56 compatibility mode) adapters.
1484# cnw:  Xircom CNW/Netware Airsurfer PC Card adapter
1485# cs:   IBM Etherjet and other Crystal Semi CS89x0-based adapters
1486# dc:   Support for PCI fast ethernet adapters based on the DEC/Intel 21143
1487#       and various workalikes including:
1488#       the ADMtek AL981 Comet and AN985 Centaur, the ASIX Electronics
1489#       AX88140A and AX88141, the Davicom DM9100 and DM9102, the Lite-On
1490#       82c168 and 82c169 PNIC, the Lite-On/Macronix LC82C115 PNIC II
1491#       and the Macronix 98713/98713A/98715/98715A/98725 PMAC. This driver
1492#       replaces the old al, ax, dm, pn and mx drivers.  List of brands:
1493#       Digital DE500-BA, Kingston KNE100TX, D-Link DFE-570TX, SOHOware SFA110, 
1494#       SVEC PN102-TX, CNet Pro110B, 120A, and 120B, Compex RL100-TX, 
1495#       LinkSys LNE100TX, LNE100TX V2.0, Jaton XpressNet, Alfa Inc GFC2204,
1496#       KNE110TX.
1497# de:   Digital Equipment DC21040
1498# ed:   Western Digital and SMC 80xx; Novell NE1000 and NE2000; 3Com 3C503
1499#       HP PC Lan+, various PC Card devices (refer to etc/defauls/pccard.conf)
1500#       (requires miibus)
1501# em:   Intel Pro/1000 Gigabit Ethernet 82542, 82543, 82544 based adapters.
1502# ep:   3Com 3C509, 3C529, 3C556, 3C562D, 3C563D, 3C572, 3C574X, 3C579, 3C589
1503#       and PC Card devices using these chipsets.
1504# ex:   Intel EtherExpress Pro/10 and other i82595-based adapters,
1505#       Olicom Ethernet PC Card devices.
1506# fe:   Fujitsu MB86960A/MB86965A Ethernet
1507# fea:  DEC DEFEA EISA FDDI adapter
1508# fpa:  Support for the Digital DEFPA PCI FDDI. `device fddi' is also needed.
1509# fxp:  Intel EtherExpress Pro/100B
1510#	(hint of prefer_iomap can be done to prefer I/O instead of Mem mapping)
1511# gx:   Intel Pro/1000 Gigabit Ethernet (82542, 82543-F, 82543-T)
1512# lge:	Support for PCI gigabit ethernet adapters based on the Level 1
1513#	LXT1001 NetCellerator chipset. This includes the D-Link DGE-500SX,
1514#	SMC TigerCard 1000 (SMC9462SX), and some Addtron cards.
1515# lnc:  Lance/PCnet cards (Isolan, Novell NE2100, NE32-VL, AMD Am7990 and
1516#       Am79C960)
1517# nge:	Support for PCI gigabit ethernet adapters based on the National
1518#	Semiconductor DP83820 and DP83821 chipset. This includes the
1519#	SMC EZ Card 1000 (SMC9462TX), D-Link DGE-500T, Asante FriendlyNet
1520#	GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the LinkSys
1521#	EG1032 and EG1064, the Surecom EP-320G-TX and the Netgear GA622T.
1522# pcn:	Support for PCI fast ethernet adapters based on the AMD Am79c97x
1523#	chipsets, including the PCnet/FAST, PCnet/FAST+, PCnet/PRO and
1524#	PCnet/Home. These were previously handled by the lnc driver (and
1525#	still will be if you leave this driver out of the kernel).
1526# rl:   Support for PCI fast ethernet adapters based on the RealTek 8129/8139
1527#       chipset.  Note that the RealTek driver defaults to using programmed
1528#       I/O to do register accesses because memory mapped mode seems to cause
1529#       severe lockups on SMP hardware.  This driver also supports the
1530#       Accton EN1207D `Cheetah' adapter, which uses a chip called
1531#       the MPX 5030/5038, which is either a RealTek in disguise or a
1532#       RealTek workalike.  Note that the D-Link DFE-530TX+ uses the RealTek
1533#       chipset and is supported by this driver, not the 'vr' driver.
1534# sf:   Support for Adaptec Duralink PCI fast ethernet adapters based on the
1535#       Adaptec AIC-6915 "starfire" controller.
1536#       This includes dual and quad port cards, as well as one 100baseFX card.
1537#       Most of these are 64-bit PCI devices, except for one single port
1538#       card which is 32-bit.
1539# sis:  Support for NICs based on the Silicon Integrated Systems SiS 900,
1540#       SiS 7016 and NS DP83815 PCI fast ethernet controller chips.
1541# sk:   Support for the SysKonnect SK-984x series PCI gigabit ethernet NICs.
1542#       This includes the SK-9841 and SK-9842 single port cards (single mode
1543#       and multimode fiber) and the SK-9843 and SK-9844 dual port cards
1544#       (also single mode and multimode).
1545#       The driver will autodetect the number of ports on the card and
1546#       attach each one as a separate network interface.
1547# sn:   Support for ISA and PC Card Ethernet devices using the
1548#       SMC91C90/92/94/95 chips.
1549# sr:   RISCom/N2 hdlc sync 1/2 port V.35/X.21 serial driver (requires sppp)
1550# ste:  Sundance Technologies ST201 PCI fast ethernet controller, includes
1551#       the D-Link DFE-550TX.
1552# ti:   Support for PCI gigabit ethernet NICs based on the Alteon Networks
1553#       Tigon 1 and Tigon 2 chipsets.  This includes the Alteon AceNIC, the
1554#       3Com 3c985, the Netgear GA620 and various others.  Note that you will
1555#       probably want to bump up NMBCLUSTERS a lot to use this driver.
1556# tl:   Support for the Texas Instruments TNETE100 series 'ThunderLAN'
1557#       cards and integrated ethernet controllers.  This includes several
1558#       Compaq Netelligent 10/100 cards and the built-in ethernet controllers
1559#       in several Compaq Prosignia, Proliant and Deskpro systems.  It also
1560#       supports several Olicom 10Mbps and 10/100 boards.
1561# tx:   SMC 9432 TX, BTX and FTX cards. (SMC EtherPower II serie)
1562# txp:	Support for 3Com 3cR990 cards with the "Typhoon" chipset
1563# vr:   Support for various fast ethernet adapters based on the VIA
1564#       Technologies VT3043 `Rhine I' and VT86C100A `Rhine II' chips,
1565#       including the D-Link DFE530TX (see 'rl' for DFE530TX+), the Hawking 
1566#       Technologies PN102TX, and the AOpen/Acer ALN-320.
1567# vx:   3Com 3C590 and 3C595
1568# wb:   Support for fast ethernet adapters based on the Winbond W89C840F chip.
1569#       Note: this is not the same as the Winbond W89C940F, which is a
1570#       NE2000 clone.
1571# wi:   Lucent WaveLAN/IEEE 802.11 PCMCIA adapters. Note: this supports both
1572#       the PCMCIA and ISA cards: the ISA card is really a PCMCIA to ISA
1573#       bridge with a PCMCIA adapter plugged into it.
1574# wl:   Lucent Wavelan (ISA card only).
1575# xe:   Xircom/Intel EtherExpress Pro100/16 PC Card ethernet controller,
1576#       Accton Fast EtherCard-16, Compaq Netelligent 10/100 PC Card,
1577#       Toshiba 10/100 Ethernet PC Card, Xircom 16-bit Ethernet + Modem 56
1578# xl:   Support for the 3Com 3c900, 3c905, 3c905B and 3c905C (Fast)
1579#       Etherlink XL cards and integrated controllers.  This includes the
1580#       integrated 3c905B-TX chips in certain Dell Optiplex and Dell
1581#       Precision desktop machines and the integrated 3c905-TX chips
1582#       in Dell Latitude laptop docking stations.
1583#       Also supported: 3Com 3c980(C)-TX, 3Com 3cSOHO100-TX, 3Com 3c450-TX
1584
1585# Order for ISA/EISA devices is important here
1586
1587device		ar	1
1588hint.ar.0.at="isa"
1589hint.ar.0.port="0x300"
1590hint.ar.0.irq="10"
1591hint.ar.0.maddr="0xd0000"
1592device		cm
1593hint.cm.0.at="isa"
1594hint.cm.0.port="0x2e0"
1595hint.cm.0.irq="9"
1596hint.cm.0.maddr="0xdc000"
1597device		cs
1598hint.cs.0.at="isa"
1599hint.cs.0.port="0x300"
1600device		ed
1601#options 	ED_NO_MIIBUS		# Disable ed miibus support
1602hint.ed.0.at="isa"
1603hint.ed.0.port="0x280"
1604hint.ed.0.irq="5"
1605hint.ed.0.maddr="0xd8000"
1606device		ep
1607device		ex
1608device		fe	1
1609hint.fe.0.at="isa"
1610hint.fe.0.port="0x300"
1611device		fea
1612device		lnc	1
1613hint.lnc.0.at="isa"
1614hint.lnc.0.port="0x280"
1615hint.lnc.0.irq="10"
1616hint.lnc.0.drq="0"
1617device		sr	1
1618hint.sr.0.at="isa"
1619hint.sr.0.port="0x300"
1620hint.sr.0.irq="5"
1621hint.sr.0.maddr="0xd0000"
1622device		sn
1623hint.sn.0.at="isa"
1624hint.sn.0.port="0x300"
1625hint.sn.0.irq="10"
1626device		an
1627device		awi
1628device		cnw
1629device		wi
1630options 	WLCACHE		# enables the signal-strength cache
1631options 	WLDEBUG		# enables verbose debugging output
1632device		wl	1
1633hint.wl.0.at="isa"
1634hint.wl.0.port="0x300"
1635device		xe
1636
1637# PCI Ethernet NICs that use the common MII bus controller code.
1638device		dc		# DEC/Intel 21143 and various workalikes
1639device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
1640hint.fxp.0.prefer_iomap="0"
1641device		rl		# RealTek 8129/8139
1642device		pcn		# AMD Am79C97x PCI 10/100 NICs
1643device		sf		# Adaptec AIC-6915 (``Starfire'')
1644device		sis		# Silicon Integrated Systems SiS 900/SiS 7016
1645device		ste		# Sundance ST201 (D-Link DFE-550TX)
1646device		tl		# Texas Instruments ThunderLAN
1647device		tx		# SMC EtherPower II (83c170 ``EPIC'')
1648device		vr		# VIA Rhine, Rhine II
1649device		wb		# Winbond W89C840F
1650device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
1651
1652# PCI Ethernet NICs.
1653device		de		# DEC/Intel DC21x4x (``Tulip'')
1654device		txp		# 3Com 3cR990 (``Typhoon'')
1655device		vx		# 3Com 3c590, 3c595 (``Vortex'')
1656device		my		# Myson controllers
1657
1658# PCI Gigabit & FDDI NICs.
1659device		bge
1660device		gx
1661device		lge
1662device		nge
1663device		sk
1664device		ti
1665device		fpa	1
1666
1667#
1668# ATM related options (Cranor version)
1669# (note: this driver cannot be used with the HARP ATM stack)
1670#
1671# The `en' device provides support for Efficient Networks (ENI)
1672# ENI-155 PCI midway cards, and the Adaptec 155Mbps PCI ATM cards (ANA-59x0).
1673#
1674# atm device provides generic atm functions and is required for
1675# atm devices.
1676# NATM enables the netnatm protocol family that can be used to
1677# bypass TCP/IP.
1678#
1679# the current driver supports only PVC operations (no atm-arp, no multicast).
1680# for more details, please read the original documents at
1681# http://www.ccrc.wustl.edu/pub/chuck/tech/bsdatm/bsdatm.html
1682#
1683device		atm
1684device		en
1685options 	NATM			#native ATM
1686
1687#
1688# Audio drivers: `pcm', `sbc', `gusc'
1689#
1690# pcm: PCM audio through various sound cards.
1691#
1692# This has support for a large number of new audio cards, based on
1693# CS423x, OPTi931, Yamaha OPL-SAx, and also for SB16, GusPnP.
1694# For more information about this driver and supported cards,
1695# see the pcm.4 man page.
1696#
1697# The flags of the device tells the device a bit more info about the
1698# device that normally is obtained through the PnP interface.
1699#	bit  2..0   secondary DMA channel;
1700#	bit  4      set if the board uses two dma channels;
1701#	bit 15..8   board type, overrides autodetection; leave it
1702#		    zero if don't know what to put in (and you don't,
1703#		    since this is unsupported at the moment...).
1704#
1705# Supported cards include:
1706# Creative SoundBlaster ISA PnP/non-PnP
1707# Supports ESS and Avance ISA chips as well.
1708# Gravis UltraSound ISA PnP/non-PnP
1709# Crystal Semiconductor CS461x/428x PCI
1710# Neomagic 256AV (ac97)
1711# Most of the more common ISA/PnP sb/mss/ess compatable cards.
1712
1713device		pcm
1714
1715# For non-pnp sound cards with no bridge drivers only:
1716hint.pcm.0.at="isa"
1717hint.pcm.0.irq="10"
1718hint.pcm.0.drq="1"
1719hint.pcm.0.flags="0x0"
1720
1721#
1722# midi: MIDI interfaces and synthesizers
1723#
1724
1725device		midi
1726
1727# For non-pnp sound cards with no bridge drivers:
1728hint.midi.0.at="isa"
1729hint.midi.0.irq="5"
1730hint.midi.0.flags="0x0"
1731
1732# For serial ports (this example configures port 2):
1733# TODO: implement generic tty-midi interface so that we can use
1734#	other uarts.
1735hint.midi.0.at="isa"
1736hint.midi.0.port="0x2F8"
1737hint.midi.0.irq="3"
1738
1739#
1740# seq: MIDI sequencer
1741#
1742
1743device		seq
1744
1745# The bridge drivers for sound cards.  These can be separately configured
1746# for providing services to the likes of new-midi.
1747# When used with 'device pcm' they also provide pcm sound services.
1748#
1749# sbc:  Creative SoundBlaster ISA PnP/non-PnP
1750#	Supports ESS and Avance ISA chips as well.
1751# gusc: Gravis UltraSound ISA PnP/non-PnP
1752# csa:  Crystal Semiconductor CS461x/428x PCI
1753
1754# For non-PnP cards:
1755device		sbc
1756hint.sbc.0.at="isa"
1757hint.sbc.0.port="0x220"
1758hint.sbc.0.irq="5"
1759hint.sbc.0.drq="1"
1760hint.sbc.0.flags="0x15"
1761device		gusc
1762hint.gusc.0.at="isa"
1763hint.gusc.0.port="0x220"
1764hint.gusc.0.irq="5"
1765hint.gusc.0.drq="1"
1766hint.gusc.0.flags="0x13"
1767
1768#
1769# Miscellaneous hardware:
1770#
1771# meteor: Matrox Meteor video capture board
1772# bktr: Brooktree bt848/848a/849a/878/879 video capture and TV Tuner board
1773# cy: Cyclades serial driver
1774# dgb: Digiboard PC/Xi and PC/Xe series driver (ALPHA QUALITY!)
1775# digi: Digiboard driver
1776# joy: joystick (including IO DATA PCJOY PC Card joystick)
1777# rp: Comtrol Rocketport(ISA/PCI) - single card
1778# si: Specialix SI/XIO 4-32 port terminal multiplexor
1779# nmdm: nullmodem terminal driver (see nmdm(4))
1780
1781# Notes on the Digiboard driver:
1782#
1783# The following flag values have special meanings in dgb:
1784#	0x01 - alternate layout of pins
1785#	0x02 - use the windowed PC/Xe in 64K mode
1786
1787# Notes on the Comtrol Rocketport driver:
1788#
1789# The exact values used for rp0 depend on how many boards you have
1790# in the system.  The manufacturer's sample configs are listed as:
1791#
1792#               device  rp	# core driver support
1793#
1794#   Comtrol Rocketport ISA single card
1795#		hints.rp.0.at="isa"
1796#		hints.rp.0.port="0x280"
1797#
1798#   If instead you have two ISA cards, one installed at 0x100 and the
1799#   second installed at 0x180, then you should add the following to
1800#   your kernel probe hints:
1801#		hints.rp.0.at="isa"
1802#		hints.rp.0.port="0x100"
1803#		hints.rp.1.at="isa"
1804#		hints.rp.1.port="0x180"
1805#
1806#   For 4 ISA cards, it might be something like this:
1807#		hints.rp.0.at="isa"
1808#		hints.rp.0.port="0x180"
1809#		hints.rp.1.at="isa"
1810#		hints.rp.1.port="0x100"
1811#		hints.rp.2.at="isa"
1812#		hints.rp.2.port="0x340"
1813#		hints.rp.3.at="isa"
1814#		hints.rp.3.port="0x240"
1815#
1816#   For PCI cards, you need no hints.
1817
1818device		joy			# PnP aware, hints for nonpnp only
1819hint.joy.0.at="isa"
1820hint.joy.0.port="0x201"
1821device		cy	1
1822options 	CY_PCI_FASTINTR		# Use with cy_pci unless irq is shared
1823hint.cy.0.at="isa"
1824hint.cy.0.irq="10"
1825hint.cy.0.maddr="0xd4000"
1826hint.cy.0.msize="0x2000"
1827device		dgb	1
1828options 	NDGBPORTS=16		# Defaults to 16*NDGB
1829hint.dgb.0.at="isa"
1830hint.dgb.0.port="0x220"
1831hint.dgb.0.maddr="0xfc000"
1832device		digi
1833hint.digi.0.at="isa"
1834hint.digi.0.port="0x104"
1835hint.digi.0.maddr="0xd0000"
1836# BIOS & FEP/OS components of device digi.
1837device		digi_CX
1838device		digi_CX_PCI
1839device		digi_EPCX
1840device		digi_EPCX_PCI
1841device		digi_Xe
1842device		digi_Xem
1843device		digi_Xr
1844device		rp
1845hint.rp.0.at="isa"
1846hint.rp.0.port="0x280"
1847device		si
1848options 	SI_DEBUG
1849hint.si.0.at="isa"
1850hint.si.0.maddr="0xd0000"
1851hint.si.0.irq="12"
1852device		nmdm
1853# HOT1 Xilinx 6200 card (http://www.vcc.com/)
1854device		xrpu
1855
1856#
1857# The `meteor' device is a PCI video capture board. It can also have the
1858# following options:
1859#   options METEOR_ALLOC_PAGES=xxx	preallocate kernel pages for data entry
1860#	figure (ROWS*COLUMN*BYTES_PER_PIXEL*FRAME+PAGE_SIZE-1)/PAGE_SIZE
1861#   options METEOR_DEALLOC_PAGES	remove all allocated pages on close(2)
1862#   options METEOR_DEALLOC_ABOVE=xxx	remove all allocated pages above the
1863#	specified amount. If this value is below the allocated amount no action
1864#	taken
1865#   options METEOR_SYSTEM_DEFAULT={METEOR_PAL|METEOR_NTSC|METEOR_SECAM}, used
1866#	for initialization of fps routine when a signal is not present.
1867#
1868# The 'bktr' device is a PCI video capture device using the Brooktree
1869# bt848/bt848a/bt849a/bt878/bt879 chipset. When used with a TV Tuner it forms a
1870# TV card, eg Miro PC/TV, Hauppauge WinCast/TV WinTV, VideoLogic Captivator,
1871# Intel Smart Video III, AverMedia, IMS Turbo, FlyVideo.
1872#
1873# options 	OVERRIDE_CARD=xxx
1874# options 	OVERRIDE_TUNER=xxx
1875# options 	OVERRIDE_MSP=1
1876# options 	OVERRIDE_DBX=1
1877# These options can be used to override the auto detection
1878# The current values for xxx are found in src/sys/dev/bktr/bktr_card.h
1879# Using sysctl(8) run-time overrides on a per-card basis can be made
1880#
1881# options 	BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_PAL
1882# or
1883# options 	BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_NTSC
1884# Specifes the default video capture mode.
1885# This is required for Dual Crystal (28&35Mhz) boards where PAL is used
1886# to prevent hangs during initialisation.  eg VideoLogic Captivator PCI.
1887#
1888# options 	BKTR_USE_PLL
1889# PAL or SECAM users who have a 28Mhz crystal (and no 35Mhz crystal)
1890# must enable PLL mode with this option. eg some new Bt878 cards.
1891#
1892# options 	BKTR_GPIO_ACCESS
1893# This enable IOCTLs which give user level access to the GPIO port.
1894#
1895# options 	BKTR_NO_MSP_RESET
1896# Prevents the MSP34xx reset. Good if you initialise the MSP in another OS first
1897#
1898# options 	BKTR_430_FX_MODE
1899# Switch Bt878/879 cards into Intel 430FX chipset compatibility mode.
1900#
1901# options 	BKTR_SIS_VIA_MODE
1902# Switch Bt878/879 cards into SIS/VIA chipset compatibility mode which is
1903# needed for some old SiS and VIA chipset motherboards.
1904# This also allows Bt878/879 chips to work on old OPTi (<1997) chipset
1905# motherboards and motherboards with bad or incomplete PCI 2.1 support.
1906# As a rough guess, old = before 1998
1907#
1908
1909device		meteor	1
1910
1911#
1912# options	BKTR_USE_FREEBSD_SMBUS
1913# Compile with FreeBSD SMBus implementation
1914#
1915# Brooktree driver has been ported to the new I2C framework. Thus,
1916# you'll need to have the following 3 lines in the kernel config.
1917#     device smbus
1918#     device iicbus
1919#     device iicbb
1920#     device iicsmb
1921# The iic and smb devices are only needed if you want to control other
1922# I2C slaves connected to the external connector of some cards.
1923#
1924device		bktr	1
1925
1926#
1927# PC Card/PCMCIA
1928# (OLDCARD)
1929#
1930# card: pccard slots
1931# pcic: isa/pccard bridge
1932device		pcic
1933hint.pcic.0.at="isa"
1934hint.pcic.1.at="isa"
1935device		card
1936
1937#
1938# PC Card/PCMCIA and Cardbus
1939# (NEWCARD)
1940#
1941# Note that NEWCARD and OLDCARD are incompatible.  Do not use both at the same
1942# time.
1943#
1944# pccbb: isa/pccard and pci/cardbus bridge
1945# pccard: pccard slots
1946# cardbus: cardbus slots
1947#device		pccbb
1948#device		pccard
1949#device		cardbus
1950
1951#
1952# SMB bus
1953#
1954# System Management Bus support is provided by the 'smbus' device.
1955# Access to the SMBus device is via the 'smb' device (/dev/smb*),
1956# which is a child of the 'smbus' device.
1957#
1958# Supported devices:
1959# smb		standard io through /dev/smb*
1960#
1961# Supported SMB interfaces:
1962# iicsmb	I2C to SMB bridge with any iicbus interface
1963# bktr		brooktree848 I2C hardware interface
1964# intpm		Intel PIIX4 (82371AB, 82443MX) Power Management Unit
1965# alpm		Acer Aladdin-IV/V/Pro2 Power Management Unit
1966# ichsmb	Intel ICH SMBus controller chips (82801AA, 82801AB, 82801BA)
1967# viapm		VIA VT82C586B/596B/686A and VT8233 Power Management Unit 
1968#
1969device		smbus		# Bus support, required for smb below.
1970
1971device		intpm
1972device		alpm
1973device		ichsmb
1974device		viapm
1975
1976device		smb
1977
1978#
1979# I2C Bus
1980#
1981# Philips i2c bus support is provided by the `iicbus' device.
1982#
1983# Supported devices:
1984# ic	i2c network interface
1985# iic	i2c standard io
1986# iicsmb i2c to smb bridge. Allow i2c i/o with smb commands.
1987#
1988# Supported interfaces:
1989# bktr	brooktree848 I2C software interface
1990#
1991# Other:
1992# iicbb	generic I2C bit-banging code (needed by lpbb, bktr)
1993#
1994device		iicbus		# Bus support, required for ic/iic/iicsmb below.
1995device		iicbb
1996
1997device		ic
1998device		iic
1999device		iicsmb		# smb over i2c bridge
2000
2001# Parallel-Port Bus
2002#
2003# Parallel port bus support is provided by the `ppbus' device.
2004# Multiple devices may be attached to the parallel port, devices
2005# are automatically probed and attached when found.
2006#
2007# Supported devices:
2008# vpo	Iomega Zip Drive
2009#	Requires SCSI disk support ('scbus' and 'da'), best
2010#	performance is achieved with ports in EPP 1.9 mode.
2011# lpt	Parallel Printer
2012# plip	Parallel network interface
2013# ppi	General-purpose I/O ("Geek Port") + IEEE1284 I/O
2014# pps	Pulse per second Timing Interface
2015# lpbb	Philips official parallel port I2C bit-banging interface
2016#
2017# Supported interfaces:
2018# ppc	ISA-bus parallel port interfaces.
2019#
2020
2021options 	PPC_PROBE_CHIPSET # Enable chipset specific detection
2022				  # (see flags in ppc(4))
2023options 	DEBUG_1284	# IEEE1284 signaling protocol debug
2024options 	PERIPH_1284	# Makes your computer act as a IEEE1284
2025				# compliant peripheral
2026options 	DONTPROBE_1284	# Avoid boot detection of PnP parallel devices
2027options 	VP0_DEBUG	# ZIP/ZIP+ debug
2028options 	LPT_DEBUG	# Printer driver debug
2029options 	PPC_DEBUG	# Parallel chipset level debug
2030options 	PLIP_DEBUG	# Parallel network IP interface debug
2031options 	PCFCLOCK_VERBOSE         # Verbose pcfclock driver
2032options 	PCFCLOCK_MAX_RETRIES=5   # Maximum read tries (default 10)
2033
2034device		ppc
2035hint.ppc.0.at="isa"
2036hint.ppc.0.irq="7"
2037device		ppbus
2038device		vpo
2039device		lpt
2040device		plip
2041device		ppi
2042device		pps
2043device		lpbb
2044device		pcfclock
2045
2046# Kernel BOOTP support
2047
2048options 	BOOTP		# Use BOOTP to obtain IP address/hostname
2049				# Requires NFSCLIENT and NFS_ROOT
2050options 	BOOTP_NFSROOT	# NFS mount root filesystem using BOOTP info
2051options 	BOOTP_NFSV3	# Use NFS v3 to NFS mount root
2052options 	BOOTP_COMPAT	# Workaround for broken bootp daemons.
2053options 	BOOTP_WIRED_TO=fxp0 # Use interface fxp0 for BOOTP
2054
2055#
2056# Add tie-ins for a hardware watchdog.  This only enable the hooks;
2057# the user must still supply the actual driver.
2058#
2059options 	HW_WDOG
2060
2061#
2062# Disable swapping. This option removes all code which actually performs
2063# swapping, so it's not possible to turn it back on at run-time.
2064#
2065# This is sometimes usable for systems which don't have any swap space
2066# (see also sysctls "vm.defer_swapspace_pageouts" and
2067# "vm.disable_swapspace_pageouts")
2068#
2069#options 	NO_SWAPPING
2070
2071# Set the number of sf_bufs to allocate. sf_bufs are virtual buffers
2072# for sendfile(2) that are used to map file VM pages, and normally
2073# default to a quantity that is roughly 16*MAXUSERS+512. You would
2074# typically want about 4 of these for each simultaneous file send.
2075#
2076options 	NSFBUFS=1024
2077
2078#
2079# Enable extra debugging code for locks.  This stores the filename and
2080# line of whatever acquired the lock in the lock itself, and change a
2081# number of function calls to pass around the relevant data.  This is
2082# not at all useful unless you are debugging lock code.  Also note
2083# that it is likely to break e.g. fstat(1) unless you recompile your
2084# userland with -DDEBUG_LOCKS as well.
2085#
2086options 	DEBUG_LOCKS
2087
2088
2089#####################################################################
2090# USB support
2091# UHCI controller
2092device		uhci
2093# OHCI controller
2094device		ohci
2095# General USB code (mandatory for USB)
2096device		usb
2097#
2098# USB Double Bulk Pipe devices
2099device		udbp
2100# Generic USB device driver
2101device		ugen
2102# Human Interface Device (anything with buttons and dials)
2103device		uhid
2104# USB keyboard
2105device		ukbd
2106# USB printer
2107device		ulpt
2108# USB Iomega Zip 100 Drive (Requires scbus and da)
2109device		umass
2110# USB modem support
2111device		umodem
2112# USB mouse
2113device		ums
2114# Diamond Rio 500 Mp3 player
2115device		urio
2116# USB scanners
2117device		uscanner
2118# USB serial support
2119device		ucom
2120device		uplcom
2121# USB serial support for DDI pocket's PHS
2122device		uvscom
2123# USB Fm Radio
2124device		ufm
2125#
2126# ADMtek USB ethernet. Supports the LinkSys USB100TX,
2127# the Billionton USB100, the Melco LU-ATX, the D-Link DSB-650TX
2128# and the SMC 2202USB. Also works with the ADMtek AN986 Pegasus
2129# eval board.
2130device		aue
2131#
2132# CATC USB-EL1201A USB ethernet. Supports the CATC Netmate
2133# and Netmate II, and the Belkin F5U111.
2134device		cue
2135#
2136# Kawasaki LSI ethernet. Supports the LinkSys USB10T,
2137# Entrega USB-NET-E45, Peracom Ethernet Adapter, the
2138# 3Com 3c19250, the ADS Technologies USB-10BT, the ATen UC10T,
2139# the Netgear EA101, the D-Link DSB-650, the SMC 2102USB
2140# and 2104USB, and the Corega USB-T.
2141device		kue
2142
2143# debugging options for the USB subsystem
2144#
2145options 	UHCI_DEBUG
2146options 	OHCI_DEBUG
2147options 	USB_DEBUG
2148
2149options 	UGEN_DEBUG
2150options 	UHID_DEBUG
2151options 	UHUB_DEBUG
2152options 	UKBD_DEBUG
2153options 	ULPT_DEBUG
2154options 	UMASS_DEBUG
2155options 	UMS_DEBUG
2156options 	URIO_DEBUG
2157
2158# options for ukbd:
2159options 	UKBD_DFLT_KEYMAP	# specify the built-in keymap
2160makeoptions	UKBD_DFLT_KEYMAP=it.iso
2161
2162#
2163# Embedded system options:
2164#
2165# An embedded system might want to run something other than init.
2166options 	INIT_PATH="/sbin/init:/stand/sysinstall"
2167
2168# Debug options
2169options 	BUS_DEBUG	# enable newbus debugging
2170options 	DEBUG_VFS_LOCKS	# enable vfs lock debugging
2171options 	NPX_DEBUG	# enable npx debugging (FPU/math emu)
2172
2173#####################################################################
2174# SYSV IPC KERNEL PARAMETERS
2175#
2176# Maximum number of entries in a semaphore map.
2177options 	SEMMAP=31
2178
2179# Maximum number of System V semaphores that can be used on the system at
2180# one time. 
2181options 	SEMMNI=11
2182
2183# Total number of semaphores system wide
2184options 	SEMMNS=61
2185
2186# Total number of undo structures in system
2187options 	SEMMNU=31
2188
2189# Maximum number of System V semaphores that can be used by a single process
2190# at one time. 
2191options 	SEMMSL=61
2192
2193# Maximum number of operations that can be outstanding on a single System V
2194# semaphore at one time. 
2195options 	SEMOPM=101
2196
2197# Maximum number of undo operations that can be outstanding on a single
2198# System V semaphore at one time. 
2199options 	SEMUME=11
2200
2201# Maximum number of shared memory pages system wide.
2202options 	SHMALL=1025
2203
2204# Maximum size, in bytes, of a single System V shared memory region. 
2205options 	SHMMAX="(SHMMAXPGS*PAGE_SIZE+1)"
2206options 	SHMMAXPGS=1025
2207
2208# Minimum size, in bytes, of a single System V shared memory region. 
2209options 	SHMMIN=2
2210
2211# Maximum number of shared memory regions that can be used on the system
2212# at one time. 
2213options 	SHMMNI=33
2214
2215# Maximum number of System V shared memory regions that can be attached to
2216# a single process at one time. 
2217options 	SHMSEG=9
2218
2219# Set the amount of time (in seconds) the system will wait before
2220# rebooting automatically when a kernel panic occurs.  If set to (-1),
2221# the system will wait indefinitely until a key is pressed on the
2222# console.
2223options 	PANIC_REBOOT_WAIT_TIME=16
2224
2225#####################################################################
2226
2227# More undocumented options for linting.
2228# Note that documenting these are not considered an affront.
2229
2230options 	CAM_DEBUG_DELAY
2231
2232# VFS cluster debugging.
2233options 	CLUSTERDEBUG
2234
2235options 	DEBUG
2236
2237# Kernel filelock debugging.
2238options 	LOCKF_DEBUG
2239
2240# System V compatible message queues
2241# Please note that the values provided here are used to test kernel
2242# building.  The defaults in the sources provide almost the same numbers.
2243# MSGSSZ must be a power of 2 between 8 and 1024.
2244options 	MSGMNB=2049	# Max number of chars in queue
2245options 	MSGMNI=41	# Max number of message queue identifiers
2246options 	MSGSEG=2049	# Max number of message segments
2247options 	MSGSSZ=16	# Size of a message segment
2248options 	MSGTQL=41	# Max number of messages in system
2249
2250options 	NBUF=512	# Number of buffer headers
2251
2252options 	NMBCLUSTERS=1024	# Number of mbuf clusters
2253
2254options 	SCSI_NCR_DEBUG
2255options 	SCSI_NCR_MAX_SYNC=10000
2256options 	SCSI_NCR_MAX_WIDE=1
2257options 	SCSI_NCR_MYADDR=7
2258
2259options 	SC_DEBUG_LEVEL=5	# Syscons debug level
2260options 	SC_RENDER_DEBUG	# syscons rendering debugging
2261
2262options 	SHOW_BUSYBUFS	# List buffers that prevent root unmount
2263options 	SLIP_IFF_OPTS
2264options 	VFS_BIO_DEBUG	# VFS buffer I/O debugging
2265
2266# Yet more undocumented options for linting.
2267options 	AAC_DEBUG
2268options 	ACD_DEBUG
2269options 	ACPI_MAX_THREADS=1
2270#!options 	ACPI_NO_SEMAPHORES
2271# Broken:
2272##options 	ASR_MEASURE_PERFORMANCE
2273options 	AST_DEBUG
2274options 	ATAPI_DEBUG
2275options 	ATA_DEBUG
2276# BKTR_ALLOC_PAGES has no effect except to cause warnings, and
2277# BROOKTREE_ALLOC_PAGES hasn't actually been superseded by it, since the
2278# driver still mostly spells this option BROOKTREE_ALLOC_PAGES.
2279##options 	BKTR_ALLOC_PAGES="(217*4+1)"
2280options 	BROOKTREE_ALLOC_PAGES="(217*4+1)"
2281# Broken:
2282##options 	CAPABILITIES
2283options 	MAXFILES=999
2284# METEOR_TEST_VIDEO has no effect since meteor is broken.
2285options 	METEOR_TEST_VIDEO
2286options 	NDEVFSINO=1025
2287options 	NDEVFSOVERFLOW=32769
2288options 	NETGRAPH_BRIDGE
2289# SIMOS is broken since it is alpha-only but not ifdefed.
2290##options 	SIMOS
2291
2292# Yet more undocumented options for linting.
2293options 	VGA_DEBUG
2294