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