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