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