1# $FreeBSD$ 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. 75ADAPTIVE_MUTEXES 76ALQ 77COMPAT_43 opt_compat.h 78COMPAT_FREEBSD4 opt_compat.h 79COMPAT_SUNOS opt_compat.h 80COMPILING_LINT opt_global.h 81CONSPEED opt_comconsole.h 82CY_PCI_FASTINTR 83DDB 84DDB_NOKLDSYM opt_ddb.h 85DDB_TRACE 86DDB_UNATTENDED 87GDB_REMOTE_CHAT opt_ddb.h 88GDBSPEED opt_ddb.h 89GEOM_AES opt_geom.h 90GEOM_APPLE opt_geom.h 91GEOM_BDE opt_geom.h 92GEOM_BSD opt_geom.h 93GEOM_FOX 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 106MAC 107MAC_ALWAYS_LABEL_MBUF opt_mac.h 108MAC_BIBA opt_dontuse.h 109MAC_BSDEXTENDED opt_dontuse.h 110MAC_DEBUG opt_mac.h 111MAC_IFOFF opt_dontuse.h 112MAC_LOMAC opt_dontuse.h 113MAC_MLS opt_dontuse.h 114MAC_NONE opt_dontuse.h 115MAC_PARTITION opt_dontuse.h 116MAC_PORTACL opt_dontuse.h 117MAC_SEEOTHERUIDS opt_dontuse.h 118MAC_TEST opt_dontuse.h 119MD_ROOT opt_md.h 120MD_ROOT_SIZE opt_md.h 121NDGBPORTS opt_dgb.h 122NSWAPDEV opt_swap.h 123NSWBUF_MIN opt_swap.h 124NTIMECOUNTER opt_ntp.h 125PANIC_REBOOT_WAIT_TIME opt_panic.h 126PPS_SYNC opt_ntp.h 127PUC_FASTINTR opt_puc.h 128QUOTA 129SCHED_4BSD opt_sched.h 130SCHED_ULE opt_sched.h 131SHOW_BUSYBUFS 132SPX_HACK 133SUIDDIR opt_suiddir.h 134MSGMNB opt_sysvipc.h 135MSGMNI opt_sysvipc.h 136MSGSEG opt_sysvipc.h 137MSGSSZ opt_sysvipc.h 138MSGTQL opt_sysvipc.h 139SEMMAP opt_sysvipc.h 140SEMMNI opt_sysvipc.h 141SEMMNS opt_sysvipc.h 142SEMMNU opt_sysvipc.h 143SEMMSL opt_sysvipc.h 144SEMOPM opt_sysvipc.h 145SEMUME opt_sysvipc.h 146SHMALL opt_sysvipc.h 147SHMMAX opt_sysvipc.h 148SHMMAXPGS opt_sysvipc.h 149SHMMIN opt_sysvipc.h 150SHMMNI opt_sysvipc.h 151SHMSEG opt_sysvipc.h 152SYSVMSG opt_sysvipc.h 153SYSVSEM opt_sysvipc.h 154SYSVSHM opt_sysvipc.h 155VFS_AIO 156WLCACHE opt_wavelan.h 157WLDEBUG opt_wavelan.h 158TTYHOG opt_tty.h 159DIRECTIO opt_directio.h 160 161# POSIX kernel options 162_KPOSIX_PRIORITY_SCHEDULING opt_posix.h 163P1003_1B_SEMAPHORES opt_posix.h 164 165# Do we want the config file compiled into the kernel? 166INCLUDE_CONFIG_FILE opt_config.h 167 168# Options for static filesystems. These should only be used at config 169# time, since the corresponding lkms cannot work if there are any static 170# dependencies. Unusability is enforced by hiding the defines for the 171# options in a never-included header. 172CD9660 opt_dontuse.h 173CODA opt_dontuse.h 174EXT2FS opt_dontuse.h 175FDESCFS opt_dontuse.h 176HPFS opt_dontuse.h 177LINPROCFS opt_dontuse.h 178MSDOSFS opt_dontuse.h 179NTFS opt_dontuse.h 180NULLFS opt_dontuse.h 181NWFS opt_dontuse.h 182PORTALFS opt_dontuse.h 183PROCFS opt_dontuse.h 184PSEUDOFS opt_dontuse.h 185SMBFS opt_dontuse.h 186UDF opt_dontuse.h 187UMAPFS opt_dontuse.h 188UNIONFS opt_dontuse.h 189 190# Broken - ffs_snapshot() dependency from ufs_lookup() :-( 191FFS opt_ffs_broken_fixme.h 192 193# These static filesystems have one slightly bogus static dependency in 194# sys/i386/i386/autoconf.c. If any of these filesystems are 195# statically compiled into the kernel, code for mounting them as root 196# filesystems will be enabled - but look below. 197NFSCLIENT opt_nfs.h 198NFSSERVER opt_nfs.h 199 200# If you are following the conditions in the copyright, 201# you can enable soft-updates which will speed up a lot of thigs 202# and make the system safer from crashes at the same time. 203# otherwise a STUB module will be compiled in. 204SOFTUPDATES opt_ffs.h 205 206# Enabling this option turns on support for Access Control Lists in UFS, 207# which can be used to support high security configurations. Depends on 208# UFS_EXTATTR. 209UFS_ACL opt_ufs.h 210 211# Enabling this option turns on support for extended attributes in UFS-based 212# filesystems, which can be used to support high security configurations 213# as well as new filesystem features. 214UFS_EXTATTR opt_ufs.h 215UFS_EXTATTR_AUTOSTART opt_ufs.h 216 217# Enable fast hash lookups for large directories on UFS-based filesystems. 218UFS_DIRHASH opt_ufs.h 219 220# The below sentence is not in English, and neither is this one. 221# We plan to remove the static dependences above, 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# Options used only in cam/scsi/scsi_cd.c 258CHANGER_MIN_BUSY_SECONDS opt_cd.h 259CHANGER_MAX_BUSY_SECONDS opt_cd.h 260 261# Options used only in cam/scsi/scsi_sa.c. 262SA_IO_TIMEOUT opt_sa.h 263SA_SPACE_TIMEOUT opt_sa.h 264SA_REWIND_TIMEOUT opt_sa.h 265SA_ERASE_TIMEOUT opt_sa.h 266SA_1FM_AT_EOD opt_sa.h 267 268# Options used only in cam/scsi/scsi_pt.c 269SCSI_PT_DEFAULT_TIMEOUT opt_pt.h 270 271# Options used only in cam/scsi/scsi_ses.c 272SES_ENABLE_PASSTHROUGH opt_ses.h 273 274# Options used in dev/sym/ (Symbios SCSI driver). 275SYM_SETUP_LP_PROBE_MAP opt_sym.h #-Low Priority Probe Map (bits) 276 # Allows the ncr to take precedence 277 # 1 (1<<0) -> 810a, 860 278 # 2 (1<<1) -> 825a, 875, 885, 895 279 # 4 (1<<2) -> 895a, 896, 1510d 280SYM_SETUP_SCSI_DIFF opt_sym.h #-HVD support for 825a, 875, 885 281 # disabled:0 (default), enabled:1 282SYM_SETUP_PCI_PARITY opt_sym.h #-PCI parity checking 283 # disabled:0, enabled:1 (default) 284SYM_SETUP_MAX_LUN opt_sym.h #-Number of LUNs supported 285 # default:8, range:[1..64] 286 287# Options used only in pci/ncr.c 288SCSI_NCR_DEBUG opt_ncr.h 289SCSI_NCR_MAX_SYNC opt_ncr.h 290SCSI_NCR_MAX_WIDE opt_ncr.h 291SCSI_NCR_MYADDR opt_ncr.h 292 293# Options used only in dev/isp/* 294ISP_TARGET_MODE opt_isp.h 295ISP_FW_CRASH_DUMP opt_isp.h 296 297# Options used in the 'ata' ATA/ATAPI driver 298ACD_DEBUG opt_ata.h 299AST_DEBUG opt_ata.h 300ATAPI_DEBUG opt_ata.h 301ATA_DEBUG opt_ata.h 302ATA_STATIC_ID opt_ata.h 303ATA_NOPCI opt_ata.h 304DEV_ATADISK opt_ata.h 305DEV_ATAPICD opt_ata.h 306DEV_ATAPIST opt_ata.h 307DEV_ATAPIFD opt_ata.h 308DEV_ATAPICAM opt_ata.h 309 310# Net stuff. 311ACCEPT_FILTER_DATA 312ACCEPT_FILTER_HTTP 313BOOTP opt_bootp.h 314BOOTP_COMPAT opt_bootp.h 315BOOTP_NFSROOT opt_bootp.h 316BOOTP_NFSV3 opt_bootp.h 317BOOTP_WIRED_TO opt_bootp.h 318BRIDGE opt_bdg.h 319ETHER_II opt_ef.h 320ETHER_8023 opt_ef.h 321ETHER_8022 opt_ef.h 322ETHER_SNAP opt_ef.h 323MROUTING opt_mrouting.h 324INET opt_inet.h 325INET6 opt_inet6.h 326IPSEC opt_ipsec.h 327IPSEC_ESP opt_ipsec.h 328IPSEC_DEBUG opt_ipsec.h 329IPSEC_FILTERGIF opt_ipsec.h 330FAST_IPSEC opt_ipsec.h 331IPDIVERT 332DUMMYNET opt_ipdn.h 333IPFILTER opt_ipfilter.h 334IPFILTER_LOG opt_ipfilter.h 335IPFILTER_DEFAULT_BLOCK opt_ipfilter.h 336PFIL_HOOKS opt_pfil_hooks.h 337IPFIREWALL opt_ipfw.h 338IPFIREWALL_VERBOSE opt_ipfw.h 339IPFIREWALL_VERBOSE_LIMIT opt_ipfw.h 340IPFIREWALL_DEFAULT_TO_ACCEPT opt_ipfw.h 341IPFIREWALL_FORWARD opt_ipfw.h 342IPV6FIREWALL opt_ip6fw.h 343IPV6FIREWALL_VERBOSE opt_ip6fw.h 344IPV6FIREWALL_VERBOSE_LIMIT opt_ip6fw.h 345IPV6FIREWALL_DEFAULT_TO_ACCEPT opt_ip6fw.h 346IPSTEALTH 347IPX 348IPXIP opt_ipx.h 349LIBMCHAIN 350NCP 351NETATALK opt_atalk.h 352PPP_BSDCOMP opt_ppp.h 353PPP_DEFLATE opt_ppp.h 354PPP_FILTER opt_ppp.h 355RANDOM_IP_ID 356SLIP_IFF_OPTS opt_slip.h 357TCPDEBUG 358TCP_DROP_SYNFIN opt_tcp_input.h 359XBONEHACK 360MBUF_STRESS_TEST opt_mbuf_stress_test.h 361 362# Netgraph(4). Use option NETGRAPH to enable the base netgraph code. 363# Each netgraph node type can be either be compiled into the kernel 364# or loaded dynamically. To get the former, include the corresponding 365# option below. Each type has its own man page, e.g. ng_async(4). 366NETGRAPH 367NETGRAPH_ASYNC opt_netgraph.h 368NETGRAPH_BPF opt_netgraph.h 369NETGRAPH_BRIDGE opt_netgraph.h 370NETGRAPH_CISCO opt_netgraph.h 371NETGRAPH_ECHO opt_netgraph.h 372NETGRAPH_ETHER opt_netgraph.h 373NETGRAPH_FRAME_RELAY opt_netgraph.h 374NETGRAPH_GIF opt_netgraph.h 375NETGRAPH_GIF_DEMUX opt_netgraph.h 376NETGRAPH_HOLE opt_netgraph.h 377NETGRAPH_IFACE opt_netgraph.h 378NETGRAPH_IP_INPUT opt_netgraph.h 379NETGRAPH_KSOCKET opt_netgraph.h 380NETGRAPH_L2TP opt_netgraph.h 381NETGRAPH_LMI opt_netgraph.h 382# MPPC compression requires proprietary files (not included) 383NETGRAPH_MPPC_COMPRESSION opt_netgraph.h 384NETGRAPH_MPPC_ENCRYPTION opt_netgraph.h 385NETGRAPH_ONE2MANY opt_netgraph.h 386NETGRAPH_PPP opt_netgraph.h 387NETGRAPH_PPPOE opt_netgraph.h 388NETGRAPH_PPTPGRE opt_netgraph.h 389NETGRAPH_RFC1490 opt_netgraph.h 390NETGRAPH_SOCKET opt_netgraph.h 391NETGRAPH_SPLIT opt_netgraph.h 392NETGRAPH_TEE opt_netgraph.h 393NETGRAPH_TTY opt_netgraph.h 394NETGRAPH_UI opt_netgraph.h 395NETGRAPH_VJC opt_netgraph.h 396 397# NgATM options 398NGATM_ATM opt_netgraph.h 399 400# DRM options 401DRM_DEBUG opt_drm.h 402 403ZERO_COPY_SOCKETS opt_zero.h 404TI_PRIVATE_JUMBOS opt_ti.h 405TI_JUMBO_HDRSPLIT opt_ti.h 406 407# ATM (HARP version) 408ATM_CORE opt_atm.h 409ATM_IP opt_atm.h 410ATM_SIGPVC opt_atm.h 411ATM_SPANS opt_atm.h 412ATM_UNI opt_atm.h 413 414# XXX Conflict: # of devices vs network protocol (Native ATM). 415# This makes "atm.h" unusable. 416NATM 417 418DPT_ALLOW_MEMIO opt_dpt.h # Allow PCI devices to use memory 419 # mapped I/O 420# DPT driver debug flags 421DPT_MEASURE_PERFORMANCE opt_dpt.h 422DPT_HANDLE_TIMEOUTS opt_dpt.h 423DPT_TIMEOUT_FACTOR opt_dpt.h 424DPT_LOST_IRQ opt_dpt.h 425DPT_RESET_HBA opt_dpt.h 426 427# Adaptec ASR and DPT V/VI controller options 428ASR_MEASURE_PERFORMANCE opt_asr.h 429 430# Misc debug flags. Most of these should probably be replaced with 431# 'DEBUG', and then let people recompile just the interesting modules 432# with 'make CC="cc -DDEBUG"'. 433CLUSTERDEBUG opt_debug_cluster.h 434DEBUG_1284 opt_ppb_1284.h 435VP0_DEBUG opt_vpo.h 436LPT_DEBUG opt_lpt.h 437PLIP_DEBUG opt_plip.h 438LOCKF_DEBUG opt_debug_lockf.h 439MUTEX_DEBUG opt_global.h 440MUTEX_NOINLINE opt_global.h 441MUTEX_PROFILING opt_global.h 442NPX_DEBUG opt_debug_npx.h 443NETATALKDEBUG opt_atalk.h 444SI_DEBUG opt_debug_si.h 445WATCHDOG opt_watchdog.h 446 447# Fb options 448FB_DEBUG opt_fb.h 449FB_INSTALL_CDEV opt_fb.h 450 451# ppbus related options 452PERIPH_1284 opt_ppb_1284.h 453DONTPROBE_1284 opt_ppb_1284.h 454 455# smbus related options 456ENABLE_ALART opt_intpm.h 457 458# These cause changes all over the kernel 459BLKDEV_IOSIZE opt_global.h 460BURN_BRIDGES opt_gloabl.h 461DEBUG opt_global.h 462DEBUG_LOCKS opt_global.h 463DEBUG_VFS_LOCKS opt_global.h 464DIAGNOSTIC opt_global.h 465INVARIANT_SUPPORT opt_global.h 466INVARIANTS opt_global.h 467LOOKUP_SHARED opt_global.h 468MCLSHIFT opt_global.h 469MSIZE opt_global.h 470REGRESSION opt_global.h 471RESTARTABLE_PANICS opt_global.h 472VFS_BIO_DEBUG opt_global.h 473 474# These are VM related options 475VM_KMEM_SIZE opt_vm.h 476VM_KMEM_SIZE_SCALE opt_vm.h 477VM_KMEM_SIZE_MAX opt_vm.h 478NO_SWAPPING opt_vm.h 479MALLOC_MAKE_FAILURES opt_vm.h 480MALLOC_PROFILE opt_vm.h 481PQ_NOOPT opt_vmpage.h 482PQ_NORMALCACHE opt_vmpage.h 483PQ_MEDIUMCACHE opt_vmpage.h 484PQ_LARGECACHE opt_vmpage.h 485PQ_HUGECACHE opt_vmpage.h 486PQ_CACHESIZE opt_vmpage.h 487 488# Standard SMP options 489SMP opt_global.h 490 491# Size of the kernel message buffer 492MSGBUF_SIZE opt_msgbuf.h 493 494# NFS options 495NFS_MINATTRTIMO opt_nfs.h 496NFS_MAXATTRTIMO opt_nfs.h 497NFS_MINDIRATTRTIMO opt_nfs.h 498NFS_MAXDIRATTRTIMO opt_nfs.h 499NFS_GATHERDELAY opt_nfs.h 500NFS_WDELAYHASHSIZ opt_nfs.h 501NFS_DEBUG opt_nfs.h 502 503# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver 504OVERRIDE_CARD opt_bktr.h 505OVERRIDE_TUNER opt_bktr.h 506OVERRIDE_DBX opt_bktr.h 507OVERRIDE_MSP opt_bktr.h 508BROOKTREE_SYSTEM_DEFAULT opt_bktr.h 509BROOKTREE_ALLOC_PAGES opt_bktr.h 510BKTR_OVERRIDE_CARD opt_bktr.h 511BKTR_OVERRIDE_TUNER opt_bktr.h 512BKTR_OVERRIDE_DBX opt_bktr.h 513BKTR_OVERRIDE_MSP opt_bktr.h 514BKTR_SYSTEM_DEFAULT opt_bktr.h 515BKTR_ALLOC_PAGES opt_bktr.h 516BKTR_USE_PLL opt_bktr.h 517BKTR_GPIO_ACCESS opt_bktr.h 518BKTR_NO_MSP_RESET opt_bktr.h 519BKTR_430_FX_MODE opt_bktr.h 520BKTR_SIS_VIA_MODE opt_bktr.h 521BKTR_USE_FREEBSD_SMBUS opt_bktr.h 522 523# meteor opt_meteor.h 524METEOR_ALLOC_PAGES opt_meteor.h 525METEOR_TEST_VIDEO opt_meteor.h 526METEOR_SYSTEM_DEFAULT opt_meteor.h 527METEOR_DEALLOC_PAGES opt_meteor.h 528METEOR_DEALLOC_ABOVE opt_meteor.h 529 530# options for serial support 531COM_ESP opt_sio.h 532COM_MULTIPORT opt_sio.h 533BREAK_TO_DEBUGGER opt_comconsole.h 534ALT_BREAK_TO_DEBUGGER opt_comconsole.h 535 536# options for bus/device framework 537BUS_DEBUG opt_bus.h 538 539# options for USB support 540UHCI_DEBUG opt_usb.h 541OHCI_DEBUG opt_usb.h 542USB_DEBUG opt_usb.h 543UGEN_DEBUG opt_usb.h 544UHID_DEBUG opt_usb.h 545UHUB_DEBUG opt_usb.h 546UKBD_DEBUG opt_usb.h 547ULPT_DEBUG opt_usb.h 548UMASS_DEBUG opt_usb.h 549UMS_DEBUG opt_usb.h 550URIO_DEBUG opt_usb.h 551UKBD_DFLT_KEYMAP opt_ukbd.h 552UVSCOM_DEFAULT_OPKTSIZE opt_uvscom.h 553 554# Vinum options 555VINUMDEBUG opt_vinum.h 556VINUM_AUTOSTART opt_vinum.h 557 558# Embedded system options 559INIT_PATH opt_init_path.h 560 561ROOTDEVNAME opt_rootdevname.h 562 563FDC_DEBUG opt_fdc.h 564PCFCLOCK_VERBOSE opt_pcfclock.h 565PCFCLOCK_MAX_RETRIES opt_pcfclock.h 566TDFX_LINUX opt_tdfx.h 567 568# RAIDframe options 569RAID_AUTOCONFIG opt_raid.h 570RAID_DEBUG opt_raid.h 571 572KTR opt_global.h 573KTR_ALQ opt_ktr.h 574KTR_MASK opt_ktr.h 575KTR_CPUMASK opt_ktr.h 576KTR_COMPILE opt_global.h 577KTR_ENTRIES opt_global.h 578KTR_VERBOSE opt_ktr.h 579WITNESS opt_global.h 580WITNESS_DDB opt_witness.h 581WITNESS_SKIPSPIN opt_witness.h 582 583# options for ACPI support 584ACPI_DEBUG opt_acpi.h 585ACPI_NO_SEMAPHORES opt_acpi.h 586ACPI_MAX_THREADS opt_acpi.h 587 588# options for DEVFS, see sys/fs/devfs/devfs.h 589NDEVFSINO opt_devfs.h 590NDEVFSOVERFLOW opt_devfs.h 591 592# various 'device presence' options. 593DEV_ISA opt_isa.h 594DEV_MCA opt_mca.h 595DEV_BPF opt_bpf.h 596DEV_SPLASH opt_splash.h 597 598# ed driver 599ED_NO_MIIBUS opt_ed.h 600 601# wi driver 602WI_SYMBOL_FIRMWARE opt_wi.h 603 604# XXX bogusly global. 605DEVICE_POLLING opt_global.h 606 607# options for ubsec driver 608UBSEC_DEBUG opt_ubsec.h 609UBSEC_RNDTEST opt_ubsec.h 610UBSEC_NO_RNG opt_ubsec.h 611 612# options for hifn driver 613HIFN_DEBUG opt_hifn.h 614HIFN_RNDTEST opt_hifn.h 615HIFN_NO_RNG opt_hifn.h 616 617# syscons options 618MAXCONS opt_syscons.h 619SC_ALT_MOUSE_IMAGE opt_syscons.h 620SC_CUT_SPACES2TABS opt_syscons.h 621SC_CUT_SEPCHARS opt_syscons.h 622SC_DEBUG_LEVEL opt_syscons.h 623SC_DFLT_FONT opt_syscons.h 624SC_DISABLE_DDBKEY opt_syscons.h 625SC_DISABLE_REBOOT opt_syscons.h 626SC_HISTORY_SIZE opt_syscons.h 627SC_KERNEL_CONS_ATTR opt_syscons.h 628SC_KERNEL_CONS_REV_ATTR opt_syscons.h 629SC_MOUSE_CHAR opt_syscons.h 630SC_NO_CUTPASTE opt_syscons.h 631SC_NO_FONT_LOADING opt_syscons.h 632SC_NO_HISTORY opt_syscons.h 633SC_NO_SYSMOUSE opt_syscons.h 634SC_NORM_ATTR opt_syscons.h 635SC_NORM_REV_ATTR opt_syscons.h 636SC_PIXEL_MODE opt_syscons.h 637SC_RENDER_DEBUG opt_syscons.h 638SC_TWOBUTTON_MOUSE opt_syscons.h 639SC_NO_SUSPEND_VTYSWITCH opt_syscons.h 640 641# kbd options 642KBD_DISABLE_KEYMAP_LOAD opt_kbd.h 643KBD_INSTALL_CDEV opt_kbd.h 644KBD_MAXRETRY opt_kbd.h 645KBD_MAXWAIT opt_kbd.h 646KBD_RESETDELAY opt_kbd.h 647KBDIO_DEBUG opt_kbd.h 648 649# options for the Atheros HAL (only useful with source code) 650AH_SUPPORT_AR5210 opt_ah.h 651AH_SUPPORT_AR5211 opt_ah.h 652AH_SUPPORT_AR5212 opt_ah.h 653AH_DEBUG opt_ah.h 654AH_DEBUG_ALQ opt_ah.h 655AH_ASSERT opt_ah.h 656