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