xref: /dragonfly/sys/conf/options (revision 745703c7)
1# $FreeBSD: src/sys/conf/options,v 1.191.2.53 2003/06/04 17:56:58 sam Exp $
2#
3#        On the handling of kernel options
4#
5# All kernel options should be listed in LINT64, with suitable
6# descriptions.  Negative options (options that make some code not
7# compile) should be commented out; LINT64 should compile as much code
8# as possible.  Try to structure option-using code so that a single
9# option only switch code on, or only switch code off, to make it
10# possible to have a full compile-test.  If necessary, you can include
11# "opt_lint.h" and check for COMPILING_LINT64 to get maximum code
12# coverage.
13#
14# All new options shall also be listed in either "conf/options" or
15# "platform/<platform>/conf/options".  Options that affect a single
16# source-file <xxx>.[c|s] should be directed into "opt_<xxx>.h", while
17# options that affect multiple files should either go in
18# "opt_global.h" if this is a kernel-wide option (used just about
19# everywhere), or in "opt_<option-name-in-lower-case>.h" if it affect
20# only some files.  Note that the effect of listing only an option
21# without a header-file-name in conf/options (and cousins) is that the
22# last convention is followed.
23#
24# This handling scheme is not yet fully implemented.
25#
26#
27# Format of this file:
28# Option name	filename
29#
30# If filename is missing, the default is
31# opt_<name-of-option-in-lower-case>.h
32
33# Adaptec Array Controller driver options
34AAC_DEBUG		opt_aac.h
35
36# Adaptec aic7xxx SCSI controller options
37AHC_ALLOW_MEMIO		opt_aic7xxx.h	# Allow PCI devices to use memory
38					# mapped I/O
39
40AHC_TMODE_ENABLE	opt_aic7xxx.h	# Bitmap of units to enable
41					# targetmode operations.
42
43AHC_DUMP_EEPROM		opt_aic7xxx.h	# Dump the contents of our
44					# configuration prom.
45
46AHC_DEBUG		opt_aic7xxx.h	# Compile in Aic7xxx Debugging code.
47
48AHC_DEBUG_OPTS		opt_aic7xxx.h	# Aic7xxx driver debugging options.
49					# See sys/dev/aic7xxx/aic7xxx.h
50
51AHC_REG_PRETTY_PRINT	opt_aic7xxx.h	# Print register bitfields in debug
52					# output.  Adds ~15k to driver.
53
54# Adaptec aic79xx SCSI controller options
55AHD_DEBUG		opt_aic79xx.h	# Compile in Aic79xx Debugging code.
56
57AHD_DEBUG_OPTS		opt_aic79xx.h	# Aic79xx driver debugging options.
58					# See sys/dev/aic7xxx/aic79xx.h
59
60AHD_TMODE_ENABLE	opt_aic79xx.h	# Bitmap of units to enable
61					# targetmode operations.
62
63AHD_REG_PRETTY_PRINT	opt_aic79xx.h	# Print register bitfields in debug
64					# output.  Adds ~15k to driver.
65
66ADW_ALLOW_MEMIO		opt_adw.h	# Allow PCI devices to use memory
67					# mapped I/O
68AMR_DEBUG		opt_amr.h
69TWA_DEBUG		opt_twa.h
70
71#options for ACPI support
72ACPI_DEBUG		opt_acpi.h
73ACPI_NO_SEMAPHORES	opt_acpi.h
74ACPI_ENABLE_PCI		opt_acpi.h
75
76# Miscellaneous options.
77COMPAT_43	opt_compat.h
78COMPILING_LINT	opt_lint.h
79DDB
80DDB_TRACE
81DDB_UNATTENDED	opt_ddb.h
82GDB_REMOTE_CHAT	opt_ddb.h
83KTRACE
84LIBICONV
85MD_NSECT	opt_md.h
86MD_ROOT		opt_md.h
87MD_ROOT_SIZE	opt_md.h
88MFI_DEBUG	opt_mfi.h
89NSWAPDEV	opt_swap.h
90NSWBUF_MIN	opt_swap.h
91PPS_SYNC	opt_ntp.h
92QUOTA
93SUIDDIR		opt_suiddir.h
94SHMMIN		opt_sysvipc.h
95SHMMNI		opt_sysvipc.h
96SHMSEG		opt_sysvipc.h
97SEMMAP		opt_sysvipc.h
98SEMMNI		opt_sysvipc.h
99SEMMNS		opt_sysvipc.h
100SEMMNU		opt_sysvipc.h
101SEMMSL		opt_sysvipc.h
102SEMOPM		opt_sysvipc.h
103SEMUME		opt_sysvipc.h
104MSGMNB		opt_sysvipc.h
105MSGMNI		opt_sysvipc.h
106MSGSEG		opt_sysvipc.h
107MSGSSZ		opt_sysvipc.h
108MSGTQL		opt_sysvipc.h
109UCONSOLE
110ICMP_BANDLIM
111SHOW_BUSYBUFS
112DIRECTIO	opt_directio.h
113
114# POSIX kernel options
115_KPOSIX_PRIORITY_SCHEDULING	opt_posix.h
116
117# Do we want the config file compiled into the kernel?
118INCLUDE_CONFIG_FILE	opt_config.h
119
120# Options for static file systems.  These should only be used at config
121# time, since the corresponding lkms cannot work if there are any static
122# dependencies.  Unusability is enforced by hiding the defines for the
123# options in a never-included header.
124EXT2FS		opt_dontuse.h
125HAMMER		opt_dontuse.h
126HPFS		opt_dontuse.h
127MFS		opt_dontuse.h
128MSDOSFS		opt_dontuse.h
129NTFS		opt_dontuse.h
130NULLFS		opt_dontuse.h
131PORTAL		opt_dontuse.h
132PROCFS		opt_dontuse.h
133PUFFS		opt_dontuse.h
134SMBFS		opt_dontuse.h
135TMPFS		opt_dontuse.h
136UDF		opt_dontuse.h
137
138# These static filesystems has one slightly bogus static dependency in
139# sys/platform/.../i386/autoconf.c.  If any of these filesystems are
140# statically compiled into the kernel, code for mounting them as root
141# filesystems will be enabled - but look below.  Boot-code is purposely
142# unavailable for the LKM-based versions.
143CD9660
144FFS
145NFS
146
147# filesystems and libiconv bridge
148CD9660_ICONV	opt_dontuse.h
149MSDOSFS_ICONV	opt_dontuse.h
150NTFS_ICONV	opt_dontuse.h
151
152# SMB/CIFS requester
153NETSMB		opt_netsmb.h
154NETSMBCRYPTO	opt_netsmb.h
155
156# If you are following the conditions in the copyright,
157# you can enable soft-updates which will speed up a lot of things
158# and make the system safer from crashes at the same time.
159# otherwise a STUB module will be compiled in.
160SOFTUPDATES	opt_ffs.h
161
162# Enable fast hash lookups for large directories on UFS-based filesystems.
163UFS_DIRHASH	opt_ufs.h
164
165# The above static dependencies are planned removed, with a
166# <filesystem>_ROOT option to control if it usable as root.  This list
167# allows these options to be present in config files already (though
168# they won't make any difference yet).
169FFS_ROOT	opt_ffs.h
170NFS_ROOT	opt_nfsroot.h
171
172# The union static file system has bogus static dependencies, so it isn't
173# hidden yet.
174UNION
175
176# Options used only in subr_param.c.
177HZ		opt_param.h
178MAXFILES	opt_param.h
179NBUF		opt_param.h
180NMBCLUSTERS	opt_param.h
181NMBUFS		opt_param.h
182VM_BCACHE_SIZE_MAX	opt_param.h
183VM_SWZONE_SIZE_MAX	opt_param.h
184MAXUSERS
185DFLDSIZ		opt_param.h
186MAXDSIZ		opt_param.h
187MAXSSIZ		opt_param.h
188
189# Generic SCSI options.
190CAM_MAX_HIGHPOWER	opt_cam.h
191CAMDEBUG		opt_cam.h
192CAM_DEBUG_DELAY		opt_cam.h
193CAM_DEBUG_BUS		opt_cam.h
194CAM_DEBUG_TARGET	opt_cam.h
195CAM_DEBUG_LUN		opt_cam.h
196CAM_DEBUG_FLAGS		opt_cam.h
197SCSI_DELAY		opt_scsi.h
198SCSI_NO_SENSE_STRINGS	opt_scsi.h
199SCSI_NO_OP_STRINGS	opt_scsi.h
200
201# iSCSI options
202ISCSI_INITIATOR_DEBUG	opt_iscsi_initiator.h
203
204# Options used only in cam/scsi/scsi_cd.c
205CHANGER_MIN_BUSY_SECONDS	opt_cd.h
206CHANGER_MAX_BUSY_SECONDS	opt_cd.h
207
208# Options used only in cam/scsi/scsi_sa.c.
209SA_IO_TIMEOUT		opt_sa.h
210SA_SPACE_TIMEOUT	opt_sa.h
211SA_REWIND_TIMEOUT	opt_sa.h
212SA_ERASE_TIMEOUT	opt_sa.h
213SA_1FM_AT_EOD		opt_sa.h
214
215# Options used only in cam/scsi/scsi_pt.c
216SCSI_PT_DEFAULT_TIMEOUT	opt_pt.h
217
218# Options used only in cam/scsi/scsi_ses.c
219SES_ENABLE_PASSTHROUGH	opt_ses.h
220
221# Options used in dev/sym/ (Symbios SCSI driver).
222SYM_SETUP_LP_PROBE_MAP	opt_sym.h	#-Low Priority Probe Map (bits)
223					# Allows the ncr to take precedence
224					# 1 (1<<0) -> 810a, 860
225					# 2 (1<<1) -> 825a, 875, 885, 895
226					# 4 (1<<2) -> 895a, 896, 1510d
227SYM_SETUP_SCSI_DIFF	opt_sym.h	#-HVD support for 825a, 875, 885
228					# disabled:0 (default), enabled:1
229SYM_SETUP_PCI_PARITY	opt_sym.h	#-PCI parity checking
230					# disabled:0, enabled:1 (default)
231SYM_SETUP_MAX_LUN	opt_sym.h	#-Number of LUNs supported
232					# default:8, range:[1..64]
233
234# Options used only in pci/ncr.c
235SCSI_NCR_DEBUG		opt_ncr.h
236SCSI_NCR_MAX_SYNC	opt_ncr.h
237SCSI_NCR_MAX_WIDE	opt_ncr.h
238SCSI_NCR_MYADDR		opt_ncr.h
239
240# Options used only in pci/isp_pci.c
241ISP_TARGET_MODE		opt_isp.h
242
243# Options used in the 'nata' ATA/ATAPI driver
244ATA_STATIC_ID		opt_ata.h
245
246# Net stuff.
247# altq stuff
248ALTQ			opt_global.h
249ALTQ_CBQ		opt_altq.h
250ALTQ_RED		opt_altq.h
251ALTQ_RIO		opt_altq.h
252ALTQ_HFSC		opt_altq.h
253ALTQ_PRIQ		opt_altq.h
254ALTQ_FAIRQ		opt_altq.h
255ALTQ_NOPCC		opt_altq.h
256ALTQ_DEBUG		opt_altq.h
257
258ACCEPT_FILTER_DATA
259ACCEPT_FILTER_HTTP
260BOOTP			opt_bootp.h
261BOOTP_COMPAT		opt_bootp.h
262BOOTP_NFSROOT		opt_bootp.h
263BOOTP_NFSV3		opt_bootp.h
264BOOTP_WIRED_TO		opt_bootp.h
265CARP			opt_carp.h
266MROUTING		opt_mrouting.h
267PIM			opt_mrouting.h
268INET			opt_inet.h
269INET6			opt_inet6.h
270IPSEC			opt_ipsec.h
271IPSEC_ESP		opt_ipsec.h
272IPSEC_DEBUG		opt_ipsec.h
273IPSEC_FILTERGIF		opt_ipsec.h
274FAST_IPSEC		opt_ipsec.h
275IPDIVERT
276DUMMYNET		opt_ipdn.h
277DUMMYNET_DEBUG		opt_ipdn.h
278IPFIREWALL		opt_ipfw.h
279IPFIREWALL3		opt_ipfw.h
280IPFIREWALL_DEBUG	opt_ipfw.h
281IPFIREWALL_VERBOSE	opt_ipfw.h
282IPFIREWALL_VERBOSE_LIMIT	opt_ipfw.h
283IPFIREWALL_DEFAULT_TO_ACCEPT	opt_ipfw.h
284IPV6FIREWALL		opt_ip6fw.h
285IPV6FIREWALL_VERBOSE	opt_ip6fw.h
286IPV6FIREWALL_VERBOSE_LIMIT	opt_ip6fw.h
287IPV6FIREWALL_DEFAULT_TO_ACCEPT	opt_ip6fw.h
288IPSTEALTH
289LIBMCHAIN
290MPLS			opt_mpls.h
291PPP_BSDCOMP		opt_ppp.h
292PPP_DEFLATE		opt_ppp.h
293PPP_FILTER		opt_ppp.h
294SLIP_IFF_OPTS		opt_slip.h
295TCPDEBUG
296TCP_SIGNATURE		opt_inet.h
297TCP_DROP_SYNFIN		opt_tcp_input.h
298ICMPPRINTFS
299
300XBONEHACK
301MBUF_STRESS_TEST	opt_mbuf_stress_test.h
302
303# (New netgraph, port still in progress)
304#
305# Netgraph(4). Use option NETGRAPH7 to enable the base netgraph code.
306# Each netgraph node type can be either be compiled into the kernel
307# or loaded dynamically. To get the former, include the corresponding
308# option below. Each type has its own man page, e.g. ng_async(4).
309NETGRAPH7
310NETGRAPH7_DEBUG		opt_netgraph.h
311NETGRAPH7_ASYNC		opt_netgraph.h
312NETGRAPH7_ATMLLC	opt_netgraph.h
313NETGRAPH7_ATM_ATMPIF	opt_netgraph.h
314NETGRAPH7_BLUETOOTH		opt_netgraph.h
315NETGRAPH7_BLUETOOTH_BT3C	opt_netgraph.h
316NETGRAPH7_BLUETOOTH_H4		opt_netgraph.h
317NETGRAPH7_BLUETOOTH_HCI		opt_netgraph.h
318NETGRAPH7_BLUETOOTH_L2CAP	opt_netgraph.h
319NETGRAPH7_BLUETOOTH_SOCKET	opt_netgraph.h
320NETGRAPH7_BLUETOOTH_UBT		opt_netgraph.h
321NETGRAPH7_BLUETOOTH_UBTBCMFW	opt_netgraph.h
322NETGRAPH7_BPF		opt_netgraph.h
323NETGRAPH7_BRIDGE	opt_netgraph.h
324NETGRAPH7_CAR		opt_netgraph.h
325NETGRAPH7_CISCO		opt_netgraph.h
326NETGRAPH7_DEFLATE	opt_netgraph.h
327NETGRAPH7_DEVICE	opt_netgraph.h
328NETGRAPH7_ECHO		opt_netgraph.h
329NETGRAPH7_EIFACE	opt_netgraph.h
330NETGRAPH7_ETF		opt_netgraph.h
331NETGRAPH7_ETHER		opt_netgraph.h
332NETGRAPH7_FEC		opt_netgraph.h
333NETGRAPH7_FRAME_RELAY	opt_netgraph.h
334NETGRAPH7_GIF		opt_netgraph.h
335NETGRAPH7_GIF_DEMUX	opt_netgraph.h
336NETGRAPH7_HOLE		opt_netgraph.h
337NETGRAPH7_HUB		opt_netgraph.h
338NETGRAPH7_IFACE		opt_netgraph.h
339NETGRAPH7_IP_INPUT	opt_netgraph.h
340NETGRAPH7_IPFW		opt_netgraph.h
341NETGRAPH7_KSOCKET	opt_netgraph.h
342NETGRAPH7_L2TP		opt_netgraph.h
343NETGRAPH7_LMI		opt_netgraph.h
344# MPPC compression requires proprietary files (not included)
345NETGRAPH7_MPPC_COMPRESSION	opt_netgraph.h
346NETGRAPH7_MPPC_ENCRYPTION	opt_netgraph.h
347NETGRAPH7_NAT		opt_netgraph.h
348NETGRAPH7_NETFLOW	opt_netgraph.h
349NETGRAPH7_ONE2MANY	opt_netgraph.h
350NETGRAPH7_PPP		opt_netgraph.h
351NETGRAPH7_PPPOE		opt_netgraph.h
352NETGRAPH7_PPTPGRE	opt_netgraph.h
353NETGRAPH7_PRED1		opt_netgraph.h
354NETGRAPH7_RFC1490	opt_netgraph.h
355NETGRAPH7_SOCKET	opt_netgraph.h
356NETGRAPH7_SPLIT		opt_netgraph.h
357NETGRAPH7_SPPP		opt_netgraph.h
358NETGRAPH7_TAG		opt_netgraph.h
359NETGRAPH7_TCPMSS	opt_netgraph.h
360NETGRAPH7_TEE		opt_netgraph.h
361NETGRAPH7_TTY		opt_netgraph.h
362NETGRAPH7_UI		opt_netgraph.h
363NETGRAPH7_VJC		opt_netgraph.h
364
365# NgATM options
366NGATM7_ATM		opt_netgraph.h
367NGATM7_ATMBASE		opt_netgraph.h
368NGATM7_SSCOP		opt_netgraph.h
369NGATM7_SSCFU		opt_netgraph.h
370NGATM7_UNI		opt_netgraph.h
371NGATM7_CCATM		opt_netgraph.h
372
373# Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
374# Each netgraph node type can be either be compiled into the kernel
375# or loaded dynamically. To get the former, include the corresponding
376# option below. Each type has its own man page, e.g. ng_async(8).
377NETGRAPH
378NETGRAPH_ASYNC		opt_netgraph.h
379NETGRAPH_BPF		opt_netgraph.h
380NETGRAPH_BRIDGE		opt_netgraph.h
381NETGRAPH_CISCO		opt_netgraph.h
382NETGRAPH_ECHO		opt_netgraph.h
383NETGRAPH_EIFACE		opt_netgraph.h
384NETGRAPH_ETHER		opt_netgraph.h
385NETGRAPH_FEC		opt_netgraph.h
386NETGRAPH_FRAME_RELAY	opt_netgraph.h
387NETGRAPH_HOLE		opt_netgraph.h
388NETGRAPH_IFACE		opt_netgraph.h
389NETGRAPH_KSOCKET	opt_netgraph.h
390NETGRAPH_LMI		opt_netgraph.h
391NETGRAPH_L2TP		opt_netgraph.h
392# MPPC compression requires proprietary files (not included)
393NETGRAPH_MPPC_COMPRESSION	opt_netgraph.h
394NETGRAPH_MPPC_ENCRYPTION	opt_netgraph.h
395NETGRAPH_ONE2MANY	opt_netgraph.h
396NETGRAPH_PPP		opt_netgraph.h
397NETGRAPH_PPPOE		opt_netgraph.h
398NETGRAPH_PPTPGRE	opt_netgraph.h
399NETGRAPH_RFC1490	opt_netgraph.h
400NETGRAPH_SOCKET		opt_netgraph.h
401NETGRAPH_TEE		opt_netgraph.h
402NETGRAPH_TTY		opt_netgraph.h
403NETGRAPH_UI		opt_netgraph.h
404NETGRAPH_VJC		opt_netgraph.h
405
406# AGP options
407AGP_DEBUG		opt_agp.h
408
409# DRM options
410DRM_DEBUG		opt_drm.h
411DRM_LINUX		opt_drm.h
412
413# DPT driver debug flags
414DPT_MEASURE_PERFORMANCE	opt_dpt.h
415DPT_HANDLE_TIMEOUTS	opt_dpt.h
416DPT_TIMEOUT_FACTOR	opt_dpt.h
417DPT_LOST_IRQ		opt_dpt.h
418DPT_RESET_HBA		opt_dpt.h
419
420# Misc debug flags.  Most of these should probably be replaced with
421# 'DEBUG', and then let people recompile just the interesting modules
422# with 'make CC="cc -DDEBUG"'.
423CLUSTERDEBUG		opt_debug_cluster.h
424DEBUG_1284		opt_ppb_1284.h
425VP0_DEBUG		opt_vpo.h
426LPT_DEBUG		opt_lpt.h
427PLIP_DEBUG		opt_plip.h
428LOCKF_DEBUG		opt_debug_lockf.h
429SI_DEBUG		opt_debug_si.h
430
431# Fb options
432FB_DEBUG		opt_fb.h
433FB_INSTALL_CDEV		opt_fb.h
434
435# ppbus related options
436PERIPH_1284		opt_ppb_1284.h
437DONTPROBE_1284		opt_ppb_1284.h
438
439# smbus related options
440ENABLE_ALART		opt_intpm.h
441
442# These cause changes all over the kernel
443NO_LWKT_SPLIT_USERPRI	opt_global.h
444BLKDEV_IOSIZE		opt_global.h
445DEBUG			opt_global.h
446DEBUG_LOCKS		opt_global.h
447DEBUG_LOCKS_LATENCY	opt_global.h
448DEBUG_CRIT_SECTIONS	opt_global.h
449DIAGNOSTIC		opt_global.h
450INVARIANTS		opt_global.h
451VFS_BIO_DEBUG		opt_global.h
452DEBUG_INTERRUPTS	opt_global.h
453SOCKBUF_DEBUG		opt_global.h
454PANIC_DEBUG		opt_global.h
455MBUF_DEBUG		opt_global.h
456PMAP_DEBUG		opt_global.h
457VM_PAGE_DEBUG		opt_global.h
458SLAB_DEBUG		opt_global.h
459
460# Sample system/interrupt PC
461DEBUG_PCTRACK		opt_pctrack.h
462
463# These are VM related options
464NO_SWAPPING		opt_vm.h
465
466# sys/netkey
467KEY
468
469# Size of the kernel message buffer
470MSGBUF_SIZE		opt_msgbuf.h
471
472# PCI related options
473COMPAT_OLDPCI
474
475# NFS options
476NFS_MINATTRTIMO		opt_nfs.h
477NFS_MAXATTRTIMO		opt_nfs.h
478NFS_MINDIRATTRTIMO	opt_nfs.h
479NFS_MAXDIRATTRTIMO	opt_nfs.h
480NFS_GATHERDELAY		opt_nfs.h
481NFS_UIDHASHSIZ		opt_nfs.h
482NFS_WDELAYHASHSIZ	opt_nfs.h
483NFS_MUIDHASHSIZ		opt_nfs.h
484NFS_NOSERVER		opt_nfs.h
485NFS_DEBUG		opt_nfs.h
486
487# MSDOSFS options
488MSDOSFS_DEBUG		opt_msdosfs.h
489
490# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
491BROOKTREE_SYSTEM_DEFAULT	opt_bktr.h
492BROOKTREE_ALLOC_PAGES		opt_bktr.h
493BKTR_OVERRIDE_CARD		opt_bktr.h
494BKTR_OVERRIDE_TUNER		opt_bktr.h
495BKTR_OVERRIDE_DBX		opt_bktr.h
496BKTR_OVERRIDE_MSP		opt_bktr.h
497BKTR_SYSTEM_DEFAULT		opt_bktr.h
498BKTR_ALLOC_PAGES		opt_bktr.h
499BKTR_USE_PLL			opt_bktr.h
500BKTR_GPIO_ACCESS		opt_bktr.h
501BKTR_NO_MSP_RESET		opt_bktr.h
502BKTR_430_FX_MODE		opt_bktr.h
503BKTR_SIS_VIA_MODE		opt_bktr.h
504BKTR_NEW_MSP34XX_DRIVER		opt_bktr.h
505
506# Various mi ISA bus flags
507COM_ESP			opt_sio.h
508COM_MULTIPORT		opt_sio.h
509BREAK_TO_DEBUGGER	opt_comconsole.h
510ALT_BREAK_TO_DEBUGGER	opt_comconsole.h
511
512# options for bus/device framework
513BUS_DEBUG		opt_bus.h
514
515# options for USB support
516OHCI_DEBUG		opt_usb.h
517USB_DEBUG		opt_usb.h
518
519# Vinum options
520VINUMDEBUG		opt_vinum.h
521
522# Embedded system options
523UKBD_DFLT_KEYMAP	opt_ukbd.h
524INIT_PATH		opt_init_path.h
525
526ROOTDEVNAME		opt_rootdevname.h
527
528FDC_DEBUG		opt_fdc.h
529PCFCLOCK_VERBOSE	opt_pcfclock.h
530PCFCLOCK_MAX_RETRIES	opt_pcfclock.h
531
532# Network device queue based polling
533IFPOLL_ENABLE		opt_ifpoll.h
534
535# options for ubsec driver
536UBSEC_DEBUG		opt_ubsec.h
537UBSEC_RNDTEST		opt_ubsec.h
538UBSEC_NO_RNG		opt_ubsec.h
539
540# options for hifn driver
541HIFN_DEBUG		opt_hifn.h
542HIFN_RNDTEST		opt_hifn.h
543HIFN_NO_RNG		opt_hifn.h
544
545# options for safenet driver
546SAFE_DEBUG		opt_safe.h
547SAFE_NO_RNG		opt_safe.h
548SAFE_RNDTEST		opt_safe.h
549
550# KTR options
551KTR				opt_global.h
552KTR_ENTRIES			opt_global.h
553KTR_ALL				opt_ktr.h
554KTR_ACPI_EC			opt_ktr.h
555KTR_CTXSW			opt_ktr.h
556KTR_DMCRYPT			opt_ktr.h
557KTR_DSCHED_BFQ			opt_ktr.h
558KTR_ETHERNET			opt_ktr.h
559KTR_HAMMER			opt_ktr.h
560KTR_IFQ				opt_ktr.h
561KTR_IF_BGE			opt_ktr.h
562KTR_IF_EM			opt_ktr.h
563KTR_IF_EMX			opt_ktr.h
564KTR_IF_START			opt_ktr.h
565KTR_IPIQ			opt_ktr.h
566KTR_KERNENTRY			opt_ktr.h
567KTR_MEMORY			opt_ktr.h
568KTR_SERIALIZER			opt_ktr.h
569KTR_SPIN_CONTENTION		opt_ktr.h
570KTR_TESTLOG			opt_ktr.h
571KTR_TOKENS			opt_ktr.h
572KTR_TSLEEP			opt_ktr.h
573KTR_USCHED_BSD4			opt_ktr.h
574KTR_USCHED_DFLY			opt_ktr.h
575KTR_VERBOSE			opt_ktr.h
576KTR_IF_POLL			opt_ktr.h
577KTR_UDP				opt_ktr.h
578KTR_SOWAKEUP			opt_ktr.h
579
580# NTFS options
581NTFS_DEBUG			opt_ntfs.h
582
583# options for the Atheros driver
584ATH_DEBUG		opt_ath.h
585#ATH_DEBUG_ALQ		opt_ath.h
586ATH_DIAGAPI		opt_ath.h
587#ATH_EEPROM_FIRMWARE	opt_ath.h
588#ATH_ENABLE_11N		opt_ath.h
589ATH_ENABLE_DFS		opt_ath.h
590#ATH_ENABLE_RADIOTAP_VENDOR_EXT opt_ath.h
591ATH_KTR_INTR_DEBUG	opt_ath.h
592#ATH_TX99_DIAG		opt_ath.h
593
594# ...and its HAL
595AH_AR5416_INTERRUPT_MITIGATION opt_ah.h
596AH_ASSERT		opt_ah.h
597AH_DEBUG		opt_ah.h
598#AH_DEBUG_ALQ		opt_ah.h
599#AH_DEBUG_COUNTRY	opt_ah.h
600AH_INTERRUPT_DEBUGGING	opt_ah.h
601AH_MAXCHAN		opt_ah.h
602AH_NEED_DESC_SWAP	opt_ah.h
603AH_PRIVATE_DIAG		opt_ah.h
604AH_REGOPS_FUNC		opt_ah.h
605AH_RXCFG_SDMAMW_4BYTES	opt_ah.h
606AH_SUPPORT_AR5416	opt_ah.h
607AH_SUPPORT_AR9130	opt_ah.h
608AH_SUPPORT_AR9330	opt_ah.h
609AH_SUPPORT_AR9340	opt_ah.h
610AH_USE_INIPDGAIN	opt_ah.h
611#AH_WRITE_EEPROM		opt_ah.h
612#AH_WRITE_REGDOMAIN	opt_ah.h
613
614# bce driver
615BCE_RSS_DEBUG		opt_bce.h
616BCE_TSS_DEBUG		opt_bce.h
617
618# bnx driver
619BNX_RSS_DEBUG		opt_bnx.h
620BNX_TSO_DEBUG		opt_bnx.h
621BNX_TSS_DEBUG		opt_bnx.h
622
623# bwn driver
624BWN_DEBUG		opt_bwn.h
625BWN_RXRING_SLOTS	opt_bwn.h
626BWN_TXRING_SLOTS	opt_bwn.h
627
628# siba_bwn driver
629SIBA_DEBUG		opt_siba.h
630
631# ed driver
632ED_NO_MIIBUS		opt_ed.h
633
634# emx driver
635EMX_RSS_DEBUG		opt_emx.h
636EMX_TSO_DEBUG		opt_emx.h
637EMX_TSS_DEBUG		opt_emx.h
638
639# jme driver
640JME_RSS_DEBUG		opt_jme.h
641
642# igb driver
643IGB_RSS_DEBUG		opt_igb.h
644IGB_TSS_DEBUG		opt_igb.h
645IGB_MSIX_DEBUG		opt_igb.h
646
647# ix driver
648IX_RSS_DEBUG		opt_ix.h
649
650# Options for the Intel 802.11n wireless driver
651IWN_DEBUG		opt_iwn.h
652
653# dcons options
654DCONS_BUF_SIZE		opt_dcons.h
655DCONS_POLL_HZ		opt_dcons.h
656DCONS_FORCE_CONSOLE	opt_dcons.h
657DCONS_FORCE_GDB		opt_dcons.h
658
659# deprecated drivers and options
660I_WANT_DEPRECATED_STUFF	opt_deprecated.h
661
662# DSCHED stuff
663DSCHED_AS		opt_dsched.h
664DSCHED_BFQ		opt_dsched.h
665DSCHED_FQ		opt_dsched.h
666
667# Receive Side Scaling (now basecode)
668RSS_DEBUG		opt_rss.h
669
670# Panic settings
671WDOG_DISABLE_ON_PANIC	opt_panic.h
672ERROR_LED_ON_PANIC	opt_panic.h
673
674# 802.11 support layer
675IEEE80211_DEBUG		opt_wlan.h
676IEEE80211_DEBUG_REFCNT	opt_wlan.h
677IEEE80211_AMPDU_AGE	opt_wlan.h
678IEEE80211_SUPPORT_MESH	opt_wlan.h
679IEEE80211_SUPPORT_SUPERG	opt_wlan.h
680IEEE80211_SUPPORT_TDMA	opt_wlan.h
681
682# 802.11 TDMA support
683TDMA_SLOTLEN_DEFAULT	opt_tdma.h
684TDMA_SLOTCNT_DEFAULT	opt_tdma.h
685TDMA_BINTVAL_DEFAULT	opt_tdma.h
686TDMA_TXRATE_11B_DEFAULT	opt_tdma.h
687TDMA_TXRATE_11G_DEFAULT	opt_tdma.h
688TDMA_TXRATE_11A_DEFAULT	opt_tdma.h
689TDMA_TXRATE_TURBO_DEFAULT	opt_tdma.h
690TDMA_TXRATE_HALF_DEFAULT	opt_tdma.h
691TDMA_TXRATE_QUARTER_DEFAULT	opt_tdma.h
692TDMA_TXRATE_11NA_DEFAULT	opt_tdma.h
693TDMA_TXRATE_11NG_DEFAULT	opt_tdma.h
694
695# Sound options
696SND_DEBUG		opt_snd.h
697SND_DIAGNOSTIC		opt_snd.h
698SND_FEEDER_MULTIFORMAT	opt_snd.h
699SND_FEEDER_FULL_MULTIFORMAT	opt_snd.h
700SND_FEEDER_RATE_HP	opt_snd.h
701SND_PCM_64		opt_snd.h
702SND_OLDSTEREO		opt_snd.h
703
704PANIC_REBOOT_WAIT_TIME	opt_panic.h
705
706# Obsolete options (will be removed in the future)
707#
708SYSVMSG			opt_dontuse.h
709SYSVSEM			opt_dontuse.h
710SYSVSHM			opt_dontuse.h
711P1003_1B		opt_dontuse.h
712_KPOSIX_VERSION		opt_dontuse.h
713