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