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