Deleted Added
full compact
options (52904) options (52918)
1# $FreeBSD: head/sys/conf/options 52904 1999-11-05 14:41:39Z shin $
1# $FreeBSD: head/sys/conf/options 52918 1999-11-06 16:50:21Z sos $
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# "<machine>/conf/options.<machine>". 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 aic7xxx SCSI controller options
34AHC_ALLOW_MEMIO opt_aic7xxx.h # Allow PCI devices to use memory
35 # mapped I/O
36
37AHC_TMODE_ENABLE opt_aic7xxx.h # Bitmap of units to enable
38 # targetmode operations.
39
40AHC_DUMP_EEPROM opt_aic7xxx.h # Dump the contents of our
41 # configuration prom.
42
43ADW_ALLOW_MEMIO opt_adw.h # Allow PCI devices to use memory
44 # mapped I/O
45
46# Miscellaneous options.
47COMPAT_43 opt_compat.h
48COMPAT_SUNOS opt_compat.h
49COMPILING_LINT opt_lint.h
50CY_PCI_FASTINTR
51DDB
52DDB_UNATTENDED opt_ddb.h
53GDB_REMOTE_CHAT opt_ddb.h
54DEVFS
55HW_WDOG
56KTRACE
57MD5
58MFS_ROOT opt_mfs.h
59MFS_ROOT_SIZE opt_mfs.h
60NTIMECOUNTER opt_ntp.h
61NSWAPDEV opt_swap.h
62PPS_SYNC opt_ntp.h
63QUOTA
64SPX_HACK
65SUIDDIR opt_suiddir.h
66SYSVMSG opt_sysvipc.h
67SYSVSEM opt_sysvipc.h
68SYSVSHM opt_sysvipc.h
69UCONSOLE
70ICMP_BANDLIM
71
72# POSIX kernel options
73P1003_1B opt_posix.h
74_KPOSIX_PRIORITY_SCHEDULING opt_posix.h
75_KPOSIX_VERSION opt_posix.h
76
77# Do we want the config file compiled into the kernel?
78INCLUDE_CONFIG_FILE opt_config.h
79
80# Options for static file systems. These should only be used at config
81# time, since the corresponding lkms cannot work if there are any static
82# dependencies. Unusability is enforced by hiding the defines for the
83# options in a never-included header.
84EXT2FS opt_dontuse.h
85FDESC opt_dontuse.h
86KERNFS opt_dontuse.h
87MFS opt_dontuse.h
88MSDOSFS opt_dontuse.h
89NULLFS opt_dontuse.h
90PORTAL opt_dontuse.h
91PROCFS opt_dontuse.h
92UMAPFS opt_dontuse.h
93NTFS opt_dontuse.h
94
95# These static filesystems has one slightly bogus static dependency in
96# sys/i386/i386/autoconf.c. If any of these filesystems are
97# statically compiled into the kernel, code for mounting them as root
98# filesystems will be enabled - but look below. Boot-code is purposely
99# unavailable for the LKM-based versions.
100CODA
101CD9660
102FFS
103NFS
104NWFS
105
106# If you are following the conditions in the copyright,
107# you can enable soft-updates which will speed up a lot of thigs
108# and make the system safer from crashes at the same time.
109# otherwise a STUB module will be compiled in.
110SOFTUPDATES opt_ffs.h
111
112# The above static dependencies are planned removed, with a
113# <filesystem>_ROOT option to control if it usable as root. This list
114# allows these options to be present in config files already (though
115# they won't make any difference yet).
116CD9660_ROOT opt_cd9660.h
117FFS_ROOT opt_ffs.h
118NFS_ROOT opt_nfsroot.h
119
120# Multi-session CD-Rs might require a huge amount of time in order to
121# "settle". If we are about mounting them as the root f/s, we gotta
122# wait a little.
123CD9660_ROOTDELAY opt_cd9660.h
124
125# The union static file system has bogus static dependencies, so it isn't
126# hidden yet.
127UNION
128
129# Options used only in param.c.
130HZ opt_param.h
131MAXFILES opt_param.h
132MAXUSERS opt_param.h
133MSGMNB opt_param.h
134MSGMNI opt_param.h
135MSGSEG opt_param.h
136MSGSSZ opt_param.h
137MSGTQL opt_param.h
138NBUF opt_param.h
139NMBCLUSTERS opt_param.h
140NSFBUFS opt_param.h
141SEMMAP opt_param.h
142SEMMNI opt_param.h
143SEMMNS opt_param.h
144SEMMNU opt_param.h
145SEMMSL opt_param.h
146SEMOPM opt_param.h
147SEMUME opt_param.h
148SHMALL opt_param.h
149SHMMAX opt_param.h
150SHMMAXPGS opt_param.h
151SHMMIN opt_param.h
152SHMMNI opt_param.h
153SHMSEG opt_param.h
154
155# Generic SCSI options.
156CAM_MAX_HIGHPOWER opt_cam.h
157CAMDEBUG opt_cam.h
158CAM_DEBUG_DELAY opt_cam.h
159CAM_DEBUG_BUS opt_cam.h
160CAM_DEBUG_TARGET opt_cam.h
161CAM_DEBUG_LUN opt_cam.h
162CAM_DEBUG_FLAGS opt_cam.h
163SCSI_DELAY opt_scsi.h
164SCSI_REPORT_GEOMETRY opt_scsi.h
165SCSI_NO_SENSE_STRINGS opt_scsi.h
166SCSI_NO_OP_STRINGS opt_scsi.h
167
168# Options used only in cam/scsi/scsi_cd.c
169CHANGER_MIN_BUSY_SECONDS opt_cd.h
170CHANGER_MAX_BUSY_SECONDS opt_cd.h
171
172# Options used only in cam/scsi/scsi_sa.c.
173SA_SPACE_TIMEOUT opt_sa.h
174SA_REWIND_TIMEOUT opt_sa.h
175SA_ERASE_TIMEOUT opt_sa.h
176SA_1FM_AT_EOD opt_sa.h
177
178# Options used only in cam/scsi/scsi_pt.c
179SCSI_PT_DEFAULT_TIMEOUT opt_pt.h
180
181# Options used only in pci/ncr.c
182SCSI_NCR_DEBUG opt_ncr.h
183SCSI_NCR_DFLT_TAGS opt_ncr.h
184SCSI_NCR_MAX_SYNC opt_ncr.h
185SCSI_NCR_MAX_WIDE opt_ncr.h
186SCSI_NCR_MYADDR opt_ncr.h
187
188# Options used only in pci/isp_pci.c
189SCSI_ISP_NO_FWLOAD_MASK opt_isp.h
190SCSI_ISP_NO_NVRAM_MASK opt_isp.h
191SCSI_ISP_PREFER_MEM_MAP opt_isp.h
192SCSI_ISP_FABRIC opt_isp.h
193SCSI_ISP_SCCLUN opt_isp.h
194SCSI_ISP_FCDUPLEX opt_isp.h
195ISP_DISABLE_1020_SUPPORT opt_isp.h
196ISP_DISABLE_1080_SUPPORT opt_isp.h
197ISP_DISABLE_2100_SUPPORT opt_isp.h
198ISP_DISABLE_2200_SUPPORT opt_isp.h
199
200# Options used in the 'ata' ATA/ATAPI driver
201ATA_STATIC_ID opt_ata.h
202ATA_16BIT_ONLY opt_ata.h
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# "<machine>/conf/options.<machine>". 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 aic7xxx SCSI controller options
34AHC_ALLOW_MEMIO opt_aic7xxx.h # Allow PCI devices to use memory
35 # mapped I/O
36
37AHC_TMODE_ENABLE opt_aic7xxx.h # Bitmap of units to enable
38 # targetmode operations.
39
40AHC_DUMP_EEPROM opt_aic7xxx.h # Dump the contents of our
41 # configuration prom.
42
43ADW_ALLOW_MEMIO opt_adw.h # Allow PCI devices to use memory
44 # mapped I/O
45
46# Miscellaneous options.
47COMPAT_43 opt_compat.h
48COMPAT_SUNOS opt_compat.h
49COMPILING_LINT opt_lint.h
50CY_PCI_FASTINTR
51DDB
52DDB_UNATTENDED opt_ddb.h
53GDB_REMOTE_CHAT opt_ddb.h
54DEVFS
55HW_WDOG
56KTRACE
57MD5
58MFS_ROOT opt_mfs.h
59MFS_ROOT_SIZE opt_mfs.h
60NTIMECOUNTER opt_ntp.h
61NSWAPDEV opt_swap.h
62PPS_SYNC opt_ntp.h
63QUOTA
64SPX_HACK
65SUIDDIR opt_suiddir.h
66SYSVMSG opt_sysvipc.h
67SYSVSEM opt_sysvipc.h
68SYSVSHM opt_sysvipc.h
69UCONSOLE
70ICMP_BANDLIM
71
72# POSIX kernel options
73P1003_1B opt_posix.h
74_KPOSIX_PRIORITY_SCHEDULING opt_posix.h
75_KPOSIX_VERSION opt_posix.h
76
77# Do we want the config file compiled into the kernel?
78INCLUDE_CONFIG_FILE opt_config.h
79
80# Options for static file systems. These should only be used at config
81# time, since the corresponding lkms cannot work if there are any static
82# dependencies. Unusability is enforced by hiding the defines for the
83# options in a never-included header.
84EXT2FS opt_dontuse.h
85FDESC opt_dontuse.h
86KERNFS opt_dontuse.h
87MFS opt_dontuse.h
88MSDOSFS opt_dontuse.h
89NULLFS opt_dontuse.h
90PORTAL opt_dontuse.h
91PROCFS opt_dontuse.h
92UMAPFS opt_dontuse.h
93NTFS opt_dontuse.h
94
95# These static filesystems has one slightly bogus static dependency in
96# sys/i386/i386/autoconf.c. If any of these filesystems are
97# statically compiled into the kernel, code for mounting them as root
98# filesystems will be enabled - but look below. Boot-code is purposely
99# unavailable for the LKM-based versions.
100CODA
101CD9660
102FFS
103NFS
104NWFS
105
106# If you are following the conditions in the copyright,
107# you can enable soft-updates which will speed up a lot of thigs
108# and make the system safer from crashes at the same time.
109# otherwise a STUB module will be compiled in.
110SOFTUPDATES opt_ffs.h
111
112# The above static dependencies are planned removed, with a
113# <filesystem>_ROOT option to control if it usable as root. This list
114# allows these options to be present in config files already (though
115# they won't make any difference yet).
116CD9660_ROOT opt_cd9660.h
117FFS_ROOT opt_ffs.h
118NFS_ROOT opt_nfsroot.h
119
120# Multi-session CD-Rs might require a huge amount of time in order to
121# "settle". If we are about mounting them as the root f/s, we gotta
122# wait a little.
123CD9660_ROOTDELAY opt_cd9660.h
124
125# The union static file system has bogus static dependencies, so it isn't
126# hidden yet.
127UNION
128
129# Options used only in param.c.
130HZ opt_param.h
131MAXFILES opt_param.h
132MAXUSERS opt_param.h
133MSGMNB opt_param.h
134MSGMNI opt_param.h
135MSGSEG opt_param.h
136MSGSSZ opt_param.h
137MSGTQL opt_param.h
138NBUF opt_param.h
139NMBCLUSTERS opt_param.h
140NSFBUFS opt_param.h
141SEMMAP opt_param.h
142SEMMNI opt_param.h
143SEMMNS opt_param.h
144SEMMNU opt_param.h
145SEMMSL opt_param.h
146SEMOPM opt_param.h
147SEMUME opt_param.h
148SHMALL opt_param.h
149SHMMAX opt_param.h
150SHMMAXPGS opt_param.h
151SHMMIN opt_param.h
152SHMMNI opt_param.h
153SHMSEG opt_param.h
154
155# Generic SCSI options.
156CAM_MAX_HIGHPOWER opt_cam.h
157CAMDEBUG opt_cam.h
158CAM_DEBUG_DELAY opt_cam.h
159CAM_DEBUG_BUS opt_cam.h
160CAM_DEBUG_TARGET opt_cam.h
161CAM_DEBUG_LUN opt_cam.h
162CAM_DEBUG_FLAGS opt_cam.h
163SCSI_DELAY opt_scsi.h
164SCSI_REPORT_GEOMETRY opt_scsi.h
165SCSI_NO_SENSE_STRINGS opt_scsi.h
166SCSI_NO_OP_STRINGS opt_scsi.h
167
168# Options used only in cam/scsi/scsi_cd.c
169CHANGER_MIN_BUSY_SECONDS opt_cd.h
170CHANGER_MAX_BUSY_SECONDS opt_cd.h
171
172# Options used only in cam/scsi/scsi_sa.c.
173SA_SPACE_TIMEOUT opt_sa.h
174SA_REWIND_TIMEOUT opt_sa.h
175SA_ERASE_TIMEOUT opt_sa.h
176SA_1FM_AT_EOD opt_sa.h
177
178# Options used only in cam/scsi/scsi_pt.c
179SCSI_PT_DEFAULT_TIMEOUT opt_pt.h
180
181# Options used only in pci/ncr.c
182SCSI_NCR_DEBUG opt_ncr.h
183SCSI_NCR_DFLT_TAGS opt_ncr.h
184SCSI_NCR_MAX_SYNC opt_ncr.h
185SCSI_NCR_MAX_WIDE opt_ncr.h
186SCSI_NCR_MYADDR opt_ncr.h
187
188# Options used only in pci/isp_pci.c
189SCSI_ISP_NO_FWLOAD_MASK opt_isp.h
190SCSI_ISP_NO_NVRAM_MASK opt_isp.h
191SCSI_ISP_PREFER_MEM_MAP opt_isp.h
192SCSI_ISP_FABRIC opt_isp.h
193SCSI_ISP_SCCLUN opt_isp.h
194SCSI_ISP_FCDUPLEX opt_isp.h
195ISP_DISABLE_1020_SUPPORT opt_isp.h
196ISP_DISABLE_1080_SUPPORT opt_isp.h
197ISP_DISABLE_2100_SUPPORT opt_isp.h
198ISP_DISABLE_2200_SUPPORT opt_isp.h
199
200# Options used in the 'ata' ATA/ATAPI driver
201ATA_STATIC_ID opt_ata.h
202ATA_16BIT_ONLY opt_ata.h
203ATA_ENABLE_ATAPI_DMA opt_ata.h
203
204# Resource limits.
205DFLDSIZ opt_rlimit.h
206MAXDSIZ opt_rlimit.h
207
208# Net stuff.
209BOOTP opt_bootp.h
210BOOTP_COMPAT opt_bootp.h
211BOOTP_NFSROOT opt_bootp.h
212BOOTP_NFSV3 opt_bootp.h
213BOOTP_WIRED_TO opt_bootp.h
214BRIDGE opt_bdg.h
215MROUTING opt_mrouting.h
216INET opt_inet.h
217INET6 opt_inet.h
218IPDIVERT
219DUMMYNET opt_ipdn.h
220IPFILTER_LKM opt_ipfilter.h
221IPFIREWALL opt_ipfw.h
222IPFIREWALL_VERBOSE opt_ipfw.h
223IPFIREWALL_VERBOSE_LIMIT opt_ipfw.h
224IPFIREWALL_DEFAULT_TO_ACCEPT opt_ipfw.h
225IPFIREWALL_FORWARD opt_ipfw.h
226IPSTEALTH
227IPX opt_ipx.h
228IPXIP opt_ipx.h
229IPTUNNEL opt_ipx.h
230NCP opt_ncp.h
231NETATALK opt_atalk.h
232PPP_BSDCOMP opt_ppp.h
233PPP_DEFLATE opt_ppp.h
234PPP_FILTER opt_ppp.h
235SLIP_IFF_OPTS opt_slip.h
236TCP_COMPAT_42 opt_compat.h
237TCPDEBUG
238TCP_DROP_SYNFIN opt_tcp_input.h
239TCP_RESTRICT_RST opt_tcp_input.h
240
241# Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
242# Each netgraph node type can be either be compiled into the kernel
243# or loaded dynamically. To get the former, include the corresponding
244# option below.
245NETGRAPH
246NETGRAPH_ASYNC opt_netgraph.h
247NETGRAPH_CISCO opt_netgraph.h
248NETGRAPH_ECHO opt_netgraph.h
249NETGRAPH_FRAME_RELAY opt_netgraph.h
250NETGRAPH_HOLE opt_netgraph.h
251NETGRAPH_IFACE opt_netgraph.h
252NETGRAPH_LMI opt_netgraph.h
253NETGRAPH_PPP opt_netgraph.h
254NETGRAPH_PPPOE opt_netgraph.h
255NETGRAPH_RFC1490 opt_netgraph.h
256NETGRAPH_SOCKET opt_netgraph.h
257NETGRAPH_TEE opt_netgraph.h
258NETGRAPH_TTY opt_netgraph.h
259NETGRAPH_UI opt_netgraph.h
260NETGRAPH_VJC opt_netgraph.h
261
262# ATM (HARP version)
263ATM_CORE opt_atm.h
264ATM_IP opt_atm.h
265ATM_SIGPVC opt_atm.h
266ATM_SPANS opt_atm.h
267ATM_UNI opt_atm.h
268
269# XXX Conflict: # of devices vs network protocol (Native ATM).
270# This makes "atm.h" unusable.
271NATM opt_natm.h
272
273DPT_ALLOW_MEMIO opt_dpt.h # Allow PCI devices to use memory
274 # mapped I/O
275# DPT driver debug flags
276DPT_VERIFY_HINTR opt_dpt.h
277DPT_USE_SINTR opt_dpt.h
278DPT_RESTRICTED_FREELIST opt_dpt.h
279DPT_MEASURE_PERFORMANCE opt_dpt.h
280DPT_FREELIST_IS_STACK opt_dpt.h
281DPT_HANDLE_TIMEOUTS opt_dpt.h
282DPT_TIMEOUT_FACTOR opt_dpt.h
283DPT_INTR_DELAY opt_dpt.h
284DPT_LOST_IRQ opt_dpt.h
285DPT_SHUTDOWN_SLEEP opt_dpt.h
286DPT_RESET_HBA opt_dpt.h
287
288# Misc debug flags. Most of these should probably be replaced with
289# 'DEBUG', and then let people recompile just the interesting modules
290# with 'make CC="cc -DDEBUG"'.
291CLUSTERDEBUG opt_debug_cluster.h
292DEBUG_1284 opt_ppb_1284.h
293VP0_DEBUG opt_vpo.h
294LPT_DEBUG opt_lpt.h
295PLIP_DEBUG opt_plip.h
296LOCKF_DEBUG opt_debug_lockf.h
297LOUTB opt_debug_outb.h
298NPX_DEBUG opt_debug_npx.h
299NETATALKDEBUG opt_atalk.h
300SI_DEBUG opt_debug_si.h
301
302# ppbus related options
303PERIPH_1284 opt_ppb_1284.h
304DONTPROBE_1284 opt_ppb_1284.h
305
306# smbus related options
307ENABLE_ALART opt_intpm.h
308
309# These cause changes all over the kernel
310DEBUG opt_global.h
311DEBUG_LOCKS opt_global.h
312DEBUG_VFS_LOCKS opt_global.h
313DIAGNOSTIC opt_global.h
314ENABLE_VFS_IOOPT opt_global.h
315INVARIANT_SUPPORT opt_global.h
316INVARIANTS opt_global.h
317SIMPLELOCK_DEBUG opt_global.h
318VFS_BIO_DEBUG opt_global.h
319BLKDEV_IOSIZE opt_global.h
320
321# These are VM related options
322VM_KMEM_SIZE opt_vm.h
323VM_KMEM_SIZE_SCALE opt_vm.h
324VM_KMEM_SIZE_MAX opt_vm.h
325NO_SWAPPING opt_vm.h
326PQ_NOOPT opt_vmpage.h
327PQ_NORMALCACHE opt_vmpage.h
328PQ_MEDIUMCACHE opt_vmpage.h
329PQ_LARGECACHE opt_vmpage.h
330PQ_HUGECACHE opt_vmpage.h
331
332# Standard SMP options
333SMP opt_global.h
334NCPU opt_smp.h
335NBUS opt_smp.h
336
337# sys/netkey
338KEY
339KEY_DEBUG opt_key.h
340
341# Size of the kernel message buffer
342MSGBUF_SIZE opt_msgbuf.h
343
344# PCI related options
345PCI_QUIET opt_pci.h
346
347# NFS options
348NFS_MINATTRTIMO opt_nfs.h
349NFS_MAXATTRTIMO opt_nfs.h
350NFS_MINDIRATTRTIMO opt_nfs.h
351NFS_MAXDIRATTRTIMO opt_nfs.h
352NFS_GATHERDELAY opt_nfs.h
353NFS_UIDHASHSIZ opt_nfs.h
354NFS_WDELAYHASHSIZ opt_nfs.h
355NFS_MUIDHASHSIZ opt_nfs.h
356NFS_NOSERVER opt_nfs.h
357NFS_DEBUG opt_nfs.h
358
359# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
360OVERRIDE_CARD opt_bktr.h
361OVERRIDE_TUNER opt_bktr.h
362OVERRIDE_DBX opt_bktr.h
363OVERRIDE_MSP opt_bktr.h
364BROOKTREE_SYSTEM_DEFAULT opt_bktr.h
365BKTR_USE_PLL opt_bktr.h
366BKTR_GPIO_ACCESS opt_bktr.h
367BKTR_NO_MSP_RESET opt_bktr.h
368BKTR_430_FX_MODE opt_bktr.h
369BKTR_SIS_VIA_MODE opt_bktr.h
370
371
372# meteor opt_meteor.h
373METEOR_ALLOC_PAGES opt_meteor.h
374METEOR_TEST_VIDEO opt_meteor.h
375METEOR_SYSTEM_DEFAULT opt_meteor.h
376METEOR_DEALLOC_PAGES opt_meteor.h
377METEOR_DEALLOC_ABOVE opt_meteor.h
378
379# Various mi ISA bus flags
380COM_ESP opt_sio.h
381COM_MULTIPORT opt_sio.h
382EXTRA_SIO opt_sio.h
383
384# Include tweaks for running under the SimOS machine simulator.
385SIMOS opt_simos.h
386
387# options for bus/device framework
388BUS_DEBUG opt_bus.h
389
390# options for USB support
391UHCI_DEBUG opt_usb.h
392OHCI_DEBUG opt_usb.h
393USB_DEBUG opt_usb.h
394UGEN_DEBUG opt_usb.h
395UHID_DEBUG opt_usb.h
396UHUB_DEBUG opt_usb.h
397UKBD_DEBUG opt_usb.h
398ULPT_DEBUG opt_usb.h
399UMASS_DEBUG opt_usb.h
400UMS_DEBUG opt_usb.h
401
402# Vinum options
403VINUMDEBUG opt_vinum.h
404
405# Embedded system options
406INIT_PATH opt_init_path.h
407
408ROOTDEVNAME opt_rootdevname.h
409
410FDC_DEBUG opt_fdc.h
411FDC_YE opt_fdc.h
204
205# Resource limits.
206DFLDSIZ opt_rlimit.h
207MAXDSIZ opt_rlimit.h
208
209# Net stuff.
210BOOTP opt_bootp.h
211BOOTP_COMPAT opt_bootp.h
212BOOTP_NFSROOT opt_bootp.h
213BOOTP_NFSV3 opt_bootp.h
214BOOTP_WIRED_TO opt_bootp.h
215BRIDGE opt_bdg.h
216MROUTING opt_mrouting.h
217INET opt_inet.h
218INET6 opt_inet.h
219IPDIVERT
220DUMMYNET opt_ipdn.h
221IPFILTER_LKM opt_ipfilter.h
222IPFIREWALL opt_ipfw.h
223IPFIREWALL_VERBOSE opt_ipfw.h
224IPFIREWALL_VERBOSE_LIMIT opt_ipfw.h
225IPFIREWALL_DEFAULT_TO_ACCEPT opt_ipfw.h
226IPFIREWALL_FORWARD opt_ipfw.h
227IPSTEALTH
228IPX opt_ipx.h
229IPXIP opt_ipx.h
230IPTUNNEL opt_ipx.h
231NCP opt_ncp.h
232NETATALK opt_atalk.h
233PPP_BSDCOMP opt_ppp.h
234PPP_DEFLATE opt_ppp.h
235PPP_FILTER opt_ppp.h
236SLIP_IFF_OPTS opt_slip.h
237TCP_COMPAT_42 opt_compat.h
238TCPDEBUG
239TCP_DROP_SYNFIN opt_tcp_input.h
240TCP_RESTRICT_RST opt_tcp_input.h
241
242# Netgraph(4). Use option NETGRAPH to enable the base netgraph code.
243# Each netgraph node type can be either be compiled into the kernel
244# or loaded dynamically. To get the former, include the corresponding
245# option below.
246NETGRAPH
247NETGRAPH_ASYNC opt_netgraph.h
248NETGRAPH_CISCO opt_netgraph.h
249NETGRAPH_ECHO opt_netgraph.h
250NETGRAPH_FRAME_RELAY opt_netgraph.h
251NETGRAPH_HOLE opt_netgraph.h
252NETGRAPH_IFACE opt_netgraph.h
253NETGRAPH_LMI opt_netgraph.h
254NETGRAPH_PPP opt_netgraph.h
255NETGRAPH_PPPOE opt_netgraph.h
256NETGRAPH_RFC1490 opt_netgraph.h
257NETGRAPH_SOCKET opt_netgraph.h
258NETGRAPH_TEE opt_netgraph.h
259NETGRAPH_TTY opt_netgraph.h
260NETGRAPH_UI opt_netgraph.h
261NETGRAPH_VJC opt_netgraph.h
262
263# ATM (HARP version)
264ATM_CORE opt_atm.h
265ATM_IP opt_atm.h
266ATM_SIGPVC opt_atm.h
267ATM_SPANS opt_atm.h
268ATM_UNI opt_atm.h
269
270# XXX Conflict: # of devices vs network protocol (Native ATM).
271# This makes "atm.h" unusable.
272NATM opt_natm.h
273
274DPT_ALLOW_MEMIO opt_dpt.h # Allow PCI devices to use memory
275 # mapped I/O
276# DPT driver debug flags
277DPT_VERIFY_HINTR opt_dpt.h
278DPT_USE_SINTR opt_dpt.h
279DPT_RESTRICTED_FREELIST opt_dpt.h
280DPT_MEASURE_PERFORMANCE opt_dpt.h
281DPT_FREELIST_IS_STACK opt_dpt.h
282DPT_HANDLE_TIMEOUTS opt_dpt.h
283DPT_TIMEOUT_FACTOR opt_dpt.h
284DPT_INTR_DELAY opt_dpt.h
285DPT_LOST_IRQ opt_dpt.h
286DPT_SHUTDOWN_SLEEP opt_dpt.h
287DPT_RESET_HBA opt_dpt.h
288
289# Misc debug flags. Most of these should probably be replaced with
290# 'DEBUG', and then let people recompile just the interesting modules
291# with 'make CC="cc -DDEBUG"'.
292CLUSTERDEBUG opt_debug_cluster.h
293DEBUG_1284 opt_ppb_1284.h
294VP0_DEBUG opt_vpo.h
295LPT_DEBUG opt_lpt.h
296PLIP_DEBUG opt_plip.h
297LOCKF_DEBUG opt_debug_lockf.h
298LOUTB opt_debug_outb.h
299NPX_DEBUG opt_debug_npx.h
300NETATALKDEBUG opt_atalk.h
301SI_DEBUG opt_debug_si.h
302
303# ppbus related options
304PERIPH_1284 opt_ppb_1284.h
305DONTPROBE_1284 opt_ppb_1284.h
306
307# smbus related options
308ENABLE_ALART opt_intpm.h
309
310# These cause changes all over the kernel
311DEBUG opt_global.h
312DEBUG_LOCKS opt_global.h
313DEBUG_VFS_LOCKS opt_global.h
314DIAGNOSTIC opt_global.h
315ENABLE_VFS_IOOPT opt_global.h
316INVARIANT_SUPPORT opt_global.h
317INVARIANTS opt_global.h
318SIMPLELOCK_DEBUG opt_global.h
319VFS_BIO_DEBUG opt_global.h
320BLKDEV_IOSIZE opt_global.h
321
322# These are VM related options
323VM_KMEM_SIZE opt_vm.h
324VM_KMEM_SIZE_SCALE opt_vm.h
325VM_KMEM_SIZE_MAX opt_vm.h
326NO_SWAPPING opt_vm.h
327PQ_NOOPT opt_vmpage.h
328PQ_NORMALCACHE opt_vmpage.h
329PQ_MEDIUMCACHE opt_vmpage.h
330PQ_LARGECACHE opt_vmpage.h
331PQ_HUGECACHE opt_vmpage.h
332
333# Standard SMP options
334SMP opt_global.h
335NCPU opt_smp.h
336NBUS opt_smp.h
337
338# sys/netkey
339KEY
340KEY_DEBUG opt_key.h
341
342# Size of the kernel message buffer
343MSGBUF_SIZE opt_msgbuf.h
344
345# PCI related options
346PCI_QUIET opt_pci.h
347
348# NFS options
349NFS_MINATTRTIMO opt_nfs.h
350NFS_MAXATTRTIMO opt_nfs.h
351NFS_MINDIRATTRTIMO opt_nfs.h
352NFS_MAXDIRATTRTIMO opt_nfs.h
353NFS_GATHERDELAY opt_nfs.h
354NFS_UIDHASHSIZ opt_nfs.h
355NFS_WDELAYHASHSIZ opt_nfs.h
356NFS_MUIDHASHSIZ opt_nfs.h
357NFS_NOSERVER opt_nfs.h
358NFS_DEBUG opt_nfs.h
359
360# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver
361OVERRIDE_CARD opt_bktr.h
362OVERRIDE_TUNER opt_bktr.h
363OVERRIDE_DBX opt_bktr.h
364OVERRIDE_MSP opt_bktr.h
365BROOKTREE_SYSTEM_DEFAULT opt_bktr.h
366BKTR_USE_PLL opt_bktr.h
367BKTR_GPIO_ACCESS opt_bktr.h
368BKTR_NO_MSP_RESET opt_bktr.h
369BKTR_430_FX_MODE opt_bktr.h
370BKTR_SIS_VIA_MODE opt_bktr.h
371
372
373# meteor opt_meteor.h
374METEOR_ALLOC_PAGES opt_meteor.h
375METEOR_TEST_VIDEO opt_meteor.h
376METEOR_SYSTEM_DEFAULT opt_meteor.h
377METEOR_DEALLOC_PAGES opt_meteor.h
378METEOR_DEALLOC_ABOVE opt_meteor.h
379
380# Various mi ISA bus flags
381COM_ESP opt_sio.h
382COM_MULTIPORT opt_sio.h
383EXTRA_SIO opt_sio.h
384
385# Include tweaks for running under the SimOS machine simulator.
386SIMOS opt_simos.h
387
388# options for bus/device framework
389BUS_DEBUG opt_bus.h
390
391# options for USB support
392UHCI_DEBUG opt_usb.h
393OHCI_DEBUG opt_usb.h
394USB_DEBUG opt_usb.h
395UGEN_DEBUG opt_usb.h
396UHID_DEBUG opt_usb.h
397UHUB_DEBUG opt_usb.h
398UKBD_DEBUG opt_usb.h
399ULPT_DEBUG opt_usb.h
400UMASS_DEBUG opt_usb.h
401UMS_DEBUG opt_usb.h
402
403# Vinum options
404VINUMDEBUG opt_vinum.h
405
406# Embedded system options
407INIT_PATH opt_init_path.h
408
409ROOTDEVNAME opt_rootdevname.h
410
411FDC_DEBUG opt_fdc.h
412FDC_YE opt_fdc.h