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