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