xref: /dragonfly/sys/conf/options (revision 5dfd06ac)
1# $FreeBSD: src/sys/conf/options,v 1.191.2.53 2003/06/04 17:56:58 sam Exp $
2# $DragonFly: src/sys/conf/options,v 1.62 2007/01/30 15:53:30 swildner Exp $
3#
4#        On the handling of kernel options
5#
6# All kernel options should be listed in LINT, with suitable
7# descriptions.  Negative options (options that make some code not
8# compile) should be commented out; LINT should compile as much code
9# as possible.  Try to structure option-using code so that a single
10# option only switch code on, or only switch code off, to make it
11# possible to have a full compile-test.  If necessary, you can include
12# "opt_lint.h" and check for COMPILING_LINT to get maximum code
13# coverage.
14#
15# All new options shall also be listed in either "conf/options" or
16# "<platform>/conf/options.<platform>".  Options that affect a single
17# source-file <xxx>.[c|s] should be directed into "opt_<xxx>.h", while
18# options that affect multiple files should either go in
19# "opt_global.h" if this is a kernel-wide option (used just about
20# everywhere), or in "opt_<option-name-in-lower-case>.h" if it affect
21# only some files.  Note that the effect of listing only an option
22# without a header-file-name in conf/options (and cousins) is that the
23# last convention is followed.
24#
25# This handling scheme is not yet fully implemented.
26#
27#
28# Format of this file:
29# Option name	filename
30#
31# If filename is missing, the default is
32# opt_<name-of-option-in-lower-case>.h
33
34# Adaptec Array Controller driver options
35AAC_DEBUG		opt_aac.h	# Debugging levels:
36					# 0 - quiet, only emit warnings
37					# 1 - noisy, emit major function
38					#     points and things done
39					# 2 - extremely noisy, emit trace
40					#     items in loops, etc.
41
42# Adaptec aic7xxx SCSI controller options
43AHC_ALLOW_MEMIO		opt_aic7xxx.h	# Allow PCI devices to use memory
44					# mapped I/O
45
46AHC_TMODE_ENABLE	opt_aic7xxx.h	# Bitmap of units to enable
47					# targetmode operations.
48
49AHC_DUMP_EEPROM		opt_aic7xxx.h	# Dump the contents of our
50					# configuration prom.
51
52AHC_DEBUG		opt_aic7xxx.h	# Compile in Aic7xxx Debugging code.
53
54AHC_DEBUG_OPTS		opt_aic7xxx.h	# Aic7xxx driver debugging options.
55					# See sys/dev/aic7xxx/aic7xxx.h
56
57AHC_REG_PRETTY_PRINT	opt_aic7xxx.h	# Print register bitfields in debug
58					# output.  Adds ~15k to driver.
59
60# Adaptec aic79xx SCSI controller options
61AHD_DEBUG		opt_aic79xx.h	# Compile in Aic79xx Debugging code.
62
63AHD_DEBUG_OPTS		opt_aic79xx.h	# Aic79xx driver debugging options.
64					# See sys/dev/aic7xxx/aic79xx.h
65
66AHD_TMODE_ENABLE	opt_aic79xx.h	# Bitmap of units to enable
67					# targetmode operations.
68
69AHD_REG_PRETTY_PRINT	opt_aic79xx.h	# Print register bitfields in debug
70					# output.  Adds ~15k to driver.
71
72ADW_ALLOW_MEMIO		opt_adw.h	# Allow PCI devices to use memory
73					# mapped I/O
74TWA_DEBUG		opt_twa.h
75TWA_FLASH_FIRMWARE	opt_twa.h
76
77#options for ACPI support
78ACPI_DEBUG		opt_acpi.h
79ACPI_NO_SEMAPHORES	opt_acpi.h
80ACPI_QUIRK_VMWARE	opt_acpi.h
81
82# Miscellaneous options.
83COMPAT_DF12	opt_compatdf12.h
84COMPAT_43	opt_compat.h
85COMPAT_SUNOS	opt_compat.h
86COMPILING_LINT	opt_lint.h
87CY_PCI_FASTINTR
88DDB
89DDB_TRACE
90DDB_UNATTENDED	opt_ddb.h
91GDB_REMOTE_CHAT	opt_ddb.h
92HW_WDOG
93KTRACE
94LIBICONV
95MD_NSECT	opt_md.h
96MD_ROOT		opt_md.h
97MD_ROOT_SIZE	opt_md.h
98NSWAPDEV	opt_swap.h
99NSWBUF_MIN	opt_swap.h
100PPS_SYNC	opt_ntp.h
101QUOTA
102SUIDDIR		opt_suiddir.h
103SYSVMSG		opt_sysvipc.h
104SYSVSEM		opt_sysvipc.h
105SYSVSHM		opt_sysvipc.h
106SHMALL		opt_sysvipc.h
107SHMMAX		opt_sysvipc.h
108SHMMAXPGS	opt_sysvipc.h
109SHMMIN		opt_sysvipc.h
110SHMMNI		opt_sysvipc.h
111SHMSEG		opt_sysvipc.h
112SEMMAP		opt_sysvipc.h
113SEMMNI		opt_sysvipc.h
114SEMMNS		opt_sysvipc.h
115SEMMNU		opt_sysvipc.h
116SEMMSL		opt_sysvipc.h
117SEMOPM		opt_sysvipc.h
118SEMUME		opt_sysvipc.h
119MSGMNB		opt_sysvipc.h
120MSGMNI		opt_sysvipc.h
121MSGSEG		opt_sysvipc.h
122MSGSSZ		opt_sysvipc.h
123MSGTQL		opt_sysvipc.h
124UCONSOLE
125ICMP_BANDLIM
126VFS_AIO
127DIRECTIO	opt_directio.h
128
129# POSIX kernel options
130P1003_1B			opt_posix.h
131_KPOSIX_PRIORITY_SCHEDULING	opt_posix.h
132_KPOSIX_VERSION			opt_posix.h
133
134# Do we want the config file compiled into the kernel?
135INCLUDE_CONFIG_FILE	opt_config.h
136
137# Options for static file systems.  These should only be used at config
138# time, since the corresponding lkms cannot work if there are any static
139# dependencies.  Unusability is enforced by hiding the defines for the
140# options in a never-included header.
141EXT2FS		opt_dontuse.h
142FDESC		opt_dontuse.h
143MFS		opt_dontuse.h
144MSDOSFS		opt_dontuse.h
145NULLFS		opt_dontuse.h
146PORTAL		opt_dontuse.h
147PROCFS		opt_dontuse.h
148UDF		opt_dontuse.h
149NTFS		opt_dontuse.h
150
151# These static filesystems has one slightly bogus static dependency in
152# sys/platform/.../i386/autoconf.c.  If any of these filesystems are
153# statically compiled into the kernel, code for mounting them as root
154# filesystems will be enabled - but look below.  Boot-code is purposely
155# unavailable for the LKM-based versions.
156CD9660
157FFS
158NFS
159NWFS
160
161# If you are following the conditions in the copyright,
162# you can enable soft-updates which will speed up a lot of thigs
163# and make the system safer from crashes at the same time.
164# otherwise a STUB module will be compiled in.
165SOFTUPDATES	opt_ffs.h
166
167# Enable fast hash lookups for large directories on UFS-based filesystems.
168UFS_DIRHASH	opt_ufs.h
169
170# The above static dependencies are planned removed, with a
171# <filesystem>_ROOT option to control if it usable as root.  This list
172# allows these options to be present in config files already (though
173# they won't make any difference yet).
174FFS_ROOT	opt_ffs.h
175NFS_ROOT	opt_nfsroot.h
176
177# The union static file system has bogus static dependencies, so it isn't
178# hidden yet.
179UNION
180
181# Options used only in subr_param.c.
182HZ		opt_param.h
183MAXFILES	opt_param.h
184NBUF		opt_param.h
185NMBCLUSTERS	opt_param.h
186NMBUFS		opt_param.h
187NSFBUFS		opt_param.h
188VM_BCACHE_SIZE_MAX	opt_param.h
189VM_SWZONE_SIZE_MAX	opt_param.h
190MAXUSERS
191DFLDSIZ		opt_param.h
192MAXDSIZ		opt_param.h
193MAXSSIZ		opt_param.h
194
195# Generic SCSI options.
196CAM_MAX_HIGHPOWER	opt_cam.h
197CAMDEBUG		opt_cam.h
198CAM_DEBUG_DELAY		opt_cam.h
199CAM_DEBUG_BUS		opt_cam.h
200CAM_DEBUG_TARGET	opt_cam.h
201CAM_DEBUG_LUN		opt_cam.h
202CAM_DEBUG_FLAGS		opt_cam.h
203SCSI_DELAY		opt_scsi.h
204SCSI_NO_SENSE_STRINGS	opt_scsi.h
205SCSI_NO_OP_STRINGS	opt_scsi.h
206
207# Options used only in cam/scsi/scsi_cd.c
208CHANGER_MIN_BUSY_SECONDS	opt_cd.h
209CHANGER_MAX_BUSY_SECONDS	opt_cd.h
210
211# Options used only in cam/scsi/scsi_sa.c.
212SA_IO_TIMEOUT		opt_sa.h
213SA_SPACE_TIMEOUT	opt_sa.h
214SA_REWIND_TIMEOUT	opt_sa.h
215SA_ERASE_TIMEOUT	opt_sa.h
216SA_1FM_AT_EOD		opt_sa.h
217
218# Options used only in cam/scsi/scsi_pt.c
219SCSI_PT_DEFAULT_TIMEOUT	opt_pt.h
220
221# Options used only in cam/scsi/scsi_ses.c
222SES_ENABLE_PASSTHROUGH	opt_ses.h
223
224# Options used in dev/sym/ (Symbios SCSI driver).
225SYM_SETUP_LP_PROBE_MAP	opt_sym.h	#-Low Priority Probe Map (bits)
226					# Allows the ncr to take precedence
227					# 1 (1<<0) -> 810a, 860
228					# 2 (1<<1) -> 825a, 875, 885, 895
229					# 4 (1<<2) -> 895a, 896, 1510d
230SYM_SETUP_SCSI_DIFF	opt_sym.h	#-HVD support for 825a, 875, 885
231					# disabled:0 (default), enabled:1
232SYM_SETUP_PCI_PARITY	opt_sym.h	#-PCI parity checking
233					# disabled:0, enabled:1 (default)
234SYM_SETUP_MAX_LUN	opt_sym.h	#-Number of LUNs supported
235					# default:8, range:[1..64]
236
237# Options used only in pci/ncr.c
238SCSI_NCR_DEBUG		opt_ncr.h
239SCSI_NCR_MAX_SYNC	opt_ncr.h
240SCSI_NCR_MAX_WIDE	opt_ncr.h
241SCSI_NCR_MYADDR		opt_ncr.h
242
243# Options used only in pci/isp_pci.c
244ISP_TARGET_MODE		opt_isp.h
245
246# Options used in the 'ata' ATA/ATAPI driver
247ATA_STATIC_ID		opt_ata.h
248
249# Net stuff.
250# altq stuff
251ALTQ			opt_global.h
252ALTQ_CBQ		opt_altq.h
253ALTQ_RED		opt_altq.h
254ALTQ_RIO		opt_altq.h
255ALTQ_HFSC		opt_altq.h
256ALTQ_PRIQ		opt_altq.h
257ALTQ_NOPCC		opt_altq.h
258ALTQ_DEBUG		opt_altq.h
259
260ACCEPT_FILTER_DATA
261ACCEPT_FILTER_HTTP
262BOOTP			opt_bootp.h
263BOOTP_COMPAT		opt_bootp.h
264BOOTP_NFSROOT		opt_bootp.h
265BOOTP_NFSV3		opt_bootp.h
266BOOTP_WIRED_TO		opt_bootp.h
267ETHER_II		opt_ef.h
268ETHER_8023		opt_ef.h
269ETHER_8022		opt_ef.h
270ETHER_SNAP		opt_ef.h
271MROUTING		opt_mrouting.h
272PIM			opt_mrouting.h
273INET			opt_inet.h
274INET6			opt_inet6.h
275IPSEC			opt_ipsec.h
276IPSEC_ESP		opt_ipsec.h
277IPSEC_DEBUG		opt_ipsec.h
278IPSEC_FILTERGIF		opt_ipsec.h
279FAST_IPSEC		opt_ipsec.h
280IPDIVERT
281DUMMYNET		opt_ipdn.h
282IPFILTER		opt_ipfilter.h
283IPFILTER_LOG		opt_ipfilter.h
284IPFILTER_DEFAULT_BLOCK	opt_ipfilter.h
285IPFIREWALL		opt_ipfw.h
286IPFW2			opt_ipfw.h
287IPFIREWALL_VERBOSE	opt_ipfw.h
288IPFIREWALL_VERBOSE_LIMIT	opt_ipfw.h
289IPFIREWALL_DEFAULT_TO_ACCEPT	opt_ipfw.h
290IPFIREWALL_FORWARD		opt_ipfw.h
291IPV6FIREWALL		opt_ip6fw.h
292IPV6FIREWALL_VERBOSE	opt_ip6fw.h
293IPV6FIREWALL_VERBOSE_LIMIT	opt_ip6fw.h
294IPV6FIREWALL_DEFAULT_TO_ACCEPT	opt_ip6fw.h
295IPSTEALTH
296IPX			opt_ipx.h
297IPXIP			opt_ipx.h
298IPTUNNEL		opt_ipx.h
299LIBMCHAIN
300NCP			opt_ncp.h
301NETATALK		opt_atalk.h
302NS			opt_ns.h
303PPP_BSDCOMP		opt_ppp.h
304PPP_DEFLATE		opt_ppp.h
305PPP_FILTER		opt_ppp.h
306SLIP_IFF_OPTS		opt_slip.h
307TCPDEBUG
308TCP_DROP_SYNFIN		opt_tcp_input.h
309
310XBONEHACK
311MBUF_STRESS_TEST	opt_mbuf_stress_test.h
312
313# Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
314# Each netgraph node type can be either be compiled into the kernel
315# or loaded dynamically. To get the former, include the corresponding
316# option below. Each type has its own man page, e.g. ng_async(8).
317NETGRAPH
318NETGRAPH_ASYNC		opt_netgraph.h
319NETGRAPH_BPF		opt_netgraph.h
320NETGRAPH_BRIDGE		opt_netgraph.h
321NETGRAPH_CISCO		opt_netgraph.h
322NETGRAPH_ECHO		opt_netgraph.h
323NETGRAPH_ETHER		opt_netgraph.h
324NETGRAPH_FRAME_RELAY	opt_netgraph.h
325NETGRAPH_HOLE		opt_netgraph.h
326NETGRAPH_IFACE		opt_netgraph.h
327NETGRAPH_KSOCKET	opt_netgraph.h
328NETGRAPH_LMI		opt_netgraph.h
329NETGRAPH_L2TP		opt_netgraph.h
330# MPPC compression requires proprietary files (not included)
331NETGRAPH_MPPC_COMPRESSION	opt_netgraph.h
332NETGRAPH_MPPC_ENCRYPTION	opt_netgraph.h
333NETGRAPH_ONE2MANY	opt_netgraph.h
334NETGRAPH_PPP		opt_netgraph.h
335NETGRAPH_PPPOE		opt_netgraph.h
336NETGRAPH_PPTPGRE	opt_netgraph.h
337NETGRAPH_RFC1490	opt_netgraph.h
338NETGRAPH_SOCKET		opt_netgraph.h
339NETGRAPH_TEE		opt_netgraph.h
340NETGRAPH_TTY		opt_netgraph.h
341NETGRAPH_UI		opt_netgraph.h
342NETGRAPH_VJC		opt_netgraph.h
343
344# DRM options
345DRM_DEBUG		opt_drm.h
346DRM_LINUX		opt_drm.h
347
348# ATM (HARP version)
349ATM_CORE		opt_atm.h
350ATM_IP			opt_atm.h
351ATM_SIGPVC		opt_atm.h
352ATM_SPANS		opt_atm.h
353ATM_UNI			opt_atm.h
354
355# XXX Conflict: # of devices vs network protocol (Native ATM).
356# This makes "atm.h" unusable.
357NATM			opt_natm.h
358
359# DPT driver debug flags
360DPT_MEASURE_PERFORMANCE	opt_dpt.h
361DPT_HANDLE_TIMEOUTS	opt_dpt.h
362DPT_TIMEOUT_FACTOR	opt_dpt.h
363DPT_LOST_IRQ		opt_dpt.h
364DPT_RESET_HBA		opt_dpt.h
365
366# Misc debug flags.  Most of these should probably be replaced with
367# 'DEBUG', and then let people recompile just the interesting modules
368# with 'make CC="cc -DDEBUG"'.
369CLUSTERDEBUG		opt_debug_cluster.h
370DEBUG_1284		opt_ppb_1284.h
371VP0_DEBUG		opt_vpo.h
372LPT_DEBUG		opt_lpt.h
373PLIP_DEBUG		opt_plip.h
374LOCKF_DEBUG		opt_debug_lockf.h
375LOUTB			opt_debug_outb.h
376NPX_DEBUG		opt_debug_npx.h
377NETATALKDEBUG		opt_atalk.h
378SI_DEBUG		opt_debug_si.h
379
380# Fb options
381FB_DEBUG		opt_fb.h
382FB_INSTALL_CDEV		opt_fb.h
383
384# ppbus related options
385PERIPH_1284		opt_ppb_1284.h
386DONTPROBE_1284		opt_ppb_1284.h
387
388# smbus related options
389ENABLE_ALART		opt_intpm.h
390
391# These cause changes all over the kernel
392BLKDEV_IOSIZE		opt_global.h
393DEBUG			opt_global.h
394DEBUG_LOCKS		opt_global.h
395DEBUG_CRIT_SECTIONS	opt_global.h
396DIAGNOSTIC		opt_global.h
397INVARIANTS		opt_global.h
398SIMPLELOCK_DEBUG	opt_global.h
399VFS_BIO_DEBUG		opt_global.h
400DEBUG_INTERRUPTS	opt_global.h
401SOCKBUF_DEBUG		opt_global.h
402PANIC_DEBUG		opt_global.h
403
404# Sample system/interrupt PC
405DEBUG_PCTRACK		opt_pctrack.h
406
407# These are VM related options
408NO_SWAPPING		opt_vm.h
409PQ_CACHESIZE		opt_vmpage.h
410
411# Standard SMP options
412SMP			opt_global.h
413
414# sys/netkey
415KEY
416
417# Size of the kernel message buffer
418MSGBUF_SIZE		opt_msgbuf.h
419
420# PCI related options
421PCI_QUIET		opt_pci.h
422PCI_ENABLE_IO_MODES	opt_pci.h
423PCI_MAP_FIXUP		opt_pci.h
424COMPAT_OLDPCI
425
426# NFS options
427NFS_MINATTRTIMO		opt_nfs.h
428NFS_MAXATTRTIMO		opt_nfs.h
429NFS_MINDIRATTRTIMO	opt_nfs.h
430NFS_MAXDIRATTRTIMO	opt_nfs.h
431NFS_GATHERDELAY		opt_nfs.h
432NFS_UIDHASHSIZ		opt_nfs.h
433NFS_WDELAYHASHSIZ	opt_nfs.h
434NFS_MUIDHASHSIZ		opt_nfs.h
435NFS_NOSERVER		opt_nfs.h
436NFS_DEBUG		opt_nfs.h
437
438# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
439BROOKTREE_SYSTEM_DEFAULT	opt_bktr.h
440BROOKTREE_ALLOC_PAGES		opt_bktr.h
441BKTR_OVERRIDE_CARD		opt_bktr.h
442BKTR_OVERRIDE_TUNER		opt_bktr.h
443BKTR_OVERRIDE_DBX		opt_bktr.h
444BKTR_OVERRIDE_MSP		opt_bktr.h
445BKTR_SYSTEM_DEFAULT		opt_bktr.h
446BKTR_ALLOC_PAGES		opt_bktr.h
447BKTR_USE_PLL			opt_bktr.h
448BKTR_GPIO_ACCESS		opt_bktr.h
449BKTR_NO_MSP_RESET		opt_bktr.h
450BKTR_430_FX_MODE		opt_bktr.h
451BKTR_SIS_VIA_MODE		opt_bktr.h
452BKTR_NEW_MSP34XX_DRIVER		opt_bktr.h
453
454# meteor opt_meteor.h
455METEOR_ALLOC_PAGES	opt_meteor.h
456METEOR_TEST_VIDEO	opt_meteor.h
457METEOR_SYSTEM_DEFAULT	opt_meteor.h
458METEOR_DEALLOC_PAGES	opt_meteor.h
459METEOR_DEALLOC_ABOVE	opt_meteor.h
460
461# Various mi ISA bus flags
462COMPAT_OLDISA		opt_compat_oldisa.h
463COM_ESP			opt_sio.h
464COM_MULTIPORT		opt_sio.h
465BREAK_TO_DEBUGGER	opt_comconsole.h
466ALT_BREAK_TO_DEBUGGER	opt_comconsole.h
467
468# Include tweaks for running under the SimOS machine simulator.
469SIMOS			opt_simos.h
470
471# options for bus/device framework
472BUS_DEBUG		opt_bus.h
473DEVICE_SYSCTLS		opt_bus.h
474
475# options for USB support
476OHCI_DEBUG		opt_usb.h
477USB_DEBUG		opt_usb.h
478
479# Vinum options
480VINUMDEBUG		opt_vinum.h
481
482# Embedded system options
483UKBD_DFLT_KEYMAP	opt_ukbd.h
484INIT_PATH		opt_init_path.h
485
486ROOTDEVNAME		opt_rootdevname.h
487
488FDC_DEBUG		opt_fdc.h
489PCFCLOCK_VERBOSE	opt_pcfclock.h
490PCFCLOCK_MAX_RETRIES	opt_pcfclock.h
491
492# Polling device handling
493DEVICE_POLLING		opt_polling.h
494
495# options for ubsec driver
496UBSEC_DEBUG		opt_ubsec.h
497UBSEC_RNDTEST		opt_ubsec.h
498UBSEC_NO_RNG		opt_ubsec.h
499
500# options for hifn driver
501HIFN_DEBUG		opt_hifn.h
502HIFN_RNDTEST		opt_hifn.h
503HIFN_NO_RNG		opt_hifn.h
504
505# KTR options
506KTR				opt_global.h
507KTR_ALL				opt_ktr.h
508KTR_TOKENS			opt_ktr.h
509KTR_MEMORY			opt_ktr.h
510KTR_USB_MEMORY			opt_ktr.h
511KTR_IPIQ			opt_ktr.h
512KTR_MSGPORT			opt_ktr.h
513KTR_ENTRIES			opt_global.h
514KTR_VERBOSE			opt_ktr.h
515KTR_GIANT_CONTENTION		opt_ktr.h
516KTR_SPIN_CONTENTION		opt_ktr.h
517
518# ed driver
519ED_NO_MIIBUS		opt_ed.h
520
521# wi driver
522WI_SYMBOL_FIRMWARE	opt_wi.h
523
524# dcons options
525DCONS_BUF_SIZE		opt_dcons.h
526DCONS_POLL_HZ		opt_dcons.h
527DCONS_FORCE_CONSOLE	opt_dcons.h
528DCONS_FORCE_GDB		opt_dcons.h
529
530# deprecated drivers and options
531I_WANT_DEPRECATED_STUFF	opt_deprecated.h
532
533# SCTP
534SCTP			opt_sctp.h
535SCTP_DEBUG		opt_sctp.h
536SCTP_USE_ADLER32	opt_sctp.h
537SCTP_HIGH_SPEED		opt_sctp.h
538SCTP_STAT_LOGGING	opt_sctp.h
539SCTP_CWND_LOGGING	opt_sctp.h
540SCTP_BLK_LOGGING	opt_sctp.h
541SCTP_STR_LOGGING	opt_sctp.h
542SCTP_FR_LOGGING		opt_sctp.h
543SCTP_MAP_LOGGING	opt_sctp.h
544