xref: /freebsd/sys/conf/options (revision 5203edcdc553fda6caa1da8826a89b1a02dad1bf)
1# $FreeBSD$
2#
3#        On the handling of kernel options
4#
5# All kernel options should be listed in NOTES, with suitable
6# descriptions.  Negative options (options that make some code not
7# compile) should be commented out; LINT (generated from NOTES) should
8# compile as much code as possible.  Try to structure option-using
9# code so that a single option only switch code on, or only switch
10# code off, to make it possible to have a full compile-test.  If
11# necessary, you can 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# "conf/options.<machine>".  Options that affect a single source-file
16# <xxx>.[c|s] should be directed into "opt_<xxx>.h", while options
17# that affect multiple files should either go in "opt_global.h" if
18# this is a kernel-wide option (used just about everywhere), or in
19# "opt_<option-name-in-lower-case>.h" if it affect only some files.
20# Note that the effect of listing only an option without a
21# header-file-name in conf/options (and cousins) is that the last
22# 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
33AAC_DEBUG		opt_aac.h
34AHC_ALLOW_MEMIO		opt_aic7xxx.h
35AHC_TMODE_ENABLE	opt_aic7xxx.h
36AHC_DUMP_EEPROM		opt_aic7xxx.h
37AHC_DEBUG		opt_aic7xxx.h
38AHC_DEBUG_OPTS		opt_aic7xxx.h
39AHC_REG_PRETTY_PRINT    opt_aic7xxx.h
40AHD_DEBUG		opt_aic79xx.h
41AHD_DEBUG_OPTS		opt_aic79xx.h
42AHD_TMODE_ENABLE	opt_aic79xx.h
43AHD_REG_PRETTY_PRINT	opt_aic79xx.h
44ADW_ALLOW_MEMIO		opt_adw.h
45
46TWA_DEBUG		opt_twa.h
47TWA_FLASH_FIRMWARE	opt_twa.h
48
49# Miscellaneous options.
50ADAPTIVE_MUTEXES
51ALQ
52CODA_COMPAT_5	opt_coda.h
53COMPAT_43	opt_compat.h
54COMPAT_FREEBSD4	opt_compat.h
55COMPILING_LINT	opt_global.h
56CONSPEED	opt_comconsole.h
57CY_PCI_FASTINTR
58DDB
59DDB_NOKLDSYM	opt_ddb.h
60DDB_NUMSYM	opt_ddb.h
61DDB_TRACE
62DDB_UNATTENDED
63DIRECTIO	opt_directio.h
64FULL_PREEMPTION
65GDB_REMOTE_CHAT	opt_ddb.h
66GDBSPEED	opt_ddb.h
67GEOM_AES	opt_geom.h
68GEOM_APPLE	opt_geom.h
69GEOM_BDE	opt_geom.h
70GEOM_BSD	opt_geom.h
71GEOM_CONCAT	opt_geom.h
72GEOM_FOX	opt_geom.h
73GEOM_GATE	opt_geom.h
74GEOM_GPT	opt_geom.h
75GEOM_LABEL	opt_geom.h
76GEOM_MBR	opt_geom.h
77GEOM_MIRROR	opt_geom.h
78GEOM_NOP	opt_geom.h
79GEOM_PC98	opt_geom.h
80GEOM_STRIPE	opt_geom.h
81GEOM_SUNLABEL	opt_geom.h
82GEOM_VOL	opt_geom.h
83HW_WDOG
84KSTACK_MAX_PAGES
85KSTACK_PAGES
86KTRACE
87KTRACE_REQUEST_POOL	opt_ktrace.h
88LIBICONV
89MAC
90MAC_ALWAYS_LABEL_MBUF	opt_mac.h
91MAC_BIBA	opt_dontuse.h
92MAC_BSDEXTENDED	opt_dontuse.h
93MAC_DEBUG	opt_mac.h
94MAC_IFOFF	opt_dontuse.h
95MAC_LOMAC	opt_dontuse.h
96MAC_MLS		opt_dontuse.h
97MAC_NONE	opt_dontuse.h
98MAC_PARTITION	opt_dontuse.h
99MAC_PORTACL	opt_dontuse.h
100MAC_SEEOTHERUIDS	opt_dontuse.h
101MAC_STATIC	opt_mac.h
102MAC_STUB	opt_dontuse.h
103MAC_TEST	opt_dontuse.h
104MD_ROOT		opt_md.h
105MD_ROOT_SIZE	opt_md.h
106MUTEX_WAKE_ALL
107NSWBUF_MIN	opt_swap.h
108PANIC_REBOOT_WAIT_TIME	opt_panic.h
109PPS_SYNC	opt_ntp.h
110PUC_FASTINTR	opt_puc.h
111QUOTA
112SCHED_4BSD	opt_sched.h
113SCHED_ULE	opt_sched.h
114SHOW_BUSYBUFS
115SLEEPQUEUE_PROFILING
116SPX_HACK
117SUIDDIR		opt_suiddir.h
118MSGMNB		opt_sysvipc.h
119MSGMNI		opt_sysvipc.h
120MSGSEG		opt_sysvipc.h
121MSGSSZ		opt_sysvipc.h
122MSGTQL		opt_sysvipc.h
123SEMMAP		opt_sysvipc.h
124SEMMNI		opt_sysvipc.h
125SEMMNS		opt_sysvipc.h
126SEMMNU		opt_sysvipc.h
127SEMMSL		opt_sysvipc.h
128SEMOPM		opt_sysvipc.h
129SEMUME		opt_sysvipc.h
130SHMALL		opt_sysvipc.h
131SHMMAX		opt_sysvipc.h
132SHMMAXPGS	opt_sysvipc.h
133SHMMIN		opt_sysvipc.h
134SHMMNI		opt_sysvipc.h
135SHMSEG		opt_sysvipc.h
136SYSVMSG		opt_sysvipc.h
137SYSVSEM		opt_sysvipc.h
138SYSVSHM		opt_sysvipc.h
139SW_WATCHDOG	opt_watchdog.h
140TURNSTILE_PROFILING
141TTYHOG		opt_tty.h
142VFS_AIO
143WLCACHE		opt_wavelan.h
144WLDEBUG		opt_wavelan.h
145
146# POSIX kernel options
147P1003_1B_SEMAPHORES		opt_posix.h
148_KPOSIX_PRIORITY_SCHEDULING	opt_posix.h
149
150# Do we want the config file compiled into the kernel?
151INCLUDE_CONFIG_FILE	opt_config.h
152
153# Options for static filesystems.  These should only be used at config
154# time, since the corresponding lkms cannot work if there are any static
155# dependencies.  Unusability is enforced by hiding the defines for the
156# options in a never-included header.
157CD9660		opt_dontuse.h
158CODA		opt_dontuse.h
159EXT2FS		opt_dontuse.h
160FDESCFS		opt_dontuse.h
161HPFS		opt_dontuse.h
162LINPROCFS	opt_dontuse.h
163MSDOSFS		opt_dontuse.h
164NTFS		opt_dontuse.h
165NULLFS		opt_dontuse.h
166NWFS		opt_dontuse.h
167PORTALFS	opt_dontuse.h
168PROCFS		opt_dontuse.h
169PSEUDOFS	opt_dontuse.h
170SMBFS		opt_dontuse.h
171UDF		opt_dontuse.h
172UMAPFS		opt_dontuse.h
173UNIONFS		opt_dontuse.h
174
175# Broken - ffs_snapshot() dependency from ufs_lookup() :-(
176FFS		opt_ffs_broken_fixme.h
177
178# These static filesystems have one slightly bogus static dependency in
179# sys/i386/i386/autoconf.c.  If any of these filesystems are
180# statically compiled into the kernel, code for mounting them as root
181# filesystems will be enabled - but look below.
182NFSCLIENT	opt_nfs.h
183NFSSERVER	opt_nfs.h
184
185# filesystems and libiconv bridge
186CD9660_ICONV	opt_dontuse.h
187MSDOSFS_ICONV	opt_dontuse.h
188NTFS_ICONV	opt_dontuse.h
189UDF_ICONV	opt_dontuse.h
190
191# If you are following the conditions in the copyright,
192# you can enable soft-updates which will speed up a lot of thigs
193# and make the system safer from crashes at the same time.
194# otherwise a STUB module will be compiled in.
195SOFTUPDATES	opt_ffs.h
196
197# Enabling this option turns on support for Access Control Lists in UFS,
198# which can be used to support high security configurations.  Depends on
199# UFS_EXTATTR.
200UFS_ACL		opt_ufs.h
201
202# Enabling this option turns on support for extended attributes in UFS-based
203# filesystems, which can be used to support high security configurations
204# as well as new filesystem features.
205UFS_EXTATTR	opt_ufs.h
206UFS_EXTATTR_AUTOSTART	opt_ufs.h
207
208# Enable fast hash lookups for large directories on UFS-based filesystems.
209UFS_DIRHASH	opt_ufs.h
210
211# The below sentence is not in English, and neither is this one.
212# We plan to remove the static dependences above, with a
213# <filesystem>_ROOT option to control if it usable as root.  This list
214# allows these options to be present in config files already (though
215# they won't make any difference yet).
216NFS_ROOT	opt_nfsroot.h
217
218# SMB/CIFS requester
219NETSMB			opt_netsmb.h
220NETSMBCRYPTO		opt_netsmb.h
221
222# Experimental support for large MS-DOS filesystems; SEE WARNING IN "NOTES"!
223MSDOSFS_LARGE	opt_msdosfs.h
224
225# Options used only in subr_param.c.
226HZ		opt_param.h
227MAXFILES	opt_param.h
228NBUF		opt_param.h
229NMBCLUSTERS	opt_param.h
230NSFBUFS		opt_param.h
231VM_BCACHE_SIZE_MAX	opt_param.h
232VM_SWZONE_SIZE_MAX	opt_param.h
233MAXUSERS
234DFLDSIZ		opt_param.h
235MAXDSIZ		opt_param.h
236MAXSSIZ		opt_param.h
237
238# Generic SCSI options.
239CAM_MAX_HIGHPOWER	opt_cam.h
240CAMDEBUG		opt_cam.h
241CAM_DEBUG_DELAY		opt_cam.h
242CAM_DEBUG_BUS		opt_cam.h
243CAM_DEBUG_TARGET	opt_cam.h
244CAM_DEBUG_LUN		opt_cam.h
245CAM_DEBUG_FLAGS		opt_cam.h
246CAM_NEW_TRAN_CODE	opt_cam.h
247SCSI_DELAY		opt_scsi.h
248SCSI_NO_SENSE_STRINGS	opt_scsi.h
249SCSI_NO_OP_STRINGS	opt_scsi.h
250
251# Options used only in cam/scsi/scsi_cd.c
252CHANGER_MIN_BUSY_SECONDS	opt_cd.h
253CHANGER_MAX_BUSY_SECONDS	opt_cd.h
254
255# Options used only in cam/scsi/scsi_sa.c.
256SA_IO_TIMEOUT		opt_sa.h
257SA_SPACE_TIMEOUT	opt_sa.h
258SA_REWIND_TIMEOUT	opt_sa.h
259SA_ERASE_TIMEOUT	opt_sa.h
260SA_1FM_AT_EOD		opt_sa.h
261
262# Options used only in cam/scsi/scsi_pt.c
263SCSI_PT_DEFAULT_TIMEOUT	opt_pt.h
264
265# Options used only in cam/scsi/scsi_ses.c
266SES_ENABLE_PASSTHROUGH	opt_ses.h
267
268# Options used in dev/sym/ (Symbios SCSI driver).
269SYM_SETUP_LP_PROBE_MAP	opt_sym.h	#-Low Priority Probe Map (bits)
270					# Allows the ncr to take precedence
271					# 1 (1<<0) -> 810a, 860
272					# 2 (1<<1) -> 825a, 875, 885, 895
273					# 4 (1<<2) -> 895a, 896, 1510d
274SYM_SETUP_SCSI_DIFF	opt_sym.h	#-HVD support for 825a, 875, 885
275					# disabled:0 (default), enabled:1
276SYM_SETUP_PCI_PARITY	opt_sym.h	#-PCI parity checking
277					# disabled:0, enabled:1 (default)
278SYM_SETUP_MAX_LUN	opt_sym.h	#-Number of LUNs supported
279					# default:8, range:[1..64]
280
281# Options used only in pci/ncr.c
282SCSI_NCR_DEBUG		opt_ncr.h
283SCSI_NCR_MAX_SYNC	opt_ncr.h
284SCSI_NCR_MAX_WIDE	opt_ncr.h
285SCSI_NCR_MYADDR		opt_ncr.h
286
287# Options used only in dev/isp/*
288ISP_TARGET_MODE		opt_isp.h
289ISP_FW_CRASH_DUMP	opt_isp.h
290
291# Options used in the 'ata' ATA/ATAPI driver
292ATA_STATIC_ID		opt_ata.h
293ATA_NOPCI		opt_ata.h
294DEV_ATADISK		opt_ata.h
295DEV_ATAPICD		opt_ata.h
296DEV_ATAPIST		opt_ata.h
297DEV_ATAPIFD		opt_ata.h
298DEV_ATAPICAM		opt_ata.h
299DEV_ATARAID		opt_ata.h
300
301# Net stuff.
302ACCEPT_FILTER_DATA
303ACCEPT_FILTER_HTTP
304ALTQ			opt_global.h
305ALTQ_CBQ		opt_altq.h
306ALTQ_RED		opt_altq.h
307ALTQ_RIO		opt_altq.h
308ALTQ_HFSC		opt_altq.h
309ALTQ_CDNR		opt_altq.h
310ALTQ_PRIQ		opt_altq.h
311ALTQ_NOPCC		opt_altq.h
312ALTQ_DEBUG		opt_altq.h
313BOOTP			opt_bootp.h
314BOOTP_COMPAT		opt_bootp.h
315BOOTP_NFSROOT		opt_bootp.h
316BOOTP_NFSV3		opt_bootp.h
317BOOTP_WIRED_TO		opt_bootp.h
318BRIDGE			opt_bdg.h
319DEV_PF			opt_pf.h
320DEV_PFLOG		opt_pf.h
321DEV_PFSYNC		opt_pf.h
322ETHER_II		opt_ef.h
323ETHER_8023		opt_ef.h
324ETHER_8022		opt_ef.h
325ETHER_SNAP		opt_ef.h
326MROUTING		opt_mrouting.h
327PIM			opt_mrouting.h
328INET			opt_inet.h
329INET6			opt_inet6.h
330IPSEC			opt_ipsec.h
331IPSEC_ESP		opt_ipsec.h
332IPSEC_DEBUG		opt_ipsec.h
333IPSEC_FILTERGIF		opt_ipsec.h
334FAST_IPSEC		opt_ipsec.h
335IPDIVERT
336DUMMYNET		opt_ipdn.h
337IPFILTER		opt_ipfilter.h
338IPFILTER_LOG		opt_ipfilter.h
339IPFILTER_DEFAULT_BLOCK	opt_ipfilter.h
340PFIL_HOOKS		opt_pfil_hooks.h
341IPFIREWALL		opt_ipfw.h
342IPFIREWALL_VERBOSE	opt_ipfw.h
343IPFIREWALL_VERBOSE_LIMIT	opt_ipfw.h
344IPFIREWALL_DEFAULT_TO_ACCEPT	opt_ipfw.h
345IPV6FIREWALL		opt_ip6fw.h
346IPV6FIREWALL_VERBOSE	opt_ip6fw.h
347IPV6FIREWALL_VERBOSE_LIMIT	opt_ip6fw.h
348IPV6FIREWALL_DEFAULT_TO_ACCEPT	opt_ip6fw.h
349IPSTEALTH
350IPX
351IPXIP			opt_ipx.h
352LIBMBPOOL
353LIBMCHAIN
354MBUF_STRESS_TEST	opt_mbuf_stress_test.h
355NCP
356NETATALK		opt_atalk.h
357PPP_BSDCOMP		opt_ppp.h
358PPP_DEFLATE		opt_ppp.h
359PPP_FILTER		opt_ppp.h
360RANDOM_IP_ID
361SLIP_IFF_OPTS		opt_slip.h
362TCPDEBUG
363TCP_SIGNATURE		opt_inet.h
364TCP_SACK_DEBUG		opt_tcp_sack.h
365TCP_DROP_SYNFIN		opt_tcp_input.h
366XBONEHACK
367
368# Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
369# Each netgraph node type can be either be compiled into the kernel
370# or loaded dynamically. To get the former, include the corresponding
371# option below. Each type has its own man page, e.g. ng_async(4).
372NETGRAPH
373NETGRAPH_ASYNC		opt_netgraph.h
374NETGRAPH_ATMLLC		opt_netgraph.h
375NETGRAPH_ATM_ATMPIF	opt_netgraph.h
376NETGRAPH_BLUETOOTH	opt_netgraph.h
377NETGRAPH_BLUETOOTH_BT3C	opt_netgraph.h
378NETGRAPH_BLUETOOTH_H4	opt_netgraph.h
379NETGRAPH_BLUETOOTH_HCI	opt_netgraph.h
380NETGRAPH_BLUETOOTH_L2CAP	opt_netgraph.h
381NETGRAPH_BLUETOOTH_SOCKET	opt_netgraph.h
382NETGRAPH_BLUETOOTH_UBT	opt_netgraph.h
383NETGRAPH_BLUETOOTH_UBTBCMFW	opt_netgraph.h
384NETGRAPH_BPF		opt_netgraph.h
385NETGRAPH_BRIDGE		opt_netgraph.h
386NETGRAPH_CISCO		opt_netgraph.h
387NETGRAPH_ECHO		opt_netgraph.h
388NETGRAPH_EIFACE		opt_netgraph.h
389NETGRAPH_ETHER		opt_netgraph.h
390NETGRAPH_FEC		opt_netgraph.h
391NETGRAPH_FRAME_RELAY	opt_netgraph.h
392NETGRAPH_GIF		opt_netgraph.h
393NETGRAPH_GIF_DEMUX	opt_netgraph.h
394NETGRAPH_HOLE		opt_netgraph.h
395NETGRAPH_IFACE		opt_netgraph.h
396NETGRAPH_IP_INPUT	opt_netgraph.h
397NETGRAPH_KSOCKET	opt_netgraph.h
398NETGRAPH_L2TP		opt_netgraph.h
399NETGRAPH_LMI		opt_netgraph.h
400# MPPC compression requires proprietary files (not included)
401NETGRAPH_MPPC_COMPRESSION	opt_netgraph.h
402NETGRAPH_MPPC_ENCRYPTION	opt_netgraph.h
403NETGRAPH_ONE2MANY	opt_netgraph.h
404NETGRAPH_PPP		opt_netgraph.h
405NETGRAPH_PPPOE		opt_netgraph.h
406NETGRAPH_PPTPGRE	opt_netgraph.h
407NETGRAPH_RFC1490	opt_netgraph.h
408NETGRAPH_SOCKET		opt_netgraph.h
409NETGRAPH_SPLIT		opt_netgraph.h
410NETGRAPH_SPPP		opt_netgraph.h
411NETGRAPH_TEE		opt_netgraph.h
412NETGRAPH_TTY		opt_netgraph.h
413NETGRAPH_UI		opt_netgraph.h
414NETGRAPH_VJC		opt_netgraph.h
415
416# NgATM options
417NGATM_ATM		opt_netgraph.h
418NGATM_ATMBASE		opt_netgraph.h
419NGATM_SSCOP		opt_netgraph.h
420NGATM_SSCFU		opt_netgraph.h
421NGATM_UNI		opt_netgraph.h
422
423# DRM options
424DRM_DEBUG		opt_drm.h
425
426ZERO_COPY_SOCKETS	opt_zero.h
427TI_PRIVATE_JUMBOS	opt_ti.h
428TI_JUMBO_HDRSPLIT	opt_ti.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
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
457NPX_DEBUG		opt_debug_npx.h
458NETATALKDEBUG		opt_atalk.h
459SI_DEBUG		opt_debug_si.h
460SX_DEBUG		opt_debug_sx.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
475BURN_BRIDGES		opt_global.h
476DEBUG			opt_global.h
477DEBUG_LOCKS		opt_global.h
478DEBUG_VFS_LOCKS		opt_global.h
479DIAGNOSTIC		opt_global.h
480INVARIANT_SUPPORT	opt_global.h
481INVARIANTS		opt_global.h
482LOOKUP_SHARED		opt_global.h
483MCLSHIFT		opt_global.h
484MUTEX_DEBUG		opt_global.h
485MUTEX_NOINLINE		opt_global.h
486MUTEX_PROFILING		opt_global.h
487MSIZE			opt_global.h
488REGRESSION		opt_global.h
489RESTARTABLE_PANICS	opt_global.h
490VFS_BIO_DEBUG		opt_global.h
491
492# These are VM related options
493VM_KMEM_SIZE		opt_vm.h
494VM_KMEM_SIZE_SCALE	opt_vm.h
495VM_KMEM_SIZE_MAX	opt_vm.h
496NO_SWAPPING		opt_vm.h
497MALLOC_MAKE_FAILURES	opt_vm.h
498MALLOC_PROFILE		opt_vm.h
499PQ_NOOPT		opt_vmpage.h
500PQ_NORMALCACHE		opt_vmpage.h
501PQ_MEDIUMCACHE		opt_vmpage.h
502PQ_LARGECACHE		opt_vmpage.h
503PQ_HUGECACHE		opt_vmpage.h
504PQ_CACHESIZE		opt_vmpage.h
505
506# Standard SMP options
507SMP			opt_global.h
508
509# Size of the kernel message buffer
510MSGBUF_SIZE		opt_msgbuf.h
511
512# NFS options
513NFS_MINATTRTIMO		opt_nfs.h
514NFS_MAXATTRTIMO		opt_nfs.h
515NFS_MINDIRATTRTIMO	opt_nfs.h
516NFS_MAXDIRATTRTIMO	opt_nfs.h
517NFS_GATHERDELAY		opt_nfs.h
518NFS_WDELAYHASHSIZ	opt_nfs.h
519NFS_DEBUG		opt_nfs.h
520
521# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
522OVERRIDE_CARD			opt_bktr.h
523OVERRIDE_TUNER			opt_bktr.h
524OVERRIDE_DBX			opt_bktr.h
525OVERRIDE_MSP			opt_bktr.h
526BROOKTREE_SYSTEM_DEFAULT	opt_bktr.h
527BROOKTREE_ALLOC_PAGES		opt_bktr.h
528BKTR_OVERRIDE_CARD		opt_bktr.h
529BKTR_OVERRIDE_TUNER		opt_bktr.h
530BKTR_OVERRIDE_DBX		opt_bktr.h
531BKTR_OVERRIDE_MSP		opt_bktr.h
532BKTR_SYSTEM_DEFAULT		opt_bktr.h
533BKTR_ALLOC_PAGES		opt_bktr.h
534BKTR_USE_PLL			opt_bktr.h
535BKTR_GPIO_ACCESS		opt_bktr.h
536BKTR_NO_MSP_RESET		opt_bktr.h
537BKTR_430_FX_MODE		opt_bktr.h
538BKTR_SIS_VIA_MODE		opt_bktr.h
539BKTR_USE_FREEBSD_SMBUS		opt_bktr.h
540BKTR_NEW_MSP34XX_DRIVER		opt_bktr.h
541
542# options for serial support
543COM_ESP			opt_sio.h
544COM_MULTIPORT		opt_sio.h
545BREAK_TO_DEBUGGER	opt_comconsole.h
546ALT_BREAK_TO_DEBUGGER	opt_comconsole.h
547
548# Options to support PPS
549UART_PPS_ON_CTS		opt_uart.h
550
551# options for bus/device framework
552BUS_DEBUG		opt_bus.h
553
554# options for USB support
555USB_DEBUG		opt_usb.h
556USBVERBOSE		opt_usb.h
557UKBD_DFLT_KEYMAP	opt_ukbd.h
558UPLCOM_INTR_INTERVAL	opt_uplcom.h
559UVSCOM_DEFAULT_OPKTSIZE	opt_uvscom.h
560UVSCOM_INTR_INTERVAL	opt_uvscom.h
561
562# Vinum options
563VINUMDEBUG		opt_vinum.h
564
565# Embedded system options
566INIT_PATH		opt_init_path.h
567
568ROOTDEVNAME		opt_rootdevname.h
569
570FDC_DEBUG		opt_fdc.h
571PCFCLOCK_VERBOSE	opt_pcfclock.h
572PCFCLOCK_MAX_RETRIES	opt_pcfclock.h
573TDFX_LINUX		opt_tdfx.h
574
575KTR			opt_global.h
576KTR_ALQ			opt_ktr.h
577KTR_MASK		opt_ktr.h
578KTR_CPUMASK		opt_ktr.h
579KTR_COMPILE		opt_global.h
580KTR_ENTRIES		opt_global.h
581KTR_VERBOSE		opt_ktr.h
582WITNESS			opt_global.h
583WITNESS_DDB		opt_witness.h
584WITNESS_SKIPSPIN	opt_witness.h
585
586# options for ACPI support
587ACPI_DEBUG		opt_acpi.h
588ACPI_MAX_THREADS	opt_acpi.h
589ACPI_NO_SEMAPHORES	opt_acpi.h
590ACPICA_PEDANTIC		opt_acpi.h
591
592# options for DEVFS, see sys/fs/devfs/devfs.h
593NDEVFSINO		opt_devfs.h
594NDEVFSOVERFLOW		opt_devfs.h
595
596# various 'device presence' options.
597DEV_BPF			opt_bpf.h
598DEV_ISA			opt_isa.h
599DEV_MCA			opt_mca.h
600DEV_SPLASH		opt_splash.h
601
602EISA_SLOTS		opt_eisa.h
603
604# ed driver
605ED_NO_MIIBUS		opt_ed.h
606
607# wi driver
608WI_SYMBOL_FIRMWARE	opt_wi.h
609
610# XXX bogusly global.
611DEVICE_POLLING		opt_global.h
612
613SOCKBUF_DEBUG		opt_global.h
614
615# options for ubsec driver
616UBSEC_DEBUG		opt_ubsec.h
617UBSEC_RNDTEST		opt_ubsec.h
618UBSEC_NO_RNG		opt_ubsec.h
619
620# options for hifn driver
621HIFN_DEBUG		opt_hifn.h
622HIFN_RNDTEST		opt_hifn.h
623
624# options for safenet driver
625SAFE_DEBUG		opt_safe.h
626SAFE_NO_RNG		opt_safe.h
627SAFE_RNDTEST		opt_safe.h
628
629# syscons options
630MAXCONS			opt_syscons.h
631SC_ALT_MOUSE_IMAGE	opt_syscons.h
632SC_CUT_SPACES2TABS	opt_syscons.h
633SC_CUT_SEPCHARS		opt_syscons.h
634SC_DEBUG_LEVEL		opt_syscons.h
635SC_DFLT_FONT		opt_syscons.h
636SC_DISABLE_DDBKEY	opt_syscons.h
637SC_DISABLE_REBOOT	opt_syscons.h
638SC_HISTORY_SIZE		opt_syscons.h
639SC_KERNEL_CONS_ATTR	opt_syscons.h
640SC_KERNEL_CONS_REV_ATTR	opt_syscons.h
641SC_MOUSE_CHAR		opt_syscons.h
642SC_NO_CUTPASTE		opt_syscons.h
643SC_NO_FONT_LOADING	opt_syscons.h
644SC_NO_HISTORY		opt_syscons.h
645SC_NO_SUSPEND_VTYSWITCH	opt_syscons.h
646SC_NO_SYSMOUSE		opt_syscons.h
647SC_NORM_ATTR		opt_syscons.h
648SC_NORM_REV_ATTR	opt_syscons.h
649SC_PIXEL_MODE		opt_syscons.h
650SC_RENDER_DEBUG		opt_syscons.h
651SC_TWOBUTTON_MOUSE	opt_syscons.h
652
653# kbd options
654KBD_DISABLE_KEYMAP_LOAD	opt_kbd.h
655KBD_INSTALL_CDEV	opt_kbd.h
656KBD_MAXRETRY		opt_kbd.h
657KBD_MAXWAIT		opt_kbd.h
658KBD_RESETDELAY		opt_kbd.h
659KBDIO_DEBUG		opt_kbd.h
660
661# options for the Atheros HAL (only useful with source code)
662AH_SUPPORT_AR5210	opt_ah.h
663AH_SUPPORT_AR5211	opt_ah.h
664AH_SUPPORT_AR5212	opt_ah.h
665AH_DEBUG		opt_ah.h
666AH_DEBUG_ALQ		opt_ah.h
667AH_ASSERT		opt_ah.h
668
669# dcons options
670DCONS_BUF_SIZE		opt_dcons.h
671DCONS_POLL_HZ		opt_dcons.h
672DCONS_FORCE_CONSOLE	opt_dcons.h
673DCONS_FORCE_GDB		opt_dcons.h
674