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