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