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