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