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