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