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