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