xref: /freebsd/sys/conf/options (revision 71fe318b852b8dfb3e799cb12ef184750f7f8eac)
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
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 - extremely noisy, emit trace
39					#     items in loops, etc.
40
41# Adaptec aic7xxx SCSI controller options
42AHC_ALLOW_MEMIO		opt_aic7xxx.h	# Allow PCI devices to use memory
43					# mapped I/O
44
45AHC_TMODE_ENABLE	opt_aic7xxx.h	# Bitmap of units to enable
46					# targetmode operations.
47
48AHC_DUMP_EEPROM		opt_aic7xxx.h	# Dump the contents of our
49					# configuration prom.
50
51AHC_DEBUG		opt_aic7xxx.h	# Compile in Aic7xxx Debugging code.
52
53AHC_DEBUG_OPTS		opt_aic7xxx.h	# Aic7xxx driver debugging options.
54					# See sys/dev/aic7xxx/aic7xxx.h
55
56AHC_REG_PRETTY_PRINT    opt_aic7xxx.h	# Print register bitfields in debug
57					# output.  Adds ~128k to driver.
58
59# Adaptec aic79xx SCSI controller options
60AHD_DEBUG		opt_aic79xx.h	# Compile in Aic79xx Debugging code.
61
62AHD_DEBUG_OPTS		opt_aic79xx.h	# Aic79xx driver debugging options.
63					# See sys/dev/aic7xxx/aic79xx.h
64
65AHD_TMODE_ENABLE	opt_aic79xx.h	# Bitmap of units to enable
66					# targetmode operations.
67
68AHD_REG_PRETTY_PRINT	opt_aic79xx.h	# Print register bitfields in debug
69					# output.  Adds ~215k to driver.
70
71ADW_ALLOW_MEMIO		opt_adw.h	# Allow PCI devices to use memory
72					# mapped I/O
73
74# Miscellaneous options.
75ALQ		opt_alq.h
76ADAPTIVE_MUTEXES
77COMPAT_43	opt_compat.h
78COMPAT_FREEBSD4	opt_compat.h
79COMPAT_SUNOS	opt_compat.h
80NO_COMPAT_FREEBSD4	opt_compat.h
81COMPILING_LINT	opt_global.h
82CY_PCI_FASTINTR
83CONSPEED	opt_comconsole.h
84DDB
85DDB_NOKLDSYM	opt_ddb.h
86DDB_TRACE
87DDB_UNATTENDED
88GDB_REMOTE_CHAT	opt_ddb.h
89GDBSPEED	opt_ddb.h
90NO_GEOM		opt_geom.h
91GEOM_AES	opt_geom.h
92GEOM_BDE	opt_geom.h
93GEOM_BSD	opt_geom.h
94GEOM_GPT	opt_geom.h
95GEOM_MBR	opt_geom.h
96GEOM_PC98	opt_geom.h
97GEOM_SUNLABEL	opt_geom.h
98HW_WDOG
99KSTACK_PAGES
100KSTACK_MAX_PAGES
101KTRACE
102KTRACE_REQUEST_POOL	opt_ktrace.h
103LIBICONV
104MD_ROOT		opt_md.h
105MD_ROOT_SIZE	opt_md.h
106NDGBPORTS	opt_dgb.h
107NODEVFS		opt_devfs.h
108NTIMECOUNTER	opt_ntp.h
109NSWAPDEV	opt_swap.h
110PPS_SYNC	opt_ntp.h
111PUC_FASTINTR	opt_puc.h
112QUOTA
113SPX_HACK
114SUIDDIR		opt_suiddir.h
115MSGMNB		opt_sysvipc.h
116MSGMNI		opt_sysvipc.h
117MSGSEG		opt_sysvipc.h
118MSGSSZ		opt_sysvipc.h
119MSGTQL		opt_sysvipc.h
120SEMMAP		opt_sysvipc.h
121SEMMNI		opt_sysvipc.h
122SEMMNS		opt_sysvipc.h
123SEMMNU		opt_sysvipc.h
124SEMMSL		opt_sysvipc.h
125SEMOPM		opt_sysvipc.h
126SEMUME		opt_sysvipc.h
127SHMALL		opt_sysvipc.h
128SHMMAX		opt_sysvipc.h
129SHMMAXPGS	opt_sysvipc.h
130SHMMIN		opt_sysvipc.h
131SHMMNI		opt_sysvipc.h
132SHMSEG		opt_sysvipc.h
133SYSVMSG		opt_sysvipc.h
134SYSVSEM		opt_sysvipc.h
135SYSVSHM		opt_sysvipc.h
136VFS_AIO
137WLCACHE		opt_wavelan.h
138WLDEBUG		opt_wavelan.h
139
140# POSIX kernel options
141_KPOSIX_PRIORITY_SCHEDULING	opt_posix.h
142P1003_1B_SEMAPHORES		opt_posix.h
143
144#####################################################################
145# SECURITY POLICY PARAMETERS
146
147# Support for Mandatory Access Control (MAC)
148MAC		opt_mac.h
149MAC_BIBA	opt_dontuse.h
150MAC_BSDEXTENDED	opt_dontuse.h
151MAC_DEBUG	opt_mac.h
152MAC_IFOFF	opt_dontuse.h
153MAC_MLS		opt_dontuse.h
154MAC_NONE	opt_dontuse.h
155MAC_PARTITION	opt_dontuse.h
156MAC_SEEOTHERUIDS	opt_dontuse.h
157MAC_TEST	opt_dontuse.h
158
159# Do we want the config file compiled into the kernel?
160INCLUDE_CONFIG_FILE	opt_config.h
161
162# Options for static filesystems.  These should only be used at config
163# time, since the corresponding lkms cannot work if there are any static
164# dependencies.  Unusability is enforced by hiding the defines for the
165# options in a never-included header.
166CD9660		opt_dontuse.h
167CODA		opt_dontuse.h
168EXT2FS		opt_dontuse.h
169FDESCFS		opt_dontuse.h
170LINPROCFS	opt_dontuse.h
171MSDOSFS		opt_dontuse.h
172NULLFS		opt_dontuse.h
173NWFS		opt_dontuse.h
174PORTALFS	opt_dontuse.h
175PROCFS		opt_dontuse.h
176PSEUDOFS	opt_dontuse.h
177UMAPFS		opt_dontuse.h
178NTFS		opt_dontuse.h
179HPFS		opt_dontuse.h
180SMBFS		opt_dontuse.h
181UNIONFS		opt_dontuse.h
182UDF		opt_dontuse.h
183
184# Broken - ffs_snapshot() dependency from ufs_lookup() :-(
185FFS		opt_ffs_broken_fixme.h
186
187# These static filesystems has one slightly bogus static dependency in
188# sys/i386/i386/autoconf.c.  If any of these filesystems are
189# statically compiled into the kernel, code for mounting them as root
190# filesystems will be enabled - but look below.
191NFSCLIENT	opt_nfs.h
192NFSSERVER	opt_nfs.h
193
194# If you are following the conditions in the copyright,
195# you can enable soft-updates which will speed up a lot of thigs
196# and make the system safer from crashes at the same time.
197# otherwise a STUB module will be compiled in.
198SOFTUPDATES	opt_ffs.h
199
200# Enabling this option turns on support for Access Control Lists in UFS,
201# which can be used to support high security configurations.  Depends on
202# UFS_EXTATTR.
203UFS_ACL		opt_ufs.h
204
205# Enabling this option turns on support for extended attributes in UFS-based
206# filesystems, which can be used to support high security configurations
207# as well as new filesystem features.
208UFS_EXTATTR	opt_ufs.h
209UFS_EXTATTR_AUTOSTART	opt_ufs.h
210
211# Enable fast hash lookups for large directories on UFS-based filesystems.
212UFS_DIRHASH	opt_ufs.h
213
214# The above static dependencies are planned removed, with a
215# <filesystem>_ROOT option to control if it usable as root.  This list
216# allows these options to be present in config files already (though
217# they won't make any difference yet).
218NFS_ROOT	opt_nfsroot.h
219
220# SMB/CIFS requester
221NETSMB			opt_netsmb.h
222NETSMBCRYPTO		opt_netsmb.h
223
224# Options used only in subr_param.c.
225HZ		opt_param.h
226MAXFILES	opt_param.h
227NBUF		opt_param.h
228NMBCLUSTERS	opt_param.h
229NSFBUFS		opt_param.h
230VM_BCACHE_SIZE_MAX	opt_param.h
231VM_SWZONE_SIZE_MAX	opt_param.h
232MAXUSERS
233DFLDSIZ		opt_param.h
234MAXDSIZ		opt_param.h
235MAXSSIZ		opt_param.h
236
237# Generic SCSI options.
238CAM_MAX_HIGHPOWER	opt_cam.h
239CAMDEBUG		opt_cam.h
240CAM_DEBUG_DELAY		opt_cam.h
241CAM_DEBUG_BUS		opt_cam.h
242CAM_DEBUG_TARGET	opt_cam.h
243CAM_DEBUG_LUN		opt_cam.h
244CAM_DEBUG_FLAGS		opt_cam.h
245CAM_NEW_TRAN_CODE	opt_cam.h
246SCSI_DELAY		opt_scsi.h
247SCSI_NO_SENSE_STRINGS	opt_scsi.h
248SCSI_NO_OP_STRINGS	opt_scsi.h
249
250
251
252# Options used only in cam/scsi/scsi_cd.c
253CHANGER_MIN_BUSY_SECONDS	opt_cd.h
254CHANGER_MAX_BUSY_SECONDS	opt_cd.h
255
256# Options used only in cam/scsi/scsi_sa.c.
257SA_IO_TIMEOUT		opt_sa.h
258SA_SPACE_TIMEOUT	opt_sa.h
259SA_REWIND_TIMEOUT	opt_sa.h
260SA_ERASE_TIMEOUT	opt_sa.h
261SA_1FM_AT_EOD		opt_sa.h
262
263# Options used only in cam/scsi/scsi_pt.c
264SCSI_PT_DEFAULT_TIMEOUT	opt_pt.h
265
266# Options used only in cam/scsi/scsi_ses.c
267SES_ENABLE_PASSTHROUGH	opt_ses.h
268
269# Options used in dev/sym/ (Symbios SCSI driver).
270SYM_SETUP_LP_PROBE_MAP	opt_sym.h	#-Low Priority Probe Map (bits)
271					# Allows the ncr to take precedence
272					# 1 (1<<0) -> 810a, 860
273					# 2 (1<<1) -> 825a, 875, 885, 895
274					# 4 (1<<2) -> 895a, 896, 1510d
275SYM_SETUP_SCSI_DIFF	opt_sym.h	#-HVD support for 825a, 875, 885
276					# disabled:0 (default), enabled:1
277SYM_SETUP_PCI_PARITY	opt_sym.h	#-PCI parity checking
278					# disabled:0, enabled:1 (default)
279SYM_SETUP_MAX_LUN	opt_sym.h	#-Number of LUNs supported
280					# default:8, range:[1..64]
281
282# Options used only in pci/ncr.c
283SCSI_NCR_DEBUG		opt_ncr.h
284SCSI_NCR_MAX_SYNC	opt_ncr.h
285SCSI_NCR_MAX_WIDE	opt_ncr.h
286SCSI_NCR_MYADDR		opt_ncr.h
287
288# Options used only in dev/isp/*
289ISP_TARGET_MODE		opt_isp.h
290ISP_FW_CRASH_DUMP	opt_isp.h
291
292# Options used in the 'ata' ATA/ATAPI driver
293ATA_STATIC_ID		opt_ata.h
294ATA_NOPCI		opt_ata.h
295DEV_ATADISK		opt_ata.h
296DEV_ATAPICD		opt_ata.h
297DEV_ATAPIST		opt_ata.h
298DEV_ATAPIFD		opt_ata.h
299DEV_ATAPICAM		opt_ata.h
300ATA_DEBUG		opt_ata.h
301ATAPI_DEBUG		opt_ata.h
302ACD_DEBUG		opt_ata.h
303AST_DEBUG		opt_ata.h
304
305# Net stuff.
306ACCEPT_FILTER_DATA
307ACCEPT_FILTER_HTTP
308BOOTP			opt_bootp.h
309BOOTP_COMPAT		opt_bootp.h
310BOOTP_NFSROOT		opt_bootp.h
311BOOTP_NFSV3		opt_bootp.h
312BOOTP_WIRED_TO		opt_bootp.h
313BRIDGE			opt_bdg.h
314ETHER_II		opt_ef.h
315ETHER_8023		opt_ef.h
316ETHER_8022		opt_ef.h
317ETHER_SNAP		opt_ef.h
318MROUTING		opt_mrouting.h
319INET			opt_inet.h
320INET6			opt_inet6.h
321IPSEC			opt_ipsec.h
322IPSEC_ESP		opt_ipsec.h
323IPSEC_DEBUG		opt_ipsec.h
324FAST_IPSEC		opt_ipsec.h
325IPDIVERT
326DUMMYNET		opt_ipdn.h
327IPFILTER		opt_ipfilter.h
328IPFILTER_LOG		opt_ipfilter.h
329IPFILTER_DEFAULT_BLOCK	opt_ipfilter.h
330PFIL_HOOKS		opt_pfil_hooks.h
331IPFIREWALL		opt_ipfw.h
332IPFIREWALL_VERBOSE	opt_ipfw.h
333IPFIREWALL_VERBOSE_LIMIT	opt_ipfw.h
334IPFIREWALL_DEFAULT_TO_ACCEPT	opt_ipfw.h
335IPFIREWALL_FORWARD		opt_ipfw.h
336IPV6FIREWALL		opt_ip6fw.h
337IPV6FIREWALL_VERBOSE	opt_ip6fw.h
338IPV6FIREWALL_VERBOSE_LIMIT	opt_ip6fw.h
339IPV6FIREWALL_DEFAULT_TO_ACCEPT	opt_ip6fw.h
340IPSTEALTH
341IPX			opt_ipx.h
342IPXIP			opt_ipx.h
343IPTUNNEL		opt_ipx.h
344LIBMCHAIN
345NCP			opt_ncp.h
346NETATALK		opt_atalk.h
347NS			opt_ns.h
348PPP_BSDCOMP		opt_ppp.h
349PPP_DEFLATE		opt_ppp.h
350PPP_FILTER		opt_ppp.h
351RANDOM_IP_ID
352SLIP_IFF_OPTS		opt_slip.h
353TCPDEBUG
354TCP_DROP_SYNFIN		opt_tcp_input.h
355XBONEHACK
356
357# Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
358# Each netgraph node type can be either be compiled into the kernel
359# or loaded dynamically. To get the former, include the corresponding
360# option below. Each type has its own man page, e.g. ng_async(4).
361NETGRAPH
362NETGRAPH_ASYNC		opt_netgraph.h
363NETGRAPH_BPF		opt_netgraph.h
364NETGRAPH_BRIDGE		opt_netgraph.h
365NETGRAPH_CISCO		opt_netgraph.h
366NETGRAPH_ECHO		opt_netgraph.h
367NETGRAPH_ETHER		opt_netgraph.h
368NETGRAPH_FRAME_RELAY	opt_netgraph.h
369NETGRAPH_GIF		opt_netgraph.h
370NETGRAPH_GIF_DEMUX	opt_netgraph.h
371NETGRAPH_HOLE		opt_netgraph.h
372NETGRAPH_IFACE		opt_netgraph.h
373NETGRAPH_IP_INPUT	opt_netgraph.h
374NETGRAPH_KSOCKET	opt_netgraph.h
375NETGRAPH_LMI		opt_netgraph.h
376NETGRAPH_L2TP		opt_netgraph.h
377# MPPC compression requires proprietary files (not included)
378NETGRAPH_MPPC_COMPRESSION	opt_netgraph.h
379NETGRAPH_MPPC_ENCRYPTION	opt_netgraph.h
380NETGRAPH_ONE2MANY	opt_netgraph.h
381NETGRAPH_PPP		opt_netgraph.h
382NETGRAPH_PPPOE		opt_netgraph.h
383NETGRAPH_PPTPGRE	opt_netgraph.h
384NETGRAPH_RFC1490	opt_netgraph.h
385NETGRAPH_SOCKET		opt_netgraph.h
386NETGRAPH_SPLIT		opt_netgraph.h
387NETGRAPH_TEE		opt_netgraph.h
388NETGRAPH_TTY		opt_netgraph.h
389NETGRAPH_UI		opt_netgraph.h
390NETGRAPH_VJC		opt_netgraph.h
391
392# DRM options
393DRM_LINUX		opt_drm.h
394DRM_DEBUG		opt_drm.h
395
396
397ZERO_COPY_SOCKETS	opt_zero.h
398TI_PRIVATE_JUMBOS	opt_ti.h
399TI_JUMBO_HDRSPLIT	opt_ti.h
400
401# ATM (HARP version)
402ATM_CORE		opt_atm.h
403ATM_IP			opt_atm.h
404ATM_SIGPVC		opt_atm.h
405ATM_SPANS		opt_atm.h
406ATM_UNI			opt_atm.h
407
408# XXX Conflict: # of devices vs network protocol (Native ATM).
409# This makes "atm.h" unusable.
410NATM			opt_natm.h
411
412DPT_ALLOW_MEMIO		opt_dpt.h	# Allow PCI devices to use memory
413					# mapped I/O
414# DPT driver debug flags
415DPT_MEASURE_PERFORMANCE	opt_dpt.h
416DPT_HANDLE_TIMEOUTS	opt_dpt.h
417DPT_TIMEOUT_FACTOR	opt_dpt.h
418DPT_LOST_IRQ		opt_dpt.h
419DPT_RESET_HBA		opt_dpt.h
420
421# Adaptec ASR and DPT V/VI controller options
422ASR_MEASURE_PERFORMANCE	opt_asr.h
423
424# Misc debug flags.  Most of these should probably be replaced with
425# 'DEBUG', and then let people recompile just the interesting modules
426# with 'make CC="cc -DDEBUG"'.
427CLUSTERDEBUG		opt_debug_cluster.h
428DEBUG_1284		opt_ppb_1284.h
429VP0_DEBUG		opt_vpo.h
430LPT_DEBUG		opt_lpt.h
431PLIP_DEBUG		opt_plip.h
432LOCKF_DEBUG		opt_debug_lockf.h
433NPX_DEBUG		opt_debug_npx.h
434NETATALKDEBUG		opt_atalk.h
435SI_DEBUG		opt_debug_si.h
436
437# Fb options
438FB_DEBUG		opt_fb.h
439FB_INSTALL_CDEV		opt_fb.h
440
441# ppbus related options
442PERIPH_1284		opt_ppb_1284.h
443DONTPROBE_1284		opt_ppb_1284.h
444
445# smbus related options
446ENABLE_ALART		opt_intpm.h
447
448# These cause changes all over the kernel
449BLKDEV_IOSIZE		opt_global.h
450DEBUG			opt_global.h
451DEBUG_LOCKS		opt_global.h
452DEBUG_VFS_LOCKS		opt_global.h
453LOOKUP_SHARED		opt_global.h
454DIAGNOSTIC		opt_global.h
455ENABLE_VFS_IOOPT	opt_global.h
456INVARIANT_SUPPORT	opt_global.h
457INVARIANTS		opt_global.h
458MCLSHIFT		opt_global.h
459MSIZE			opt_global.h
460REGRESSION		opt_global.h
461RESTARTABLE_PANICS	opt_global.h
462VFS_BIO_DEBUG		opt_global.h
463
464# These are VM related options
465VM_KMEM_SIZE		opt_vm.h
466VM_KMEM_SIZE_SCALE	opt_vm.h
467VM_KMEM_SIZE_MAX	opt_vm.h
468NO_SWAPPING		opt_vm.h
469MALLOC_PROFILE		opt_vm.h
470PQ_NOOPT		opt_vmpage.h
471PQ_NORMALCACHE		opt_vmpage.h
472PQ_MEDIUMCACHE		opt_vmpage.h
473PQ_LARGECACHE		opt_vmpage.h
474PQ_HUGECACHE		opt_vmpage.h
475PQ_CACHESIZE		opt_vmpage.h
476
477# Standard SMP options
478SMP			opt_global.h
479
480# Size of the kernel message buffer
481MSGBUF_SIZE		opt_msgbuf.h
482
483# PCI related options
484PCI_ALLOW_UNSUPPORTED_IO_RANGE	opt_pci.h
485
486# NFS options
487NFS_MINATTRTIMO		opt_nfs.h
488NFS_MAXATTRTIMO		opt_nfs.h
489NFS_MINDIRATTRTIMO	opt_nfs.h
490NFS_MAXDIRATTRTIMO	opt_nfs.h
491NFS_GATHERDELAY		opt_nfs.h
492NFS_WDELAYHASHSIZ	opt_nfs.h
493NFS_DEBUG		opt_nfs.h
494
495# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
496OVERRIDE_CARD			opt_bktr.h
497OVERRIDE_TUNER			opt_bktr.h
498OVERRIDE_DBX			opt_bktr.h
499OVERRIDE_MSP			opt_bktr.h
500BROOKTREE_SYSTEM_DEFAULT	opt_bktr.h
501BROOKTREE_ALLOC_PAGES		opt_bktr.h
502BKTR_OVERRIDE_CARD		opt_bktr.h
503BKTR_OVERRIDE_TUNER		opt_bktr.h
504BKTR_OVERRIDE_DBX		opt_bktr.h
505BKTR_OVERRIDE_MSP		opt_bktr.h
506BKTR_SYSTEM_DEFAULT		opt_bktr.h
507BKTR_ALLOC_PAGES		opt_bktr.h
508BKTR_USE_PLL			opt_bktr.h
509BKTR_GPIO_ACCESS		opt_bktr.h
510BKTR_NO_MSP_RESET		opt_bktr.h
511BKTR_430_FX_MODE		opt_bktr.h
512BKTR_SIS_VIA_MODE		opt_bktr.h
513BKTR_USE_FREEBSD_SMBUS		opt_bktr.h
514
515# meteor opt_meteor.h
516METEOR_ALLOC_PAGES	opt_meteor.h
517METEOR_TEST_VIDEO	opt_meteor.h
518METEOR_SYSTEM_DEFAULT	opt_meteor.h
519METEOR_DEALLOC_PAGES	opt_meteor.h
520METEOR_DEALLOC_ABOVE	opt_meteor.h
521
522# Various mi ISA bus flags
523COM_ESP			opt_sio.h
524COM_MULTIPORT		opt_sio.h
525BREAK_TO_DEBUGGER	opt_comconsole.h
526ALT_BREAK_TO_DEBUGGER	opt_comconsole.h
527DEV_ISA			opt_isa.h
528
529# Include tweaks for running under the SimOS machine simulator.
530SIMOS			opt_simos.h
531
532# options for bus/device framework
533BUS_DEBUG		opt_bus.h
534
535# options for USB support
536UHCI_DEBUG		opt_usb.h
537OHCI_DEBUG		opt_usb.h
538USB_DEBUG		opt_usb.h
539UGEN_DEBUG		opt_usb.h
540UHID_DEBUG		opt_usb.h
541UHUB_DEBUG		opt_usb.h
542UKBD_DEBUG		opt_usb.h
543ULPT_DEBUG		opt_usb.h
544UMASS_DEBUG		opt_usb.h
545UMS_DEBUG		opt_usb.h
546URIO_DEBUG		opt_usb.h
547UKBD_DFLT_KEYMAP	opt_ukbd.h
548
549# Vinum options
550VINUMDEBUG		opt_vinum.h
551
552# Embedded system options
553INIT_PATH		opt_init_path.h
554
555ROOTDEVNAME		opt_rootdevname.h
556
557FDC_DEBUG		opt_fdc.h
558PCFCLOCK_VERBOSE	opt_pcfclock.h
559PCFCLOCK_MAX_RETRIES	opt_pcfclock.h
560
561# RAIDframe options
562RAID_AUTOCONFIG		opt_raid.h
563RAID_DEBUG		opt_raid.h
564TDFX_LINUX opt_tdfx.h
565
566KTR			opt_global.h
567KTR_ALQ			opt_ktr.h
568KTR_MASK		opt_ktr.h
569KTR_CPUMASK		opt_ktr.h
570KTR_COMPILE		opt_global.h
571KTR_ENTRIES		opt_global.h
572KTR_VERBOSE		opt_ktr.h
573MUTEX_DEBUG		opt_global.h
574WITNESS			opt_global.h
575WITNESS_DDB		opt_witness.h
576WITNESS_SKIPSPIN	opt_witness.h
577
578# options for ACPI support
579ACPI_DEBUG		opt_acpi.h
580ACPI_NO_SEMAPHORES	opt_acpi.h
581ACPI_MAX_THREADS	opt_acpi.h
582
583# options for DEVFS, see sys/fs/devfs/devfs.h
584NDEVFSINO		opt_devfs.h
585NDEVFSOVERFLOW		opt_devfs.h
586
587# various 'device presence' options.
588DEV_MCA			opt_mca.h
589DEV_BPF			opt_bpf.h
590
591# ed driver
592ED_NO_MIIBUS		opt_ed.h
593
594# wi driver
595WI_SYMBOL_FIRMWARE	opt_wi.h
596
597# Polling device handling
598DEVICE_POLLING		opt_global.h
599
600# Mutex profiling
601MUTEX_PROFILING		opt_global.h
602
603