kernel: Remove puffs(4), putter(9) and associated libs and utilities.
[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 LINT64, with suitable
6 # descriptions.  Negative options (options that make some code not
7 # compile) should be commented out; LINT64 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_LINT64 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
35
36 ADW_ALLOW_MEMIO         opt_adw.h       # Allow PCI devices to use memory
37                                         # mapped I/O
38 AMR_DEBUG               opt_amr.h
39 TWA_DEBUG               opt_twa.h
40
41 #options for ACPI support
42 ACPI_DEBUG              opt_acpi.h
43 ACPI_NO_SEMAPHORES      opt_acpi.h
44 ACPI_ENABLE_PCI         opt_acpi.h
45
46 # Miscellaneous options.
47 COMPILING_LINT  opt_lint.h
48 DDB
49 DDB_TRACE
50 DDB_UNATTENDED  opt_ddb.h
51 GDB_REMOTE_CHAT opt_ddb.h
52 KTRACE
53 LIBICONV
54 MD_NSECT        opt_md.h
55 MD_ROOT         opt_md.h
56 MD_ROOT_SIZE    opt_md.h
57 MFI_DEBUG       opt_mfi.h
58 NSWAPDEV        opt_swap.h
59 NSWBUF_MIN      opt_swap.h
60 PPS_SYNC        opt_ntp.h
61 QUOTA
62 SUIDDIR         opt_suiddir.h
63 SHMMIN          opt_sysvipc.h
64 SHMMNI          opt_sysvipc.h
65 SHMSEG          opt_sysvipc.h
66 SEMMAP          opt_sysvipc.h
67 SEMMNI          opt_sysvipc.h
68 SEMMNS          opt_sysvipc.h
69 SEMMNU          opt_sysvipc.h
70 SEMMSL          opt_sysvipc.h
71 SEMOPM          opt_sysvipc.h
72 SEMUME          opt_sysvipc.h
73 MSGMNB          opt_sysvipc.h
74 MSGMNI          opt_sysvipc.h
75 MSGSEG          opt_sysvipc.h
76 MSGSSZ          opt_sysvipc.h
77 MSGTQL          opt_sysvipc.h
78 UCONSOLE
79 ICMP_BANDLIM
80
81 # POSIX kernel options
82 _KPOSIX_PRIORITY_SCHEDULING     opt_posix.h
83
84 # Do we want the config file compiled into the kernel?
85 INCLUDE_CONFIG_FILE     opt_config.h
86
87 # Options for static file systems.  These should only be used at config
88 # time, since the corresponding lkms cannot work if there are any static
89 # dependencies.  Unusability is enforced by hiding the defines for the
90 # options in a never-included header.
91 EXT2FS          opt_dontuse.h
92 HAMMER          opt_dontuse.h
93 HAMMER2         opt_dontuse.h
94 HPFS            opt_dontuse.h
95 MFS             opt_dontuse.h
96 MSDOSFS         opt_dontuse.h
97 NTFS            opt_dontuse.h
98 NULLFS          opt_dontuse.h
99 PROCFS          opt_dontuse.h
100 SMBFS           opt_dontuse.h
101 TMPFS           opt_dontuse.h
102 UDF             opt_dontuse.h
103 AUTOFS          opt_dontuse.h
104
105 # These static filesystems has one slightly bogus static dependency in
106 # sys/platform/.../x86_64/autoconf.c.  If any of these filesystems are
107 # statically compiled into the kernel, code for mounting them as root
108 # filesystems will be enabled - but look below.  Boot-code is purposely
109 # unavailable for the LKM-based versions.
110 CD9660
111 FFS
112 NFS
113
114 # filesystems and libiconv bridge
115 CD9660_ICONV    opt_dontuse.h
116 MSDOSFS_ICONV   opt_dontuse.h
117 NTFS_ICONV      opt_dontuse.h
118
119 # SMB/CIFS requester
120 NETSMB          opt_netsmb.h
121
122 # If you are following the conditions in the copyright,
123 # you can enable soft-updates which will speed up a lot of things
124 # and make the system safer from crashes at the same time.
125 # otherwise a STUB module will be compiled in.
126 SOFTUPDATES     opt_ffs.h
127
128 # Enable fast hash lookups for large directories on UFS-based filesystems.
129 UFS_DIRHASH     opt_ufs.h
130
131 # The above static dependencies are planned removed, with a
132 # <filesystem>_ROOT option to control if it usable as root.  This list
133 # allows these options to be present in config files already (though
134 # they won't make any difference yet).
135 NFS_ROOT        opt_nfsroot.h
136
137 # Options used only in subr_param.c.
138 HZ              opt_param.h
139 MAXFILES        opt_param.h
140 NBUF            opt_param.h
141 NMBCLUSTERS     opt_param.h
142 NMBUFS          opt_param.h
143 VM_BCACHE_SIZE_MAX      opt_param.h
144 VM_SWZONE_SIZE_MAX      opt_param.h
145 MAXUSERS
146 DFLDSIZ         opt_param.h
147 MAXDSIZ         opt_param.h
148 MAXSSIZ         opt_param.h
149
150 # Generic SCSI options.
151 CAM_MAX_HIGHPOWER       opt_cam.h
152 CAMDEBUG                opt_cam.h
153 CAM_DEBUG_DELAY         opt_cam.h
154 CAM_DEBUG_BUS           opt_cam.h
155 CAM_DEBUG_TARGET        opt_cam.h
156 CAM_DEBUG_LUN           opt_cam.h
157 CAM_DEBUG_FLAGS         opt_cam.h
158 SCSI_DELAY              opt_scsi.h
159 SCSI_NO_SENSE_STRINGS   opt_scsi.h
160 SCSI_NO_OP_STRINGS      opt_scsi.h
161
162 # iSCSI options
163 ISCSI_INITIATOR_DEBUG   opt_iscsi_initiator.h
164
165 # Options used only in cam/scsi/scsi_cd.c
166 CHANGER_MIN_BUSY_SECONDS        opt_cd.h
167 CHANGER_MAX_BUSY_SECONDS        opt_cd.h
168
169 # Options used only in cam/scsi/scsi_sa.c.
170 SA_IO_TIMEOUT           opt_sa.h
171 SA_SPACE_TIMEOUT        opt_sa.h
172 SA_REWIND_TIMEOUT       opt_sa.h
173 SA_ERASE_TIMEOUT        opt_sa.h
174 SA_1FM_AT_EOD           opt_sa.h
175
176 # Options used only in cam/scsi/scsi_pt.c
177 SCSI_PT_DEFAULT_TIMEOUT opt_pt.h
178
179 # Options used only in cam/scsi/scsi_ses.c
180 SES_ENABLE_PASSTHROUGH  opt_ses.h
181
182 # Options used in dev/sym/ (Symbios SCSI driver).
183 SYM_SETUP_LP_PROBE_MAP  opt_sym.h       #-Low Priority Probe Map (bits)
184                                         # Allows the ncr to take precedence
185                                         # 1 (1<<0) -> 810a, 860
186                                         # 2 (1<<1) -> 825a, 875, 885, 895
187                                         # 4 (1<<2) -> 895a, 896, 1510d
188 SYM_SETUP_SCSI_DIFF     opt_sym.h       #-HVD support for 825a, 875, 885
189                                         # disabled:0 (default), enabled:1
190 SYM_SETUP_PCI_PARITY    opt_sym.h       #-PCI parity checking
191                                         # disabled:0, enabled:1 (default)
192 SYM_SETUP_MAX_LUN       opt_sym.h       #-Number of LUNs supported
193                                         # default:8, range:[1..64]
194
195 # Options used only in pci/ncr.c
196 SCSI_NCR_DEBUG          opt_ncr.h
197 SCSI_NCR_MAX_SYNC       opt_ncr.h
198 SCSI_NCR_MAX_WIDE       opt_ncr.h
199 SCSI_NCR_MYADDR         opt_ncr.h
200
201 # Options used only in pci/isp_pci.c
202 ISP_TARGET_MODE         opt_isp.h
203
204 # Options used in the 'nata' ATA/ATAPI driver
205 ATA_STATIC_ID           opt_ata.h
206
207 # Options used in the 'nata' chipset driver
208 ATA_NO_ACARD            opt_ata.h
209 ATA_NO_ACERLABS         opt_ata.h
210 ATA_NO_AHCI             opt_ata.h
211 ATA_NO_AMD              opt_ata.h
212 ATA_NO_CYPRESS          opt_ata.h
213 ATA_NO_CYRIX            opt_ata.h
214 ATA_NO_HIGHPOINT        opt_ata.h
215 ATA_NO_INTEL            opt_ata.h
216 ATA_NO_ITE              opt_ata.h
217 ATA_NO_JMICRON          opt_ata.h
218 ATA_NO_MARVELL          opt_ata.h
219 ATA_NO_NATIONAL         opt_ata.h
220 ATA_NO_NETCELL          opt_ata.h
221 ATA_NO_NVIDIA           opt_ata.h
222 ATA_NO_PROMISE          opt_ata.h
223 ATA_NO_SERVERWORKS      opt_ata.h
224 ATA_NO_SILICONIMAGE     opt_ata.h
225 ATA_NO_SIS              opt_ata.h
226 ATA_NO_VIA              opt_ata.h
227
228 # Net stuff.
229 # altq stuff
230 ALTQ                    opt_global.h
231 ALTQ_CBQ                opt_altq.h
232 ALTQ_RED                opt_altq.h
233 ALTQ_RIO                opt_altq.h
234 ALTQ_HFSC               opt_altq.h
235 ALTQ_PRIQ               opt_altq.h
236 ALTQ_FAIRQ              opt_altq.h
237 ALTQ_NOPCC              opt_altq.h
238 ALTQ_DEBUG              opt_altq.h
239
240 ACCEPT_FILTER_DATA
241 ACCEPT_FILTER_HTTP
242 BOOTP                   opt_bootp.h
243 BOOTP_COMPAT            opt_bootp.h
244 BOOTP_NFSROOT           opt_bootp.h
245 BOOTP_WIRED_TO          opt_bootp.h
246 CARP                    opt_carp.h
247 MROUTING                opt_mrouting.h
248 PIM                     opt_mrouting.h
249 INET                    opt_inet.h
250 INET6                   opt_inet6.h
251 IPDIVERT
252 DUMMYNET                opt_ipdn.h
253 DUMMYNET_DEBUG          opt_ipdn.h
254 IPFIREWALL              opt_ipfw.h
255 IPFIREWALL3             opt_ipfw.h
256 IPFIREWALL_DEBUG        opt_ipfw.h
257 IPFIREWALL_VERBOSE      opt_ipfw.h
258 IPFIREWALL_VERBOSE_LIMIT        opt_ipfw.h
259 IPFIREWALL_DEFAULT_TO_ACCEPT    opt_ipfw.h
260 IPV6FIREWALL            opt_ip6fw.h
261 IPV6FIREWALL_VERBOSE    opt_ip6fw.h
262 IPV6FIREWALL_VERBOSE_LIMIT      opt_ip6fw.h
263 IPV6FIREWALL_DEFAULT_TO_ACCEPT  opt_ip6fw.h
264 IPSTEALTH
265 LIBMCHAIN
266 MPLS                    opt_mpls.h
267 TCPDEBUG
268 #TCP_SIGNATURE          opt_inet.h
269 TCP_DROP_SYNFIN         opt_tcp_input.h
270 ICMPPRINTFS
271
272 XBONEHACK
273 MBUF_STRESS_TEST        opt_mbuf_stress_test.h
274
275 # (New netgraph, port still in progress)
276 #
277 # Netgraph(4). Use option NETGRAPH7 to enable the base netgraph code.
278 # Each netgraph node type can be either be compiled into the kernel
279 # or loaded dynamically. To get the former, include the corresponding
280 # option below. Each type has its own man page, e.g. ng_async(4).
281 NETGRAPH7
282 NETGRAPH7_DEBUG         opt_netgraph.h
283 NETGRAPH7_ASYNC         opt_netgraph.h
284 NETGRAPH7_ATMLLC        opt_netgraph.h
285 NETGRAPH7_ATM_ATMPIF    opt_netgraph.h
286 NETGRAPH7_BLUETOOTH             opt_netgraph.h
287 NETGRAPH7_BLUETOOTH_BT3C        opt_netgraph.h
288 NETGRAPH7_BLUETOOTH_H4          opt_netgraph.h
289 NETGRAPH7_BLUETOOTH_HCI         opt_netgraph.h
290 NETGRAPH7_BLUETOOTH_L2CAP       opt_netgraph.h
291 NETGRAPH7_BLUETOOTH_SOCKET      opt_netgraph.h
292 NETGRAPH7_BLUETOOTH_UBT         opt_netgraph.h
293 NETGRAPH7_BLUETOOTH_UBTBCMFW    opt_netgraph.h
294 NETGRAPH7_BPF           opt_netgraph.h
295 NETGRAPH7_BRIDGE        opt_netgraph.h
296 NETGRAPH7_CAR           opt_netgraph.h
297 NETGRAPH7_CISCO         opt_netgraph.h
298 NETGRAPH7_DEFLATE       opt_netgraph.h
299 NETGRAPH7_DEVICE        opt_netgraph.h
300 NETGRAPH7_ECHO          opt_netgraph.h
301 NETGRAPH7_EIFACE        opt_netgraph.h
302 NETGRAPH7_ETF           opt_netgraph.h
303 NETGRAPH7_ETHER         opt_netgraph.h
304 NETGRAPH7_FEC           opt_netgraph.h
305 NETGRAPH7_FRAME_RELAY   opt_netgraph.h
306 NETGRAPH7_GIF           opt_netgraph.h
307 NETGRAPH7_GIF_DEMUX     opt_netgraph.h
308 NETGRAPH7_HOLE          opt_netgraph.h
309 NETGRAPH7_HUB           opt_netgraph.h
310 NETGRAPH7_IFACE         opt_netgraph.h
311 NETGRAPH7_IP_INPUT      opt_netgraph.h
312 NETGRAPH7_IPFW          opt_netgraph.h
313 NETGRAPH7_KSOCKET       opt_netgraph.h
314 NETGRAPH7_L2TP          opt_netgraph.h
315 NETGRAPH7_LMI           opt_netgraph.h
316 # MPPC compression requires proprietary files (not included)
317 NETGRAPH7_MPPC_COMPRESSION      opt_netgraph.h
318 NETGRAPH7_MPPC_ENCRYPTION       opt_netgraph.h
319 NETGRAPH7_NAT           opt_netgraph.h
320 NETGRAPH7_NETFLOW       opt_netgraph.h
321 NETGRAPH7_ONE2MANY      opt_netgraph.h
322 NETGRAPH7_PPP           opt_netgraph.h
323 NETGRAPH7_PPPOE         opt_netgraph.h
324 NETGRAPH7_PPTPGRE       opt_netgraph.h
325 NETGRAPH7_PRED1         opt_netgraph.h
326 NETGRAPH7_RFC1490       opt_netgraph.h
327 NETGRAPH7_SOCKET        opt_netgraph.h
328 NETGRAPH7_SPLIT         opt_netgraph.h
329 NETGRAPH7_SPPP          opt_netgraph.h
330 NETGRAPH7_TAG           opt_netgraph.h
331 NETGRAPH7_TCPMSS        opt_netgraph.h
332 NETGRAPH7_TEE           opt_netgraph.h
333 NETGRAPH7_TTY           opt_netgraph.h
334 NETGRAPH7_UI            opt_netgraph.h
335 NETGRAPH7_VJC           opt_netgraph.h
336
337 # NgATM options
338 NGATM7_ATM              opt_netgraph.h
339 NGATM7_ATMBASE          opt_netgraph.h
340 NGATM7_SSCOP            opt_netgraph.h
341 NGATM7_SSCFU            opt_netgraph.h
342 NGATM7_UNI              opt_netgraph.h
343 NGATM7_CCATM            opt_netgraph.h
344
345 # Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
346 # Each netgraph node type can be either be compiled into the kernel
347 # or loaded dynamically. To get the former, include the corresponding
348 # option below. Each type has its own man page, e.g. ng_async(8).
349 NETGRAPH
350 NETGRAPH_ASYNC          opt_netgraph.h
351 NETGRAPH_BPF            opt_netgraph.h
352 NETGRAPH_BRIDGE         opt_netgraph.h
353 NETGRAPH_CISCO          opt_netgraph.h
354 NETGRAPH_ECHO           opt_netgraph.h
355 NETGRAPH_EIFACE         opt_netgraph.h
356 NETGRAPH_ETHER          opt_netgraph.h
357 NETGRAPH_FEC            opt_netgraph.h
358 NETGRAPH_FRAME_RELAY    opt_netgraph.h
359 NETGRAPH_HOLE           opt_netgraph.h
360 NETGRAPH_IFACE          opt_netgraph.h
361 NETGRAPH_KSOCKET        opt_netgraph.h
362 NETGRAPH_LMI            opt_netgraph.h
363 NETGRAPH_L2TP           opt_netgraph.h
364 # MPPC compression requires proprietary files (not included)
365 NETGRAPH_MPPC_COMPRESSION       opt_netgraph.h
366 NETGRAPH_MPPC_ENCRYPTION        opt_netgraph.h
367 NETGRAPH_ONE2MANY       opt_netgraph.h
368 NETGRAPH_PPP            opt_netgraph.h
369 NETGRAPH_PPPOE          opt_netgraph.h
370 NETGRAPH_PPTPGRE        opt_netgraph.h
371 NETGRAPH_RFC1490        opt_netgraph.h
372 NETGRAPH_SOCKET         opt_netgraph.h
373 NETGRAPH_TEE            opt_netgraph.h
374 NETGRAPH_TTY            opt_netgraph.h
375 NETGRAPH_UI             opt_netgraph.h
376 NETGRAPH_VJC            opt_netgraph.h
377
378 # AGP options
379 AGP_DEBUG               opt_agp.h
380
381 # DRM options
382 DRM_DEBUG               opt_drm.h
383 VGA_SWITCHEROO          opt_drm.h
384
385 # DPT driver debug flags
386 DPT_MEASURE_PERFORMANCE opt_dpt.h
387 DPT_HANDLE_TIMEOUTS     opt_dpt.h
388 DPT_TIMEOUT_FACTOR      opt_dpt.h
389 DPT_LOST_IRQ            opt_dpt.h
390 DPT_RESET_HBA           opt_dpt.h
391
392 # Misc debug flags.  Most of these should probably be replaced with
393 # 'DEBUG', and then let people recompile just the interesting modules
394 # with 'make CC="cc -DDEBUG"'.
395 CLUSTERDEBUG            opt_debug_cluster.h
396 DEBUG_1284              opt_ppb_1284.h
397 VP0_DEBUG               opt_vpo.h
398 LPT_DEBUG               opt_lpt.h
399 PLIP_DEBUG              opt_plip.h
400 LOCKF_DEBUG             opt_debug_lockf.h
401
402 # Fb options
403 FB_DEBUG                opt_fb.h
404 FB_INSTALL_CDEV         opt_fb.h
405
406 # ppbus related options
407 PERIPH_1284             opt_ppb_1284.h
408 DONTPROBE_1284          opt_ppb_1284.h
409
410 # smbus related options
411 ENABLE_ALART            opt_intpm.h
412
413 # These cause changes all over the kernel
414 NO_LWKT_SPLIT_USERPRI   opt_global.h
415 BLKDEV_IOSIZE           opt_global.h
416 DEBUG                   opt_global.h
417 DEBUG_LOCKS             opt_global.h
418 DEBUG_LOCKS_LATENCY     opt_global.h
419 DEBUG_CRIT_SECTIONS     opt_global.h
420 DIAGNOSTIC              opt_global.h
421 INVARIANTS              opt_global.h
422 VFS_BIO_DEBUG           opt_global.h
423 SOCKBUF_DEBUG           opt_global.h
424 PANIC_DEBUG             opt_global.h
425 MBUF_DEBUG              opt_global.h
426 PMAP_DEBUG              opt_global.h
427 VM_PAGE_DEBUG           opt_global.h
428 SLAB_DEBUG              opt_global.h
429
430 # Sample system/interrupt PC
431 DEBUG_PCTRACK           opt_pctrack.h
432
433 # These are VM related options
434 NO_SWAPPING             opt_vm.h
435
436 # sys/netkey
437 KEY
438
439 # Size of the kernel message buffer
440 MSGBUF_SIZE             opt_msgbuf.h
441
442 # NFS options
443 NFS_MINATTRTIMO         opt_nfs.h
444 NFS_MAXATTRTIMO         opt_nfs.h
445 NFS_MINDIRATTRTIMO      opt_nfs.h
446 NFS_MAXDIRATTRTIMO      opt_nfs.h
447 NFS_GATHERDELAY         opt_nfs.h
448 NFS_UIDHASHSIZ          opt_nfs.h
449 NFS_WDELAYHASHSIZ       opt_nfs.h
450 NFS_MUIDHASHSIZ         opt_nfs.h
451 NFS_NOSERVER            opt_nfs.h
452 NFS_DEBUG               opt_nfs.h
453
454 # MSDOSFS options
455 MSDOSFS_DEBUG           opt_msdosfs.h
456
457 # For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
458 BROOKTREE_SYSTEM_DEFAULT        opt_bktr.h
459 BROOKTREE_ALLOC_PAGES           opt_bktr.h
460 BKTR_OVERRIDE_CARD              opt_bktr.h
461 BKTR_OVERRIDE_TUNER             opt_bktr.h
462 BKTR_OVERRIDE_DBX               opt_bktr.h
463 BKTR_OVERRIDE_MSP               opt_bktr.h
464 BKTR_SYSTEM_DEFAULT             opt_bktr.h
465 BKTR_ALLOC_PAGES                opt_bktr.h
466 BKTR_USE_PLL                    opt_bktr.h
467 BKTR_GPIO_ACCESS                opt_bktr.h
468 BKTR_NO_MSP_RESET               opt_bktr.h
469 BKTR_430_FX_MODE                opt_bktr.h
470 BKTR_SIS_VIA_MODE               opt_bktr.h
471 BKTR_NEW_MSP34XX_DRIVER         opt_bktr.h
472
473 # Various mi ISA bus flags
474 COM_ESP                 opt_sio.h
475 COM_MULTIPORT           opt_sio.h
476 BREAK_TO_DEBUGGER       opt_comconsole.h
477 ALT_BREAK_TO_DEBUGGER   opt_comconsole.h
478
479 # options for bus/device framework
480 BUS_DEBUG               opt_bus.h
481
482 # options for USB support
483 OHCI_DEBUG              opt_usb.h
484 USB_DEBUG               opt_usb.h
485
486 # options for the Realtek RTL8188*U/RTL8192CU driver (urtwn)
487 URTWN_WITHOUT_UCODE     opt_urtwn.h
488
489 # Vinum options
490 VINUMDEBUG              opt_vinum.h
491
492 # Embedded system options
493 UKBD_DFLT_KEYMAP        opt_ukbd.h
494 INIT_PATH               opt_init_path.h
495
496 ROOTDEVNAME             opt_rootdevname.h
497
498 FDC_DEBUG               opt_fdc.h
499 PCFCLOCK_VERBOSE        opt_pcfclock.h
500 PCFCLOCK_MAX_RETRIES    opt_pcfclock.h
501
502 # Network device queue based polling
503 IFPOLL_ENABLE           opt_ifpoll.h
504
505 # options for ubsec driver
506 UBSEC_DEBUG             opt_ubsec.h
507 UBSEC_RNDTEST           opt_ubsec.h
508 UBSEC_NO_RNG            opt_ubsec.h
509
510 # options for hifn driver
511 HIFN_DEBUG              opt_hifn.h
512 HIFN_RNDTEST            opt_hifn.h
513 HIFN_NO_RNG             opt_hifn.h
514
515 # options for safenet driver
516 SAFE_DEBUG              opt_safe.h
517 SAFE_NO_RNG             opt_safe.h
518 SAFE_RNDTEST            opt_safe.h
519
520 # KTR options
521 KTR                             opt_global.h
522 KTR_ENTRIES                     opt_global.h
523 KTR_ALL                         opt_ktr.h
524 KTR_ACPI_EC                     opt_ktr.h
525 KTR_CTXSW                       opt_ktr.h
526 KTR_DMCRYPT                     opt_ktr.h
527 KTR_ETHERNET                    opt_ktr.h
528 KTR_HAMMER                      opt_ktr.h
529 KTR_IFQ                         opt_ktr.h
530 KTR_IF_BGE                      opt_ktr.h
531 KTR_IF_EM                       opt_ktr.h
532 KTR_IF_EMX                      opt_ktr.h
533 KTR_IF_START                    opt_ktr.h
534 KTR_IPIQ                        opt_ktr.h
535 KTR_KERNENTRY                   opt_ktr.h
536 KTR_LAPIC                       opt_ktr.h
537 KTR_MEMORY                      opt_ktr.h
538 KTR_SERIALIZER                  opt_ktr.h
539 KTR_SPIN_CONTENTION             opt_ktr.h
540 KTR_TESTLOG                     opt_ktr.h
541 KTR_TOKENS                      opt_ktr.h
542 KTR_TSLEEP                      opt_ktr.h
543 KTR_USCHED_BSD4                 opt_ktr.h
544 KTR_USCHED_DFLY                 opt_ktr.h
545 KTR_VERBOSE                     opt_ktr.h
546 KTR_IF_POLL                     opt_ktr.h
547 KTR_UDP                         opt_ktr.h
548 KTR_SOWAKEUP                    opt_ktr.h
549
550 # NTFS options
551 NTFS_DEBUG                      opt_ntfs.h
552
553 # options for the Atheros driver
554 ATH_DEBUG               opt_ath.h
555 #ATH_DEBUG_ALQ          opt_ath.h
556 ATH_DIAGAPI             opt_ath.h
557 #ATH_EEPROM_FIRMWARE    opt_ath.h
558 #ATH_ENABLE_11N         opt_ath.h
559 ATH_ENABLE_DFS          opt_ath.h
560 #ATH_ENABLE_RADIOTAP_VENDOR_EXT opt_ath.h
561 ATH_KTR_INTR_DEBUG      opt_ath.h
562 #ATH_TX99_DIAG          opt_ath.h
563
564 # ...and its HAL
565 AH_AR5416_INTERRUPT_MITIGATION opt_ah.h
566 AH_ASSERT               opt_ah.h
567 AH_DEBUG                opt_ah.h
568 #AH_DEBUG_ALQ           opt_ah.h
569 #AH_DEBUG_COUNTRY       opt_ah.h
570 AH_INTERRUPT_DEBUGGING  opt_ah.h
571 AH_MAXCHAN              opt_ah.h
572 AH_NEED_DESC_SWAP       opt_ah.h
573 AH_PRIVATE_DIAG         opt_ah.h
574 AH_RXCFG_SDMAMW_4BYTES  opt_ah.h
575 AH_SUPPORT_AR5416       opt_ah.h
576 AH_SUPPORT_AR9130       opt_ah.h
577 AH_SUPPORT_AR9330       opt_ah.h
578 AH_SUPPORT_AR9340       opt_ah.h
579 AH_USE_INIPDGAIN        opt_ah.h
580 #AH_WRITE_EEPROM                opt_ah.h
581 #AH_WRITE_REGDOMAIN     opt_ah.h
582
583 # bce driver
584 BCE_RSS_DEBUG           opt_bce.h
585 BCE_TSS_DEBUG           opt_bce.h
586
587 # bnx driver
588 BNX_RSS_DEBUG           opt_bnx.h
589 BNX_TSO_DEBUG           opt_bnx.h
590 BNX_TSS_DEBUG           opt_bnx.h
591
592 # bwn driver
593 BWN_DEBUG               opt_bwn.h
594 BWN_RXRING_SLOTS        opt_bwn.h
595 BWN_TXRING_SLOTS        opt_bwn.h
596
597 # siba_bwn driver
598 SIBA_DEBUG              opt_siba.h
599
600 # emx driver
601 EMX_RSS_DEBUG           opt_emx.h
602 EMX_TSO_DEBUG           opt_emx.h
603 EMX_TSS_DEBUG           opt_emx.h
604
605 # jme driver
606 JME_RSS_DEBUG           opt_jme.h
607
608 # igb driver
609 IGB_RSS_DEBUG           opt_igb.h
610 IGB_TSS_DEBUG           opt_igb.h
611 IGB_MSIX_DEBUG          opt_igb.h
612
613 # ix driver
614 IX_RSS_DEBUG            opt_ix.h
615
616 # Options for the Intel 802.11ac wireless driver
617 IWM_DEBUG               opt_iwm.h
618
619 # Options for the Intel 802.11n wireless driver
620 IWN_DEBUG               opt_iwn.h
621
622 # Options for the Intel 3945ABG wireless driver
623 WPI_DEBUG               opt_wpi.h
624
625 # dcons options
626 DCONS_BUF_SIZE          opt_dcons.h
627 DCONS_POLL_HZ           opt_dcons.h
628 DCONS_FORCE_CONSOLE     opt_dcons.h
629 DCONS_FORCE_GDB         opt_dcons.h
630
631 # deprecated drivers and options
632 I_WANT_DEPRECATED_STUFF opt_deprecated.h
633
634 # Receive Side Scaling (now basecode)
635 RSS_DEBUG               opt_rss.h
636
637 # Panic settings
638 WDOG_DISABLE_ON_PANIC   opt_panic.h
639 ERROR_LED_ON_PANIC      opt_panic.h
640
641 # 802.11 support layer
642 IEEE80211_DEBUG         opt_wlan.h
643 IEEE80211_DEBUG_REFCNT  opt_wlan.h
644 IEEE80211_SUPPORT_MESH  opt_wlan.h
645 IEEE80211_SUPPORT_SUPERG        opt_wlan.h
646 IEEE80211_SUPPORT_TDMA  opt_wlan.h
647
648 # 802.11 TDMA support
649 TDMA_SLOTLEN_DEFAULT    opt_tdma.h
650 TDMA_SLOTCNT_DEFAULT    opt_tdma.h
651 TDMA_BINTVAL_DEFAULT    opt_tdma.h
652 TDMA_TXRATE_11B_DEFAULT opt_tdma.h
653 TDMA_TXRATE_11G_DEFAULT opt_tdma.h
654 TDMA_TXRATE_11A_DEFAULT opt_tdma.h
655 TDMA_TXRATE_TURBO_DEFAULT       opt_tdma.h
656 TDMA_TXRATE_HALF_DEFAULT        opt_tdma.h
657 TDMA_TXRATE_QUARTER_DEFAULT     opt_tdma.h
658 TDMA_TXRATE_11NA_DEFAULT        opt_tdma.h
659 TDMA_TXRATE_11NG_DEFAULT        opt_tdma.h
660
661 # Sound options
662 SND_DEBUG               opt_snd.h
663 SND_DIAGNOSTIC          opt_snd.h
664 SND_FEEDER_MULTIFORMAT  opt_snd.h
665 SND_FEEDER_FULL_MULTIFORMAT     opt_snd.h
666 SND_FEEDER_RATE_HP      opt_snd.h
667 SND_OLDSTEREO           opt_snd.h
668
669 PANIC_REBOOT_WAIT_TIME  opt_panic.h
670
671 # Evdev protocol support
672 EVDEV_SUPPORT           opt_evdev.h
673 EVDEV_DEBUG             opt_evdev.h
674
675 # Sysctl debugging
676 SYSCTL_DEBUG            opt_sysctl.h
677
678 # Obsolete options (will be removed in the future)
679 #
680 FAST_IPSEC              opt_dontuse.h
681 IPSEC                   opt_dontuse.h
682 IPSEC_DEBUG             opt_dontuse.h
683 IPSEC_ESP               opt_dontuse.h
684 IPSEC_FILTERGIF         opt_dontuse.h