1# $FreeBSD$ 2# 3# NOTES -- Lines that can be cut/pasted into kernel and hints configs. 4# 5# Lines that begin with 'device', 'options', 'machine', 'ident', 'maxusers', 6# 'makeoptions', 'hints', etc. go into the kernel configuration that you 7# run config(8) with. 8# 9# Lines that begin with 'hint.' are NOT for config(8), they go into your 10# hints file. See /boot/device.hints and/or the 'hints' config(8) directive. 11# 12# Please use ``make LINT'' to create an old-style LINT file if you want to 13# do kernel test-builds. 14# 15# This file contains machine independent kernel configuration notes. For 16# machine dependent notes, look in /sys/<arch>/conf/NOTES. 17# 18 19# 20# NOTES conventions and style guide: 21# 22# Large block comments should begin and end with a line containing only a 23# comment character. 24# 25# To describe a particular object, a block comment (if it exists) should 26# come first. Next should come device, options, and hints lines in that 27# order. All device and option lines must be described by a comment that 28# doesn't just expand the device or option name. Use only a concise 29# comment on the same line if possible. Very detailed descriptions of 30# devices and subsystems belong in man pages. 31# 32# A space followed by a tab separates 'options' from an option name. Two 33# spaces followed by a tab separate 'device' from a device name. Comments 34# after an option or device should use one space after the comment character. 35# To comment out a negative option that disables code and thus should not be 36# enabled for LINT builds, precede 'options' with "#!". 37# 38 39# 40# This is the ``identification'' of the kernel. Usually this should 41# be the same as the name of your kernel. 42# 43ident LINT 44 45# 46# The `maxusers' parameter controls the static sizing of a number of 47# internal system tables by a formula defined in subr_param.c. 48# Omitting this parameter or setting it to 0 will cause the system to 49# auto-size based on physical memory. 50# 51maxusers 10 52 53# 54# The `makeoptions' parameter allows variables to be passed to the 55# generated Makefile in the build area. 56# 57# CONF_CFLAGS gives some extra compiler flags that are added to ${CFLAGS} 58# after most other flags. Here we use it to inhibit use of non-optimal 59# gcc builtin functions (e.g., memcmp). 60# 61# DEBUG happens to be magic. 62# The following is equivalent to 'config -g KERNELNAME' and creates 63# 'kernel.debug' compiled with -g debugging as well as a normal 64# 'kernel'. Use 'make install.debug' to install the debug kernel 65# but that isn't normally necessary as the debug symbols are not loaded 66# by the kernel and are not useful there anyway. 67# 68# KERNEL can be overridden so that you can change the default name of your 69# kernel. 70# 71# MODULES_OVERRIDE can be used to limit modules built to a specific list. 72# 73makeoptions CONF_CFLAGS=-fno-builtin #Don't allow use of memcmp, etc. 74#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols 75#makeoptions KERNEL=foo #Build kernel "foo" and install "/foo" 76# Only build Linux API modules and plus those parts of the sound system I need. 77#makeoptions MODULES_OVERRIDE="linux sound/sound sound/driver/maestro3" 78makeoptions DESTDIR=/tmp 79 80 81# 82# Certain applications can grow to be larger than the 512M limit 83# that FreeBSD initially imposes. Below are some options to 84# allow that limit to grow to 1GB, and can be increased further 85# with changing the parameters. MAXDSIZ is the maximum that the 86# limit can be set to, and the DFLDSIZ is the default value for 87# the limit. MAXSSIZ is the maximum that the stack limit can be 88# set to. You might want to set the default lower than the max, 89# and explicitly set the maximum with a shell command for processes 90# that regularly exceed the limit like INND. 91# 92options MAXDSIZ=(1024UL*1024*1024) 93options MAXSSIZ=(128UL*1024*1024) 94options DFLDSIZ=(1024UL*1024*1024) 95 96# 97# BLKDEV_IOSIZE sets the default block size used in user block 98# device I/O. Note that this value will be overridden by the label 99# when specifying a block device from a label with a non-0 100# partition blocksize. The default is PAGE_SIZE. 101# 102options BLKDEV_IOSIZE=8192 103 104# Options for the VM subsystem 105# L2 cache size (in KB) can be specified in PQ_CACHESIZE 106options PQ_CACHESIZE=512 # color for 512k cache 107# Deprecated options supported for backwards compatibility 108#options PQ_NOOPT # No coloring 109#options PQ_LARGECACHE # color for 512k cache 110#options PQ_HUGECACHE # color for 1024k cache 111#options PQ_MEDIUMCACHE # color for 256k cache 112#options PQ_NORMALCACHE # color for 64k cache 113 114# This allows you to actually store this configuration file into 115# the kernel binary itself, where it may be later read by saying: 116# strings -n 3 /boot/kernel/kernel | sed -n 's/^___//p' > MYKERNEL 117# 118options INCLUDE_CONFIG_FILE # Include this file in kernel 119 120options GEOM_AES # Don't use, use GEOM_BDE 121options GEOM_APPLE # Apple partitioning 122options GEOM_BDE # Disk encryption. 123options GEOM_BSD # BSD disklabels 124options GEOM_CONCAT # Disk concatenation. 125options GEOM_FOX # Redundant path mitigation 126options GEOM_GATE # Userland services. 127options GEOM_GPT # GPT partitioning 128options GEOM_LABEL # Providers labelization. 129options GEOM_MBR # DOS/MBR partitioning 130options GEOM_MIRROR # Disk mirroring. 131options GEOM_NOP # Test class. 132options GEOM_PC98 # NEC PC9800 partitioning 133options GEOM_STRIPE # Disk striping. 134options GEOM_SUNLABEL # Sun/Solaris partitioning 135options GEOM_VOL # Volume names from UFS superblock 136 137# 138# The root device and filesystem type can be compiled in; 139# this provides a fallback option if the root device cannot 140# be correctly guessed by the bootstrap code, or an override if 141# the RB_DFLTROOT flag (-r) is specified when booting the kernel. 142# 143options ROOTDEVNAME=\"ufs:da0s2e\" 144 145 146##################################################################### 147# Scheduler options: 148# 149# Specifying one of SCHED_4BSD or SCHED_ULE is mandatory. These options 150# select which scheduler is compiled in. 151# 152# SCHED_4BSD is the historical, proven, BSD scheduler. It has a global run 153# queue and no cpu affinity which makes it suboptimal for SMP. It has very 154# good interactivity and priority selection. 155# 156# SCHED_ULE is a new scheduler that has been designed for SMP and has some 157# advantages for UP as well. It is intended to replace the 4BSD scheduler 158# over time. 159# 160options SCHED_4BSD 161#options SCHED_ULE 162 163##################################################################### 164# SMP OPTIONS: 165# 166# SMP enables building of a Symmetric MultiProcessor Kernel. 167 168# Mandatory: 169options SMP # Symmetric MultiProcessor Kernel 170 171# ADAPTIVE_MUTEXES changes the behavior of blocking mutexes to spin 172# if the thread that currently owns the mutex is executing on another 173# CPU. This behaviour is enabled by default, so this option can be used 174# to disable it. 175options NO_ADAPTIVE_MUTEXES 176 177# ADAPTIVE_GIANT causes the Giant lock to also be made adaptive when 178# running without NO_ADAPTIVE_MUTEXES. Normally, because Giant is assumed 179# to be held for extended periods, contention on Giant will cause a thread 180# to sleep rather than spinning. 181options ADAPTIVE_GIANT 182 183# MUTEX_NOINLINE forces mutex operations to call functions to perform each 184# operation rather than inlining the simple cases. This can be used to 185# shrink the size of the kernel text segment. Note that this behavior is 186# already implied by the INVARIANT_SUPPORT, INVARIANTS, MUTEX_PROFILING, 187# and WITNESS options. 188options MUTEX_NOINLINE 189 190# MUTEX_WAKE_ALL changes the mutex unlock algorithm to wake all waiters 191# when a contested mutex is released rather than just awaking the highest 192# priority waiter. 193options MUTEX_WAKE_ALL 194 195# SMP Debugging Options: 196# 197# FULL_PREEMPTION instructs the kernel to preempt non-realtime kernel 198# threads. It sole use is to expose race conditions and other 199# bugs during development. Enabling this option will reduce 200# performance and increase the frequency of kernel panics by 201# design. If you aren't sure that you need it then you don't. 202# DON'T TURN THIS ON. 203# MUTEX_DEBUG enables various extra assertions in the mutex code. 204# SLEEPQUEUE_PROFILING enables rudimentary profiling of the hash table 205# used to hold active sleep queues. 206# TURNSTILE_PROFILING enables rudimentary profiling of the hash table 207# used to hold active lock queues. 208# WITNESS enables the witness code which detects deadlocks and cycles 209# during locking operations. 210# WITNESS_KDB causes the witness code to drop into the kernel debugger if 211# a lock hierarchy violation occurs or if locks are held when going to 212# sleep. 213# WITNESS_SKIPSPIN disables the witness checks on spin mutexes. 214options FULL_PREEMPTION 215options MUTEX_DEBUG 216options WITNESS 217options WITNESS_KDB 218options WITNESS_SKIPSPIN 219 220# MUTEX_PROFILING - Profiling mutual exclusion locks (mutexes). See 221# MUTEX_PROFILING(9) for details. 222options MUTEX_PROFILING 223 224# Profiling for internal hash tables. 225options SLEEPQUEUE_PROFILING 226options TURNSTILE_PROFILING 227 228 229##################################################################### 230# COMPATIBILITY OPTIONS 231 232# 233# Implement system calls compatible with 4.3BSD and older versions of 234# FreeBSD. You probably do NOT want to remove this as much current code 235# still relies on the 4.3 emulation. Note that some architectures that 236# are supported by FreeBSD do not include support for certain important 237# aspects of this compatibility option, namely those related to the 238# signal delivery mechanism. 239# 240options COMPAT_43 241 242# Enable FreeBSD4 compatibility syscalls 243options COMPAT_FREEBSD4 244 245# 246# These three options provide support for System V Interface 247# Definition-style interprocess communication, in the form of shared 248# memory, semaphores, and message queues, respectively. 249# 250options SYSVSHM 251options SYSVSEM 252options SYSVMSG 253 254 255##################################################################### 256# DEBUGGING OPTIONS 257 258# 259# Compile with kernel debugger related code. 260# 261options KDB 262 263# 264# Print a stack trace of the current thread on the console for a panic. 265# 266options KDB_TRACE 267 268# 269# Don't enter the debugger for a panic. Intended for unattended operation 270# where you may want to enter the debugger from the console, but still want 271# the machine to recover from a panic. 272# 273options KDB_UNATTENDED 274 275# 276# Enable the ddb debugger backend. 277# 278options DDB 279 280# 281# Print the numerical value of symbols in addition to the symbolic 282# representation. 283# 284options DDB_NUMSYM 285 286# 287# Enable the remote gdb debugger backend. 288# 289options GDB 290 291# 292# KTRACE enables the system-call tracing facility ktrace(2). To be more 293# SMP-friendly, KTRACE uses a worker thread to process most trace events 294# asynchronously to the thread generating the event. This requires a 295# pre-allocated store of objects representing trace events. The 296# KTRACE_REQUEST_POOL option specifies the initial size of this store. 297# The size of the pool can be adjusted both at boottime and runtime via 298# the kern.ktrace_request_pool tunable and sysctl. 299# 300options KTRACE #kernel tracing 301options KTRACE_REQUEST_POOL=101 302 303# 304# KTR is a kernel tracing mechanism imported from BSD/OS. Currently it 305# has no userland interface aside from a few sysctl's. It is enabled with 306# the KTR option. KTR_ENTRIES defines the number of entries in the circular 307# trace buffer. KTR_COMPILE defines the mask of events to compile into the 308# kernel as defined by the KTR_* constants in <sys/ktr.h>. KTR_MASK defines the 309# initial value of the ktr_mask variable which determines at runtime what 310# events to trace. KTR_CPUMASK determines which CPU's log events, with 311# bit X corresponding to cpu X. KTR_VERBOSE enables dumping of KTR events 312# to the console by default. This functionality can be toggled via the 313# debug.ktr_verbose sysctl and defaults to off if KTR_VERBOSE is not defined. 314# 315options KTR 316options KTR_ENTRIES=1024 317options KTR_COMPILE=(KTR_INTR|KTR_PROC) 318options KTR_MASK=KTR_INTR 319options KTR_CPUMASK=0x3 320options KTR_VERBOSE 321 322# 323# The INVARIANTS option is used in a number of source files to enable 324# extra sanity checking of internal structures. This support is not 325# enabled by default because of the extra time it would take to check 326# for these conditions, which can only occur as a result of 327# programming errors. 328# 329options INVARIANTS 330 331# 332# The INVARIANT_SUPPORT option makes us compile in support for 333# verifying some of the internal structures. It is a prerequisite for 334# 'INVARIANTS', as enabling 'INVARIANTS' will make these functions be 335# called. The intent is that you can set 'INVARIANTS' for single 336# source files (by changing the source file or specifying it on the 337# command line) if you have 'INVARIANT_SUPPORT' enabled. Also, if you 338# wish to build a kernel module with 'INVARIANTS', then adding 339# 'INVARIANT_SUPPORT' to your kernel will provide all the necessary 340# infrastructure without the added overhead. 341# 342options INVARIANT_SUPPORT 343 344# 345# The DIAGNOSTIC option is used to enable extra debugging information 346# from some parts of the kernel. As this makes everything more noisy, 347# it is disabled by default. 348# 349options DIAGNOSTIC 350 351# 352# REGRESSION causes optional kernel interfaces necessary only for regression 353# testing to be enabled. These interfaces may constitute security risks 354# when enabled, as they permit processes to easily modify aspects of the 355# run-time environment to reproduce unlikely or unusual (possibly normally 356# impossible) scenarios. 357# 358options REGRESSION 359 360# 361# RESTARTABLE_PANICS allows one to continue from a panic as if it were 362# a call to the debugger via the Debugger() function instead. It is only 363# useful if a kernel debugger is present. To restart from a panic, reset 364# the panicstr variable to NULL and continue execution. This option is 365# for development use only and should NOT be used in production systems 366# to "workaround" a panic. 367# 368#options RESTARTABLE_PANICS 369 370# 371# This option let some drivers co-exist that can't co-exist in a running 372# system. This is used to be able to compile all kernel code in one go for 373# quality assurance purposes (like this file, which the option takes it name 374# from.) 375# 376options COMPILING_LINT 377 378 379##################################################################### 380# NETWORKING OPTIONS 381 382# 383# Protocol families: 384# Only the INET (Internet) family is officially supported in FreeBSD. 385# 386options INET #Internet communications protocols 387options INET6 #IPv6 communications protocols 388options IPSEC #IP security 389options IPSEC_ESP #IP security (crypto; define w/ IPSEC) 390options IPSEC_DEBUG #debug for IP security 391# 392# Set IPSEC_FILTERGIF to force packets coming through a gif tunnel 393# to be processed by any configured packet filtering (ipfw, ipf). 394# The default is that packets coming from a tunnel are _not_ processed; 395# they are assumed trusted. 396# 397# IPSEC history is preserved for such packets, and can be filtered 398# using ipfw(8)'s 'ipsec' keyword, when this option is enabled. 399# 400#options IPSEC_FILTERGIF #filter ipsec packets from a tunnel 401 402#options FAST_IPSEC #new IPsec (cannot define w/ IPSEC) 403 404options IPX #IPX/SPX communications protocols 405options IPXIP #IPX in IP encapsulation (not available) 406 407#options NCP #NetWare Core protocol 408 409options NETATALK #Appletalk communications protocols 410options NETATALKDEBUG #Appletalk debugging 411 412# 413# SMB/CIFS requester 414# NETSMB enables support for SMB protocol, it requires LIBMCHAIN and LIBICONV 415# options. 416# NETSMBCRYPTO enables support for encrypted passwords. 417options NETSMB #SMB/CIFS requester 418options NETSMBCRYPTO #encrypted password support for SMB 419 420# mchain library. It can be either loaded as KLD or compiled into kernel 421options LIBMCHAIN 422 423# altq(9). Enable the base part of the hooks with the ALTQ option. 424# Individual disciplines must be built into the base system and can not be 425# loaded as modules at this point. In order to build a SMP kernel you must 426# also have the ALTQ_NOPCC option. 427options ALTQ 428options ALTQ_CBQ # Class Bases Queueing 429options ALTQ_RED # Random Early Drop 430options ALTQ_RIO # RED In/Out 431options ALTQ_HFSC # Hierarchical Packet Scheduler 432options ALTQ_CDNR # Traffic conditioner 433options ALTQ_PRIQ # Priority Queueing 434options ALTQ_NOPCC # Required for SMP build 435options ALTQ_DEBUG 436 437# netgraph(4). Enable the base netgraph code with the NETGRAPH option. 438# Individual node types can be enabled with the corresponding option 439# listed below; however, this is not strictly necessary as netgraph 440# will automatically load the corresponding KLD module if the node type 441# is not already compiled into the kernel. Each type below has a 442# corresponding man page, e.g., ng_async(8). 443options NETGRAPH #netgraph(4) system 444options NETGRAPH_ASYNC 445options NETGRAPH_ATMLLC 446options NETGRAPH_ATM_ATMPIF 447options NETGRAPH_BLUETOOTH # ng_bluetooth(4) 448options NETGRAPH_BLUETOOTH_BT3C # ng_bt3c(4) 449options NETGRAPH_BLUETOOTH_H4 # ng_h4(4) 450options NETGRAPH_BLUETOOTH_HCI # ng_hci(4) 451options NETGRAPH_BLUETOOTH_L2CAP # ng_l2cap(4) 452options NETGRAPH_BLUETOOTH_SOCKET # ng_btsocket(4) 453options NETGRAPH_BLUETOOTH_UBT # ng_ubt(4) 454options NETGRAPH_BLUETOOTH_UBTBCMFW # ubtbcmfw(4) 455options NETGRAPH_BPF 456options NETGRAPH_BRIDGE 457options NETGRAPH_CISCO 458options NETGRAPH_DEVICE 459options NETGRAPH_ECHO 460options NETGRAPH_EIFACE 461options NETGRAPH_ETHER 462options NETGRAPH_FEC 463options NETGRAPH_FRAME_RELAY 464options NETGRAPH_GIF 465options NETGRAPH_GIF_DEMUX 466options NETGRAPH_HOLE 467options NETGRAPH_IFACE 468options NETGRAPH_IP_INPUT 469options NETGRAPH_KSOCKET 470options NETGRAPH_L2TP 471options NETGRAPH_LMI 472# MPPC compression requires proprietary files (not included) 473#options NETGRAPH_MPPC_COMPRESSION 474options NETGRAPH_MPPC_ENCRYPTION 475options NETGRAPH_ONE2MANY 476options NETGRAPH_PPP 477options NETGRAPH_PPPOE 478options NETGRAPH_PPTPGRE 479options NETGRAPH_RFC1490 480options NETGRAPH_SOCKET 481options NETGRAPH_SPLIT 482options NETGRAPH_SPPP 483options NETGRAPH_TEE 484options NETGRAPH_TTY 485options NETGRAPH_UI 486options NETGRAPH_VJC 487 488# NgATM - Netgraph ATM 489options NGATM_ATM 490options NGATM_ATMBASE 491options NGATM_SSCOP 492options NGATM_SSCFU 493options NGATM_UNI 494 495device mn # Munich32x/Falc54 Nx64kbit/sec cards. 496device musycc # LMC/SBE LMC1504 quad T1/E1 497 498# 499# Network interfaces: 500# The `loop' device is MANDATORY when networking is enabled. 501# The `ether' device provides generic code to handle 502# Ethernets; it is MANDATORY when an Ethernet device driver is 503# configured or token-ring is enabled. 504# The `wlan' device provides generic code to support 802.11 505# drivers, including host AP mode; it is MANDATORY for the wi 506# driver and will eventually be required by all 802.11 drivers. 507# The `fddi' device provides generic code to support FDDI. 508# The `arcnet' device provides generic code to support Arcnet. 509# The `sppp' device serves a similar role for certain types 510# of synchronous PPP links (like `cx', `ar'). 511# The `sl' device implements the Serial Line IP (SLIP) service. 512# The `ppp' device implements the Point-to-Point Protocol. 513# The `bpf' device enables the Berkeley Packet Filter. Be 514# aware of the legal and administrative consequences of enabling this 515# option. The number of devices determines the maximum number of 516# simultaneous BPF clients programs runnable. 517# The `disc' device implements a minimal network interface, 518# which throws away all packets sent and never receives any. It is 519# included for testing purposes. This shows up as the `ds' interface. 520# The `tap' device is a pty-like virtual Ethernet interface 521# The `tun' device implements (user-)ppp and nos-tun 522# The `gif' device implements IPv6 over IP4 tunneling, 523# IPv4 over IPv6 tunneling, IPv4 over IPv4 tunneling and 524# IPv6 over IPv6 tunneling. 525# The `gre' device implements two types of IP4 over IP4 tunneling: 526# GRE and MOBILE, as specified in the RFC1701 and RFC2004. 527# The XBONEHACK option allows the same pair of addresses to be configured on 528# multiple gif interfaces. 529# The `faith' device captures packets sent to it and diverts them 530# to the IPv4/IPv6 translation daemon. 531# The `stf' device implements 6to4 encapsulation. 532# The `ef' device provides support for multiple ethernet frame types 533# specified via ETHER_* options. See ef(4) for details. 534# 535# The pf packet filter consists of three devices: 536# The `pf' device provides /dev/pf and the firewall code itself. 537# The `pflog' device provides the pflog0 interface which logs packets. 538# The `pfsync' device provides the pfsync0 interface used for 539# synchronization of firewall state tables (over the net). 540# Requires option PFIL_HOOKS and (when used as a module) option RANDOM_IP_ID 541# 542# The PPP_BSDCOMP option enables support for compress(1) style entire 543# packet compression, the PPP_DEFLATE is for zlib/gzip style compression. 544# PPP_FILTER enables code for filtering the ppp data stream and selecting 545# events for resetting the demand dial activity timer - requires bpf. 546# See pppd(8) for more details. 547# 548device ether #Generic Ethernet 549device vlan #VLAN support 550device wlan #802.11 support 551device token #Generic TokenRing 552device fddi #Generic FDDI 553device arcnet #Generic Arcnet 554device sppp #Generic Synchronous PPP 555device loop #Network loopback device 556device bpf #Berkeley packet filter 557device disc #Discard device (ds0, ds1, etc) 558device tap #Virtual Ethernet driver 559device tun #Tunnel driver (ppp(8), nos-tun(8)) 560device sl #Serial Line IP 561device gre #IP over IP tunneling 562device pf #PF OpenBSD packet-filter firewall 563device pflog #logging support interface for PF 564device pfsync #synchronization interface for PF 565device ppp #Point-to-point protocol 566options PPP_BSDCOMP #PPP BSD-compress support 567options PPP_DEFLATE #PPP zlib/deflate/gzip support 568options PPP_FILTER #enable bpf filtering (needs bpf) 569 570device ef # Multiple ethernet frames support 571options ETHER_II # enable Ethernet_II frame 572options ETHER_8023 # enable Ethernet_802.3 (Novell) frame 573options ETHER_8022 # enable Ethernet_802.2 frame 574options ETHER_SNAP # enable Ethernet_802.2/SNAP frame 575 576# for IPv6 577device gif #IPv6 and IPv4 tunneling 578options XBONEHACK 579device faith #for IPv6 and IPv4 translation 580device stf #6to4 IPv6 over IPv4 encapsulation 581 582# 583# Internet family options: 584# 585# MROUTING enables the kernel multicast packet forwarder, which works 586# with mrouted(8). 587# 588# PIM enables Protocol Independent Multicast in the kernel. 589# Requires MROUTING enabled. 590# 591# IPFIREWALL enables support for IP firewall construction, in 592# conjunction with the `ipfw' program. IPFIREWALL_VERBOSE sends 593# logged packets to the system logger. IPFIREWALL_VERBOSE_LIMIT 594# limits the number of times a matching entry can be logged. 595# 596# WARNING: IPFIREWALL defaults to a policy of "deny ip from any to any" 597# and if you do not add other rules during startup to allow access, 598# YOU WILL LOCK YOURSELF OUT. It is suggested that you set firewall_type=open 599# in /etc/rc.conf when first enabling this feature, then refining the 600# firewall rules in /etc/rc.firewall after you've tested that the new kernel 601# feature works properly. 602# 603# IPFIREWALL_DEFAULT_TO_ACCEPT causes the default rule (at boot) to 604# allow everything. Use with care, if a cracker can crash your 605# firewall machine, they can get to your protected machines. However, 606# if you are using it as an as-needed filter for specific problems as 607# they arise, then this may be for you. Changing the default to 'allow' 608# means that you won't get stuck if the kernel and /sbin/ipfw binary get 609# out of sync. 610# 611# IPDIVERT enables the divert IP sockets, used by ``ipfw divert'' 612# 613# IPSTEALTH enables code to support stealth forwarding (i.e., forwarding 614# packets without touching the ttl). This can be useful to hide firewalls 615# from traceroute and similar tools. 616# 617# PFIL_HOOKS enables an abstraction layer which is meant to be used in 618# network code where filtering is required. See pfil(9). This option is 619# required by the IPFILTER option and the PF device. 620# 621# TCPDEBUG enables code which keeps traces of the TCP state machine 622# for sockets with the SO_DEBUG option set, which can then be examined 623# using the trpt(8) utility. 624# 625options MROUTING # Multicast routing 626options PIM # Protocol Independent Multicast 627options IPFIREWALL #firewall 628options IPFIREWALL_VERBOSE #enable logging to syslogd(8) 629options IPFIREWALL_VERBOSE_LIMIT=100 #limit verbosity 630options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default 631options IPV6FIREWALL #firewall for IPv6 632options IPV6FIREWALL_VERBOSE 633options IPV6FIREWALL_VERBOSE_LIMIT=100 634options IPV6FIREWALL_DEFAULT_TO_ACCEPT 635options IPDIVERT #divert sockets 636options IPFILTER #ipfilter support 637options IPFILTER_LOG #ipfilter logging 638options IPFILTER_DEFAULT_BLOCK #block all packets by default 639options IPSTEALTH #support for stealth forwarding 640options PFIL_HOOKS #required by IPFILTER 641options TCPDEBUG 642 643# The MBUF_STRESS_TEST option enables options which create 644# various random failures / extreme cases related to mbuf 645# functions. See mbuf(9) for a list of available test cases. 646options MBUF_STRESS_TEST 647 648# RANDOM_IP_ID causes the ID field in IP packets to be randomized 649# instead of incremented by 1 with each packet generated. This 650# option closes a minor information leak which allows remote 651# observers to determine the rate of packet generation on the 652# machine by watching the counter. 653options RANDOM_IP_ID 654 655# Statically Link in accept filters 656options ACCEPT_FILTER_DATA 657options ACCEPT_FILTER_HTTP 658 659# TCP_DROP_SYNFIN adds support for ignoring TCP packets with SYN+FIN. This 660# prevents nmap et al. from identifying the TCP/IP stack, but breaks support 661# for RFC1644 extensions and is not recommended for web servers. 662# 663options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN 664 665# TCP_SIGNATURE adds support for RFC 2385 (TCP-MD5) digests. These are 666# carried in TCP option 19. This option is commonly used to protect 667# TCP sessions (e.g. BGP) where IPSEC is not available nor desirable. 668# This is enabled on a per-socket basis using the TCP_MD5SIG socket option. 669# This requires the use of 'device crypto', 'options FAST_IPSEC', and 670# 'device cryptodev' as it depends on the non-KAME IPSEC SADB code. 671#options TCP_SIGNATURE #include support for RFC 2385 672 673# DUMMYNET enables the "dummynet" bandwidth limiter. You need IPFIREWALL 674# as well. See dummynet(4) and ipfw(8) for more info. When you run 675# DUMMYNET it is advisable to also have "options HZ=1000" to achieve a 676# smoother scheduling of the traffic. 677# 678# BRIDGE enables bridging between ethernet cards -- see bridge(4). 679# You can use IPFIREWALL and DUMMYNET together with bridging. 680# 681options DUMMYNET 682options BRIDGE 683 684# Zero copy sockets support. This enables "zero copy" for sending and 685# receiving data via a socket. The send side works for any type of NIC, 686# the receive side only works for NICs that support MTUs greater than the 687# page size of your architecture and that support header splitting. See 688# zero_copy(9) for more details. 689options ZERO_COPY_SOCKETS 690 691# 692# ATM (HARP version) options 693# 694# ATM_CORE includes the base ATM functionality code. This must be included 695# for ATM support. 696# 697# ATM_IP includes support for running IP over ATM. 698# 699# At least one (and usually only one) of the following signalling managers 700# must be included (note that all signalling managers include PVC support): 701# ATM_SIGPVC includes support for the PVC-only signalling manager `sigpvc'. 702# ATM_SPANS includes support for the `spans' signalling manager, which runs 703# the FORE Systems's proprietary SPANS signalling protocol. 704# ATM_UNI includes support for the `uni30' and `uni31' signalling managers, 705# which run the ATM Forum UNI 3.x signalling protocols. 706# 707# The `hfa' driver provides support for the FORE Systems, Inc. 708# PCA-200E ATM PCI Adapter. 709# 710# The `harp' pseudo-driver makes all NATM interface drivers available to HARP. 711# 712options ATM_CORE #core ATM protocol family 713options ATM_IP #IP over ATM support 714options ATM_SIGPVC #SIGPVC signalling manager 715options ATM_SPANS #SPANS signalling manager 716options ATM_UNI #UNI signalling manager 717 718device hfa #FORE PCA-200E ATM PCI 719device harp #Pseudo-interface for NATM 720 721 722##################################################################### 723# FILESYSTEM OPTIONS 724 725# 726# Only the root, /usr, and /tmp filesystems need be statically 727# compiled; everything else will be automatically loaded at mount 728# time. (Exception: the UFS family--- FFS --- cannot 729# currently be demand-loaded.) Some people still prefer to statically 730# compile other filesystems as well. 731# 732# NB: The NULL, PORTAL, UMAP and UNION filesystems are known to be 733# buggy, and WILL panic your system if you attempt to do anything with 734# them. They are included here as an incentive for some enterprising 735# soul to sit down and fix them. 736# 737 738# One of these is mandatory: 739options FFS #Fast filesystem 740options NFSCLIENT #Network File System client 741 742# The rest are optional: 743options CD9660 #ISO 9660 filesystem 744options FDESCFS #File descriptor filesystem 745options HPFS #OS/2 File system 746options MSDOSFS #MS DOS File System (FAT, FAT32) 747options NFSSERVER #Network File System server 748options NTFS #NT File System 749options NULLFS #NULL filesystem 750# Broken (depends on NCP): 751#options NWFS #NetWare filesystem 752options PORTALFS #Portal filesystem 753options PROCFS #Process filesystem (requires PSEUDOFS) 754options PSEUDOFS #Pseudo-filesystem framework 755options SMBFS #SMB/CIFS filesystem 756options UDF #Universal Disk Format 757# Broken (seriously (functionally) broken): 758#options UMAPFS #UID map filesystem 759options UNIONFS #Union filesystem 760# The xFS_ROOT options REQUIRE the associated ``options xFS'' 761options NFS_ROOT #NFS usable as root device 762 763# Soft updates is a technique for improving filesystem speed and 764# making abrupt shutdown less risky. 765# 766options SOFTUPDATES 767 768# Extended attributes allow additional data to be associated with files, 769# and is used for ACLs, Capabilities, and MAC labels. 770# See src/sys/ufs/ufs/README.extattr for more information. 771options UFS_EXTATTR 772options UFS_EXTATTR_AUTOSTART 773 774# Access Control List support for UFS filesystems. The current ACL 775# implementation requires extended attribute support, UFS_EXTATTR, 776# for the underlying filesystem. 777# See src/sys/ufs/ufs/README.acls for more information. 778options UFS_ACL 779 780# Directory hashing improves the speed of operations on very large 781# directories at the expense of some memory. 782options UFS_DIRHASH 783 784# Make space in the kernel for a root filesystem on a md device. 785# Define to the number of kilobytes to reserve for the filesystem. 786options MD_ROOT_SIZE=10 787 788# Make the md device a potential root device, either with preloaded 789# images of type mfs_root or md_root. 790options MD_ROOT 791 792# Disk quotas are supported when this option is enabled. 793options QUOTA #enable disk quotas 794 795# If you are running a machine just as a fileserver for PC and MAC 796# users, using SAMBA or Netatalk, you may consider setting this option 797# and keeping all those users' directories on a filesystem that is 798# mounted with the suiddir option. This gives new files the same 799# ownership as the directory (similar to group). It's a security hole 800# if you let these users run programs, so confine it to file-servers 801# (but it'll save you lots of headaches in those cases). Root owned 802# directories are exempt and X bits are cleared. The suid bit must be 803# set on the directory as well; see chmod(1) PC owners can't see/set 804# ownerships so they keep getting their toes trodden on. This saves 805# you all the support calls as the filesystem it's used on will act as 806# they expect: "It's my dir so it must be my file". 807# 808options SUIDDIR 809 810# NFS options: 811options NFS_MINATTRTIMO=3 # VREG attrib cache timeout in sec 812options NFS_MAXATTRTIMO=60 813options NFS_MINDIRATTRTIMO=30 # VDIR attrib cache timeout in sec 814options NFS_MAXDIRATTRTIMO=60 815options NFS_GATHERDELAY=10 # Default write gather delay (msec) 816options NFS_WDELAYHASHSIZ=16 # and with this 817options NFS_DEBUG # Enable NFS Debugging 818 819# Coda stuff: 820options CODA #CODA filesystem. 821device vcoda 4 #coda minicache <-> venus comm. 822# Use the old Coda 5.x venus<->kernel interface instead of the new 823# realms-aware 6.x protocol. 824#options CODA_COMPAT_5 825 826# 827# Add support for the EXT2FS filesystem of Linux fame. Be a bit 828# careful with this - the ext2fs code has a tendency to lag behind 829# changes and not be exercised very much, so mounting read/write could 830# be dangerous (and even mounting read only could result in panics.) 831# 832options EXT2FS 833 834# Use real implementations of the aio_* system calls. There are numerous 835# stability and security issues in the current aio code that make it 836# unsuitable for inclusion on machines with untrusted local users. 837options VFS_AIO 838 839# Cryptographically secure random number generator; /dev/random 840device random 841 842# The bit-bucket; /dev/null 843device null 844 845# The system memory devices; /dev/mem, /dev/kmem 846device mem 847 848# Optional character code conversion support with LIBICONV. 849# Each option requires their base file system and LIBICONV. 850options CD9660_ICONV 851options MSDOSFS_ICONV 852options NTFS_ICONV 853options UDF_ICONV 854 855# Experimental support for large MS-DOS filesystems. 856# 857# WARNING: This uses at least 32 bytes of kernel memory (which is not 858# reclaimed until the FS is unmounted) for each file on disk to map 859# between the 32-bit inode numbers used by VFS and the 64-bit pseudo-inode 860# numbers used internally by msdosfs. This is only safe to use in certain 861# controlled situations (e.g. read-only FS with less than 1 million files). 862# Since the mappings do not persist across unmounts (or reboots), these 863# filesystems are not suitable for exporting through NFS, or any other 864# application that requires fixed inode numbers. 865options MSDOSFS_LARGE 866 867 868##################################################################### 869# POSIX P1003.1B 870 871# Real time extensions added in the 1993 Posix 872# _KPOSIX_PRIORITY_SCHEDULING: Build in _POSIX_PRIORITY_SCHEDULING 873 874options _KPOSIX_PRIORITY_SCHEDULING 875# p1003_1b_semaphores are very experimental, 876# user should be ready to assist in debugging if problems arise. 877options P1003_1B_SEMAPHORES 878 879 880##################################################################### 881# SECURITY POLICY PARAMETERS 882 883# Support for Mandatory Access Control (MAC): 884options MAC 885options MAC_BIBA 886options MAC_BSDEXTENDED 887options MAC_DEBUG 888options MAC_IFOFF 889options MAC_LOMAC 890options MAC_MLS 891options MAC_NONE 892options MAC_PARTITION 893options MAC_PORTACL 894options MAC_SEEOTHERUIDS 895options MAC_STUB 896options MAC_TEST 897 898 899##################################################################### 900# CLOCK OPTIONS 901 902# The granularity of operation is controlled by the kernel option HZ whose 903# default value (100) means a granularity of 10ms (1s/HZ). 904# Some subsystems, such as DUMMYNET, might benefit from a smaller 905# granularity such as 1ms or less, for a smoother scheduling of packets. 906# Consider, however, that reducing the granularity too much might 907# cause excessive overhead in clock interrupt processing, 908# potentially causing ticks to be missed and thus actually reducing 909# the accuracy of operation. 910 911options HZ=100 912 913# Enable support for the kernel PLL to use an external PPS signal, 914# under supervision of [x]ntpd(8) 915# More info in ntpd documentation: http://www.eecis.udel.edu/~ntp 916 917options PPS_SYNC 918 919 920##################################################################### 921# SCSI DEVICES 922 923# SCSI DEVICE CONFIGURATION 924 925# The SCSI subsystem consists of the `base' SCSI code, a number of 926# high-level SCSI device `type' drivers, and the low-level host-adapter 927# device drivers. The host adapters are listed in the ISA and PCI 928# device configuration sections below. 929# 930# It is possible to wire down your SCSI devices so that a given bus, 931# target, and LUN always come on line as the same device unit. In 932# earlier versions the unit numbers were assigned in the order that 933# the devices were probed on the SCSI bus. This means that if you 934# removed a disk drive, you may have had to rewrite your /etc/fstab 935# file, and also that you had to be careful when adding a new disk 936# as it may have been probed earlier and moved your device configuration 937# around. (See also option GEOM_VOL for a different solution to this 938# problem.) 939 940# This old behavior is maintained as the default behavior. The unit 941# assignment begins with the first non-wired down unit for a device 942# type. For example, if you wire a disk as "da3" then the first 943# non-wired disk will be assigned da4. 944 945# The syntax for wiring down devices is: 946 947hint.scbus.0.at="ahc0" 948hint.scbus.1.at="ahc1" 949hint.scbus.1.bus="0" 950hint.scbus.3.at="ahc2" 951hint.scbus.3.bus="0" 952hint.scbus.2.at="ahc2" 953hint.scbus.2.bus="1" 954hint.da.0.at="scbus0" 955hint.da.0.target="0" 956hint.da.0.unit="0" 957hint.da.1.at="scbus3" 958hint.da.1.target="1" 959hint.da.2.at="scbus2" 960hint.da.2.target="3" 961hint.sa.1.at="scbus1" 962hint.sa.1.target="6" 963 964# "units" (SCSI logical unit number) that are not specified are 965# treated as if specified as LUN 0. 966 967# All SCSI devices allocate as many units as are required. 968 969# The ch driver drives SCSI Media Changer ("jukebox") devices. 970# 971# The da driver drives SCSI Direct Access ("disk") and Optical Media 972# ("WORM") devices. 973# 974# The sa driver drives SCSI Sequential Access ("tape") devices. 975# 976# The cd driver drives SCSI Read Only Direct Access ("cd") devices. 977# 978# The ses driver drives SCSI Environment Services ("ses") and 979# SAF-TE ("SCSI Accessible Fault-Tolerant Enclosure") devices. 980# 981# The pt driver drives SCSI Processor devices. 982# 983# 984# Target Mode support is provided here but also requires that a SIM 985# (SCSI Host Adapter Driver) provide support as well. 986# 987# The targ driver provides target mode support as a Processor type device. 988# It exists to give the minimal context necessary to respond to Inquiry 989# commands. There is a sample user application that shows how the rest 990# of the command support might be done in /usr/share/examples/scsi_target. 991# 992# The targbh driver provides target mode support and exists to respond 993# to incoming commands that do not otherwise have a logical unit assigned 994# to them. 995# 996# The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI 997# configuration as the "pass" driver. 998 999device scbus #base SCSI code 1000device ch #SCSI media changers 1001device da #SCSI direct access devices (aka disks) 1002device sa #SCSI tapes 1003device cd #SCSI CD-ROMs 1004device ses #SCSI Environmental Services (and SAF-TE) 1005device pt #SCSI processor 1006device targ #SCSI Target Mode Code 1007device targbh #SCSI Target Mode Blackhole Device 1008device pass #CAM passthrough driver 1009 1010# CAM OPTIONS: 1011# debugging options: 1012# -- NOTE -- If you specify one of the bus/target/lun options, you must 1013# specify them all! 1014# CAMDEBUG: When defined enables debugging macros 1015# CAM_DEBUG_BUS: Debug the given bus. Use -1 to debug all busses. 1016# CAM_DEBUG_TARGET: Debug the given target. Use -1 to debug all targets. 1017# CAM_DEBUG_LUN: Debug the given lun. Use -1 to debug all luns. 1018# CAM_DEBUG_FLAGS: OR together CAM_DEBUG_INFO, CAM_DEBUG_TRACE, 1019# CAM_DEBUG_SUBTRACE, and CAM_DEBUG_CDB 1020# 1021# CAM_MAX_HIGHPOWER: Maximum number of concurrent high power (start unit) cmds 1022# CAM_NEW_TRAN_CODE: this is the new transport layer code that will be switched 1023# to soon 1024# SCSI_NO_SENSE_STRINGS: When defined disables sense descriptions 1025# SCSI_NO_OP_STRINGS: When defined disables opcode descriptions 1026# SCSI_DELAY: The number of MILLISECONDS to freeze the SIM (scsi adapter) 1027# queue after a bus reset, and the number of milliseconds to 1028# freeze the device queue after a bus device reset. This 1029# can be changed at boot and runtime with the 1030# kern.cam.scsi_delay tunable/sysctl. 1031options CAMDEBUG 1032options CAM_DEBUG_BUS=-1 1033options CAM_DEBUG_TARGET=-1 1034options CAM_DEBUG_LUN=-1 1035options CAM_DEBUG_FLAGS=(CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB) 1036options CAM_MAX_HIGHPOWER=4 1037options SCSI_NO_SENSE_STRINGS 1038options SCSI_NO_OP_STRINGS 1039options SCSI_DELAY=8000 # Be pessimistic about Joe SCSI device 1040 1041# Options for the CAM CDROM driver: 1042# CHANGER_MIN_BUSY_SECONDS: Guaranteed minimum time quantum for a changer LUN 1043# CHANGER_MAX_BUSY_SECONDS: Maximum time quantum per changer LUN, only 1044# enforced if there is I/O waiting for another LUN 1045# The compiled in defaults for these variables are 2 and 10 seconds, 1046# respectively. 1047# 1048# These can also be changed on the fly with the following sysctl variables: 1049# kern.cam.cd.changer.min_busy_seconds 1050# kern.cam.cd.changer.max_busy_seconds 1051# 1052options CHANGER_MIN_BUSY_SECONDS=2 1053options CHANGER_MAX_BUSY_SECONDS=10 1054 1055# Options for the CAM sequential access driver: 1056# SA_IO_TIMEOUT: Timeout for read/write/wfm operations, in minutes 1057# SA_SPACE_TIMEOUT: Timeout for space operations, in minutes 1058# SA_REWIND_TIMEOUT: Timeout for rewind operations, in minutes 1059# SA_ERASE_TIMEOUT: Timeout for erase operations, in minutes 1060# SA_1FM_AT_EOD: Default to model which only has a default one filemark at EOT. 1061options SA_IO_TIMEOUT=4 1062options SA_SPACE_TIMEOUT=60 1063options SA_REWIND_TIMEOUT=(2*60) 1064options SA_ERASE_TIMEOUT=(4*60) 1065options SA_1FM_AT_EOD 1066 1067# Optional timeout for the CAM processor target (pt) device 1068# This is specified in seconds. The default is 60 seconds. 1069options SCSI_PT_DEFAULT_TIMEOUT=60 1070 1071# Optional enable of doing SES passthrough on other devices (e.g., disks) 1072# 1073# Normally disabled because a lot of newer SCSI disks report themselves 1074# as having SES capabilities, but this can then clot up attempts to build 1075# build a topology with the SES device that's on the box these drives 1076# are in.... 1077options SES_ENABLE_PASSTHROUGH 1078 1079 1080##################################################################### 1081# MISCELLANEOUS DEVICES AND OPTIONS 1082 1083# The `pty' device usually turns out to be ``effectively mandatory'', 1084# as it is required for `telnetd', `rlogind', `screen', `emacs', and 1085# `xterm', among others. 1086 1087device pty #Pseudo ttys 1088device nmdm #back-to-back tty devices 1089device md #Memory/malloc disk 1090device snp #Snoop device - to look at pty/vty/etc.. 1091device ccd #Concatenated disk driver 1092 1093# Configuring Vinum into the kernel is not necessary, since the kld 1094# module gets started automatically when vinum(8) starts. This 1095# device is also untested. Use at your own risk. 1096# 1097# The option VINUMDEBUG must match the value set in CFLAGS 1098# in src/sbin/vinum/Makefile. Failure to do so will result in 1099# the following message from vinum(8): 1100# 1101# Can't get vinum config: Invalid argument 1102# 1103# see vinum(4) for more reasons not to use these options. 1104device vinum #Vinum concat/mirror/raid driver 1105options VINUMDEBUG #enable Vinum debugging hooks 1106 1107# Kernel side iconv library 1108options LIBICONV 1109 1110# Size of the kernel message buffer. Should be N * pagesize. 1111options MSGBUF_SIZE=40960 1112 1113# Maximum size of a tty or pty input buffer. 1114options TTYHOG=8193 1115 1116 1117##################################################################### 1118# HARDWARE DEVICE CONFIGURATION 1119 1120# For ISA the required hints are listed. 1121# EISA, MCA, PCI and pccard are self identifying buses, so no hints 1122# are needed. 1123 1124# 1125# Mandatory devices: 1126# 1127 1128# The keyboard controller; it controls the keyboard and the PS/2 mouse. 1129device atkbdc 1130hint.atkbdc.0.at="isa" 1131hint.atkbdc.0.port="0x060" 1132 1133# The AT keyboard 1134device atkbd 1135hint.atkbd.0.at="atkbdc" 1136hint.atkbd.0.irq="1" 1137 1138# Options for atkbd: 1139options ATKBD_DFLT_KEYMAP # specify the built-in keymap 1140makeoptions ATKBD_DFLT_KEYMAP=jp.106 1141 1142# These options are valid for other keyboard drivers as well. 1143options KBD_DISABLE_KEYMAP_LOAD # refuse to load a keymap 1144options KBD_INSTALL_CDEV # install a CDEV entry in /dev 1145 1146# `flags' for atkbd: 1147# 0x01 Force detection of keyboard, else we always assume a keyboard 1148# 0x02 Don't reset keyboard, useful for some newer ThinkPads 1149# 0x03 Force detection and avoid reset, might help with certain 1150# dockingstations 1151# 0x04 Old-style (XT) keyboard support, useful for older ThinkPads 1152 1153# PS/2 mouse 1154device psm 1155hint.psm.0.at="atkbdc" 1156hint.psm.0.irq="12" 1157 1158# Options for psm: 1159options PSM_HOOKRESUME #hook the system resume event, useful 1160 #for some laptops 1161options PSM_RESETAFTERSUSPEND #reset the device at the resume event 1162 1163# Video card driver for VGA adapters. 1164device vga 1165hint.vga.0.at="isa" 1166 1167# Options for vga: 1168# Try the following option if the mouse pointer is not drawn correctly 1169# or font does not seem to be loaded properly. May cause flicker on 1170# some systems. 1171options VGA_ALT_SEQACCESS 1172 1173# If you can dispense with some vga driver features, you may want to 1174# use the following options to save some memory. 1175#options VGA_NO_FONT_LOADING # don't save/load font 1176#options VGA_NO_MODE_CHANGE # don't change video modes 1177 1178# Older video cards may require this option for proper operation. 1179options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs 1180 1181# The following option probably won't work with the LCD displays. 1182options VGA_WIDTH90 # support 90 column modes 1183 1184options FB_DEBUG # Frame buffer debugging 1185 1186device splash # Splash screen and screen saver support 1187 1188# Various screen savers. 1189device blank_saver 1190device daemon_saver 1191device fade_saver 1192device fire_saver 1193device green_saver 1194device logo_saver 1195device rain_saver 1196device star_saver 1197device warp_saver 1198 1199# The syscons console driver (sco color console compatible). 1200device sc 1201hint.sc.0.at="isa" 1202options MAXCONS=16 # number of virtual consoles 1203options SC_ALT_MOUSE_IMAGE # simplified mouse cursor in text mode 1204options SC_DFLT_FONT # compile font in 1205makeoptions SC_DFLT_FONT=cp850 1206options SC_DISABLE_KDBKEY # disable `debug' key 1207options SC_DISABLE_REBOOT # disable reboot key sequence 1208options SC_HISTORY_SIZE=200 # number of history buffer lines 1209options SC_MOUSE_CHAR=0x3 # char code for text mode mouse cursor 1210options SC_PIXEL_MODE # add support for the raster text mode 1211 1212# The following options will let you change the default colors of syscons. 1213options SC_NORM_ATTR=(FG_GREEN|BG_BLACK) 1214options SC_NORM_REV_ATTR=(FG_YELLOW|BG_GREEN) 1215options SC_KERNEL_CONS_ATTR=(FG_RED|BG_BLACK) 1216options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED) 1217 1218# The following options will let you change the default behaviour of 1219# cut-n-paste feature 1220options SC_CUT_SPACES2TABS # convert leading spaces into tabs 1221options SC_CUT_SEPCHARS=\"x09\" # set of characters that delimit words 1222 # (default is single space - \"x20\") 1223 1224# If you have a two button mouse, you may want to add the following option 1225# to use the right button of the mouse to paste text. 1226options SC_TWOBUTTON_MOUSE 1227 1228# You can selectively disable features in syscons. 1229options SC_NO_CUTPASTE 1230options SC_NO_FONT_LOADING 1231options SC_NO_HISTORY 1232options SC_NO_SYSMOUSE 1233options SC_NO_SUSPEND_VTYSWITCH 1234 1235# `flags' for sc 1236# 0x80 Put the video card in the VESA 800x600 dots, 16 color mode 1237# 0x100 Probe for a keyboard device periodically if one is not present 1238 1239# 1240# Optional devices: 1241# 1242 1243# 1244# SCSI host adapters: 1245# 1246# adv: All Narrow SCSI bus AdvanSys controllers. 1247# adw: Second Generation AdvanSys controllers including the ADV940UW. 1248# aha: Adaptec 154x/1535/1640 1249# ahb: Adaptec 174x EISA controllers 1250# ahc: Adaptec 274x/284x/2910/293x/294x/394x/3950x/3960x/398X/4944/ 1251# 19160x/29160x, aic7770/aic78xx 1252# ahd: Adaptec 29320/39320 Controllers. 1253# aic: Adaptec 6260/6360, APA-1460 (PC Card), NEC PC9801-100 (C-BUS) 1254# amd: Support for the AMD 53C974 SCSI host adapter chip as found on devices 1255# such as the Tekram DC-390(T). 1256# bt: Most Buslogic controllers: including BT-445, BT-54x, BT-64x, BT-74x, 1257# BT-75x, BT-946, BT-948, BT-956, BT-958, SDC3211B, SDC3211F, SDC3222F 1258# esp: NCR53c9x. Only for SBUS hardware right now. 1259# isp: Qlogic ISP 1020, 1040 and 1040B PCI SCSI host adapters, 1260# ISP 1240 Dual Ultra SCSI, ISP 1080 and 1280 (Dual) Ultra2, 1261# ISP 12160 Ultra3 SCSI, 1262# Qlogic ISP 2100 and ISP 2200 1Gb Fibre Channel host adapters. 1263# Qlogic ISP 2300 and ISP 2312 2Gb Fibre Channel host adapters. 1264# ispfw: Firmware module for Qlogic host adapters 1265# mpt: LSI-Logic MPT/Fusion 53c1020 or 53c1030 Ultra4 1266# or FC9x9 Fibre Channel host adapters. 1267# ncr: NCR 53C810, 53C825 self-contained SCSI host adapters. 1268# sym: Symbios/Logic 53C8XX family of PCI-SCSI I/O processors: 1269# 53C810, 53C810A, 53C815, 53C825, 53C825A, 53C860, 53C875, 1270# 53C876, 53C885, 53C895, 53C895A, 53C896, 53C897, 53C1510D, 1271# 53C1010-33, 53C1010-66. 1272# trm: Tekram DC395U/UW/F DC315U adapters. 1273# wds: WD7000 1274 1275# 1276# Note that the order is important in order for Buslogic ISA/EISA cards to be 1277# probed correctly. 1278# 1279device bt 1280hint.bt.0.at="isa" 1281hint.bt.0.port="0x330" 1282device adv 1283hint.adv.0.at="isa" 1284device adw 1285device aha 1286hint.aha.0.at="isa" 1287device aic 1288hint.aic.0.at="isa" 1289device ahb 1290device ahc 1291device ahd 1292device amd 1293device esp 1294device isp 1295hint.isp.0.disable="1" 1296hint.isp.0.role="3" 1297hint.isp.0.prefer_iomap="1" 1298hint.isp.0.prefer_memmap="1" 1299hint.isp.0.fwload_disable="1" 1300hint.isp.0.ignore_nvram="1" 1301hint.isp.0.fullduplex="1" 1302hint.isp.0.topology="lport" 1303hint.isp.0.topology="nport" 1304hint.isp.0.topology="lport-only" 1305hint.isp.0.topology="nport-only" 1306# we can't get u_int64_t types, nor can we get strings if it's got 1307# a leading 0x, hence this silly dodge. 1308hint.isp.0.portwnn="w50000000aaaa0000" 1309hint.isp.0.nodewnn="w50000000aaaa0001" 1310device ispfw 1311device mpt 1312device ncr 1313device sym 1314device trm 1315device wds 1316hint.wds.0.at="isa" 1317hint.wds.0.port="0x350" 1318hint.wds.0.irq="11" 1319hint.wds.0.drq="6" 1320 1321# The aic7xxx driver will attempt to use memory mapped I/O for all PCI 1322# controllers that have it configured only if this option is set. Unfortunately, 1323# this doesn't work on some motherboards, which prevents it from being the 1324# default. 1325options AHC_ALLOW_MEMIO 1326 1327# Dump the contents of the ahc controller configuration PROM. 1328options AHC_DUMP_EEPROM 1329 1330# Bitmap of units to enable targetmode operations. 1331options AHC_TMODE_ENABLE 1332 1333# Compile in Aic7xxx Debugging code. 1334options AHC_DEBUG 1335 1336# Aic7xxx driver debugging options. See sys/dev/aic7xxx/aic7xxx.h 1337options AHC_DEBUG_OPTS 1338 1339# Print register bitfields in debug output. Adds ~128k to driver 1340# See ahc(4). 1341options AHC_REG_PRETTY_PRINT 1342 1343# Compile in aic79xx debugging code. 1344options AHD_DEBUG 1345 1346# Aic79xx driver debugging options. Adds ~215k to driver. See ahd(4). 1347options AHD_DEBUG_OPTS=0xFFFFFFFF 1348 1349# Print human-readable register definitions when debugging 1350options AHD_REG_PRETTY_PRINT 1351 1352# Bitmap of units to enable targetmode operations. 1353options AHD_TMODE_ENABLE 1354 1355# The adw driver will attempt to use memory mapped I/O for all PCI 1356# controllers that have it configured only if this option is set. 1357options ADW_ALLOW_MEMIO 1358 1359# Options used in dev/isp/ (Qlogic SCSI/FC driver). 1360# 1361# ISP_TARGET_MODE - enable target mode operation 1362# 1363options ISP_TARGET_MODE=1 1364 1365# Options used in dev/sym/ (Symbios SCSI driver). 1366#options SYM_SETUP_LP_PROBE_MAP #-Low Priority Probe Map (bits) 1367 # Allows the ncr to take precedence 1368 # 1 (1<<0) -> 810a, 860 1369 # 2 (1<<1) -> 825a, 875, 885, 895 1370 # 4 (1<<2) -> 895a, 896, 1510d 1371#options SYM_SETUP_SCSI_DIFF #-HVD support for 825a, 875, 885 1372 # disabled:0 (default), enabled:1 1373#options SYM_SETUP_PCI_PARITY #-PCI parity checking 1374 # disabled:0, enabled:1 (default) 1375#options SYM_SETUP_MAX_LUN #-Number of LUNs supported 1376 # default:8, range:[1..64] 1377 1378# The 'asr' driver provides support for current DPT/Adaptec SCSI RAID 1379# controllers (SmartRAID V and VI and later). 1380# These controllers require the CAM infrastructure. 1381# 1382device asr 1383 1384# The 'dpt' driver provides support for old DPT controllers (http://www.dpt.com/). 1385# These have hardware RAID-{0,1,5} support, and do multi-initiator I/O. 1386# The DPT controllers are commonly re-licensed under other brand-names - 1387# some controllers by Olivetti, Dec, HP, AT&T, SNI, AST, Alphatronic, NEC and 1388# Compaq are actually DPT controllers. 1389# 1390# See src/sys/dev/dpt for debugging and other subtle options. 1391# DPT_MEASURE_PERFORMANCE Enables a set of (semi)invasive metrics. Various 1392# instruments are enabled. The tools in 1393# /usr/sbin/dpt_* assume these to be enabled. 1394# DPT_HANDLE_TIMEOUTS Normally device timeouts are handled by the DPT. 1395# If you ant the driver to handle timeouts, enable 1396# this option. If your system is very busy, this 1397# option will create more trouble than solve. 1398# DPT_TIMEOUT_FACTOR Used to compute the excessive amount of time to 1399# wait when timing out with the above option. 1400# DPT_DEBUG_xxxx These are controllable from sys/dev/dpt/dpt.h 1401# DPT_LOST_IRQ When enabled, will try, once per second, to catch 1402# any interrupt that got lost. Seems to help in some 1403# DPT-firmware/Motherboard combinations. Minimal 1404# cost, great benefit. 1405# DPT_RESET_HBA Make "reset" actually reset the controller 1406# instead of fudging it. Only enable this if you 1407# are 100% certain you need it. 1408 1409device dpt 1410 1411# DPT options 1412#!CAM# options DPT_MEASURE_PERFORMANCE 1413#!CAM# options DPT_HANDLE_TIMEOUTS 1414options DPT_TIMEOUT_FACTOR=4 1415options DPT_LOST_IRQ 1416options DPT_RESET_HBA 1417 1418# 1419# Compaq "CISS" RAID controllers (SmartRAID 5* series) 1420# These controllers have a SCSI-like interface, and require the 1421# CAM infrastructure. 1422# 1423device ciss 1424 1425# 1426# Intel Integrated RAID controllers. 1427# This driver was developed and is maintained by Intel. Contacts 1428# at Intel for this driver are 1429# "Kannanthanam, Boji T" <boji.t.kannanthanam@intel.com> and 1430# "Leubner, Achim" <achim.leubner@intel.com>. 1431# 1432device iir 1433 1434# 1435# Mylex AcceleRAID and eXtremeRAID controllers with v6 and later 1436# firmware. These controllers have a SCSI-like interface, and require 1437# the CAM infrastructure. 1438# 1439device mly 1440 1441# 1442# Compaq Smart RAID, Mylex DAC960 and AMI MegaRAID controllers. Only 1443# one entry is needed; the code will find and configure all supported 1444# controllers. 1445# 1446device ida # Compaq Smart RAID 1447device mlx # Mylex DAC960 1448device amr # AMI MegaRAID 1449 1450# 1451# 3ware ATA RAID 1452# 1453device twe # 3ware ATA RAID 1454 1455# 1456# The 'ATA' driver supports all ATA and ATAPI devices, including PC Card 1457# devices. You only need one "device ata" for it to find all 1458# PCI and PC Card ATA/ATAPI devices on modern machines. 1459device ata 1460device atadisk # ATA disk drives 1461device ataraid # ATA RAID drives 1462device atapicd # ATAPI CDROM drives 1463device atapifd # ATAPI floppy drives 1464device atapist # ATAPI tape drives 1465device atapicam # emulate ATAPI devices as SCSI ditto via CAM 1466 # needs CAM to be present (scbus & pass) 1467# 1468# For older non-PCI, non-PnPBIOS systems, these are the hints lines to add: 1469hint.ata.0.at="isa" 1470hint.ata.0.port="0x1f0" 1471hint.ata.0.irq="14" 1472hint.ata.1.at="isa" 1473hint.ata.1.port="0x170" 1474hint.ata.1.irq="15" 1475 1476# 1477# The following options are valid on the ATA driver: 1478# 1479# ATA_STATIC_ID: controller numbering is static ie depends on location 1480# else the device numbers are dynamically allocated. 1481 1482options ATA_STATIC_ID 1483 1484# 1485# Standard floppy disk controllers and floppy tapes, supports 1486# the Y-E DATA External FDD (PC Card) 1487# 1488device fdc 1489hint.fdc.0.at="isa" 1490hint.fdc.0.port="0x3F0" 1491hint.fdc.0.irq="6" 1492hint.fdc.0.drq="2" 1493# 1494# FDC_DEBUG enables floppy debugging. Since the debug output is huge, you 1495# gotta turn it actually on by setting the variable fd_debug with DDB, 1496# however. 1497options FDC_DEBUG 1498# 1499# Activate this line if you happen to have an Insight floppy tape. 1500# Probing them proved to be dangerous for people with floppy disks only, 1501# so it's "hidden" behind a flag: 1502#hint.fdc.0.flags="1" 1503 1504# Specify floppy devices 1505hint.fd.0.at="fdc0" 1506hint.fd.0.drive="0" 1507hint.fd.1.at="fdc0" 1508hint.fd.1.drive="1" 1509 1510# 1511# sio: serial ports (see sio(4)), including support for various 1512# PC Card devices, such as Modem and NICs (see etc/defaults/pccard.conf) 1513# 1514device sio 1515hint.sio.0.at="isa" 1516hint.sio.0.port="0x3F8" 1517hint.sio.0.flags="0x10" 1518hint.sio.0.irq="4" 1519 1520# Options for sio: 1521options COM_ESP # Code for Hayes ESP. 1522options COM_MULTIPORT # Code for some cards with shared IRQs. 1523options CONSPEED=115200 # Speed for serial console 1524 # (default 9600). 1525 1526# `flags' specific to sio(4). See below for flags used by both sio(4) and 1527# uart(4). 1528# 0x20 force this unit to be the console (unless there is another 1529# higher priority console). This replaces the COMCONSOLE option. 1530# 0x40 reserve this unit for low level console operations. Do not 1531# access the device in any normal way. 1532# PnP `flags' 1533# 0x1 disable probing of this device. Used to prevent your modem 1534# from being attached as a PnP modem. 1535# Other flags for sio that aren't documented in the man page. 1536# 0x20000 enable hardware RTS/CTS and larger FIFOs. Only works for 1537# ST16650A-compatible UARTs. 1538 1539# 1540# uart: newbusified driver for serial interfaces. It consolidates the sio(4), 1541# sab(4) and zs(4) drivers. 1542# 1543device uart 1544 1545# Options for uart(4) 1546options UART_PPS_ON_CTS # Do time pulse capturing using CTS 1547 # instead of DCD. 1548 1549# The following hint should only be used for pure ISA devices. It is not 1550# needed otherwise. Use of hints is strongly discouraged. 1551hint.uart.0.at="isa" 1552 1553# The following 3 hints are used when the UART is a system device (i.e., a 1554# console or debug port), but only on platforms that don't have any other 1555# means to pass the information to the kernel. The unit number of the hint 1556# is only used to bundle the hints together. There is no relation to the 1557# unit number of the probed UART. 1558hint.uart.0.port="0x3f8" 1559hint.uart.0.flags="0x10" 1560hint.uart.0.baud="115200" 1561 1562# `flags' for serial drivers that support consoles like sio(4) and uart(4): 1563# 0x10 enable console support for this unit. Other console flags 1564# (if applicable) are ignored unless this is set. Enabling 1565# console support does not make the unit the preferred console. 1566# Boot with -h or set boot_serial=YES in the loader. For sio(4) 1567# specifically, the 0x20 flag can also be set (see above). 1568# Currently, at most one unit can have console support; the 1569# first one (in config file order) with this flag set is 1570# preferred. Setting this flag for sio0 gives the old behaviour. 1571# 0x80 use this port for serial line gdb support in ddb. Also known 1572# as debug port. 1573# 1574 1575# Options for serial drivers that support consoles: 1576options BREAK_TO_DEBUGGER # A BREAK on a serial console goes to 1577 # ddb, if available. 1578 1579# Solaris implements a new BREAK which is initiated by a character 1580# sequence CR ~ ^b which is similar to a familiar pattern used on 1581# Sun servers by the Remote Console. 1582options ALT_BREAK_TO_DEBUGGER 1583 1584# PCI Universal Communications driver 1585# Supports various single and multi port PCI serial cards. Maybe later 1586# also the parallel ports on combination serial/parallel cards. New cards 1587# can be added in src/sys/dev/puc/pucdata.c. 1588# 1589# If the PUC_FASTINTR option is used the driver will try to use fast 1590# interrupts. The card must then be the only user of that interrupt. 1591# Interrupts cannot be shared when using PUC_FASTINTR. 1592device puc 1593options PUC_FASTINTR 1594 1595# 1596# Network interfaces: 1597# 1598# MII bus support is required for some PCI 10/100 ethernet NICs, 1599# namely those which use MII-compliant transceivers or implement 1600# transceiver control interfaces that operate like an MII. Adding 1601# "device miibus0" to the kernel config pulls in support for 1602# the generic miibus API and all of the PHY drivers, including a 1603# generic one for PHYs that aren't specifically handled by an 1604# individual driver. 1605device miibus 1606 1607# an: Aironet 4500/4800 802.11 wireless adapters. Supports the PCMCIA, 1608# PCI and ISA varieties. 1609# awi: Support for IEEE 802.11 PC Card devices using the AMD Am79C930 and 1610# Harris (Intersil) Chipset with PCnetMobile firmware by AMD. 1611# bge: Support for gigabit ethernet adapters based on the Broadcom 1612# BCM570x family of controllers, including the 3Com 3c996-T, 1613# the Netgear GA302T, the SysKonnect SK-9D21 and SK-9D41, and 1614# the embedded gigE NICs on Dell PowerEdge 2550 servers. 1615# cm: Arcnet SMC COM90c26 / SMC COM90c56 1616# (and SMC COM90c66 in '56 compatibility mode) adapters. 1617# cnw: Xircom CNW/Netware Airsurfer PC Card adapter 1618# cs: IBM Etherjet and other Crystal Semi CS89x0-based adapters 1619# dc: Support for PCI fast ethernet adapters based on the DEC/Intel 21143 1620# and various workalikes including: 1621# the ADMtek AL981 Comet and AN985 Centaur, the ASIX Electronics 1622# AX88140A and AX88141, the Davicom DM9100 and DM9102, the Lite-On 1623# 82c168 and 82c169 PNIC, the Lite-On/Macronix LC82C115 PNIC II 1624# and the Macronix 98713/98713A/98715/98715A/98725 PMAC. This driver 1625# replaces the old al, ax, dm, pn and mx drivers. List of brands: 1626# Digital DE500-BA, Kingston KNE100TX, D-Link DFE-570TX, SOHOware SFA110, 1627# SVEC PN102-TX, CNet Pro110B, 120A, and 120B, Compex RL100-TX, 1628# LinkSys LNE100TX, LNE100TX V2.0, Jaton XpressNet, Alfa Inc GFC2204, 1629# KNE110TX. 1630# de: Digital Equipment DC21040 1631# em: Intel Pro/1000 Gigabit Ethernet 82542, 82543, 82544 based adapters. 1632# ep: 3Com 3C509, 3C529, 3C556, 3C562D, 3C563D, 3C572, 3C574X, 3C579, 3C589 1633# and PC Card devices using these chipsets. 1634# ex: Intel EtherExpress Pro/10 and other i82595-based adapters, 1635# Olicom Ethernet PC Card devices. 1636# fe: Fujitsu MB86960A/MB86965A Ethernet 1637# fea: DEC DEFEA EISA FDDI adapter 1638# fpa: Support for the Digital DEFPA PCI FDDI. `device fddi' is also needed. 1639# fxp: Intel EtherExpress Pro/100B 1640# (hint of prefer_iomap can be done to prefer I/O instead of Mem mapping) 1641# gx: Intel Pro/1000 Gigabit Ethernet (82542, 82543-F, 82543-T) 1642# lge: Support for PCI gigabit ethernet adapters based on the Level 1 1643# LXT1001 NetCellerator chipset. This includes the D-Link DGE-500SX, 1644# SMC TigerCard 1000 (SMC9462SX), and some Addtron cards. 1645# my: Myson Fast Ethernet (MTD80X, MTD89X) 1646# nge: Support for PCI gigabit ethernet adapters based on the National 1647# Semiconductor DP83820 and DP83821 chipset. This includes the 1648# SMC EZ Card 1000 (SMC9462TX), D-Link DGE-500T, Asante FriendlyNet 1649# GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the LinkSys 1650# EG1032 and EG1064, the Surecom EP-320G-TX and the Netgear GA622T. 1651# pcn: Support for PCI fast ethernet adapters based on the AMD Am79c97x 1652# chipsets, including the PCnet/FAST, PCnet/FAST+, PCnet/PRO and 1653# PCnet/Home. These were previously handled by the lnc driver (and 1654# still will be if you leave this driver out of the kernel). 1655# rl: Support for PCI fast ethernet adapters based on the RealTek 8129/8139 1656# chipset. Note that the RealTek driver defaults to using programmed 1657# I/O to do register accesses because memory mapped mode seems to cause 1658# severe lockups on SMP hardware. This driver also supports the 1659# Accton EN1207D `Cheetah' adapter, which uses a chip called 1660# the MPX 5030/5038, which is either a RealTek in disguise or a 1661# RealTek workalike. Note that the D-Link DFE-530TX+ uses the RealTek 1662# chipset and is supported by this driver, not the 'vr' driver. 1663# sf: Support for Adaptec Duralink PCI fast ethernet adapters based on the 1664# Adaptec AIC-6915 "starfire" controller. 1665# This includes dual and quad port cards, as well as one 100baseFX card. 1666# Most of these are 64-bit PCI devices, except for one single port 1667# card which is 32-bit. 1668# sis: Support for NICs based on the Silicon Integrated Systems SiS 900, 1669# SiS 7016 and NS DP83815 PCI fast ethernet controller chips. 1670# sbsh: Support for Granch SBNI16 SHDSL modem PCI adapters 1671# sk: Support for the SysKonnect SK-984x series PCI gigabit ethernet NICs. 1672# This includes the SK-9841 and SK-9842 single port cards (single mode 1673# and multimode fiber) and the SK-9843 and SK-9844 dual port cards 1674# (also single mode and multimode). 1675# The driver will autodetect the number of ports on the card and 1676# attach each one as a separate network interface. 1677# sn: Support for ISA and PC Card Ethernet devices using the 1678# SMC91C90/92/94/95 chips. 1679# ste: Sundance Technologies ST201 PCI fast ethernet controller, includes 1680# the D-Link DFE-550TX. 1681# ti: Support for PCI gigabit ethernet NICs based on the Alteon Networks 1682# Tigon 1 and Tigon 2 chipsets. This includes the Alteon AceNIC, the 1683# 3Com 3c985, the Netgear GA620 and various others. Note that you will 1684# probably want to bump up NMBCLUSTERS a lot to use this driver. 1685# tl: Support for the Texas Instruments TNETE100 series 'ThunderLAN' 1686# cards and integrated ethernet controllers. This includes several 1687# Compaq Netelligent 10/100 cards and the built-in ethernet controllers 1688# in several Compaq Prosignia, Proliant and Deskpro systems. It also 1689# supports several Olicom 10Mbps and 10/100 boards. 1690# tx: SMC 9432 TX, BTX and FTX cards. (SMC EtherPower II series) 1691# txp: Support for 3Com 3cR990 cards with the "Typhoon" chipset 1692# vr: Support for various fast ethernet adapters based on the VIA 1693# Technologies VT3043 `Rhine I' and VT86C100A `Rhine II' chips, 1694# including the D-Link DFE530TX (see 'rl' for DFE530TX+), the Hawking 1695# Technologies PN102TX, and the AOpen/Acer ALN-320. 1696# vx: 3Com 3C590 and 3C595 1697# wb: Support for fast ethernet adapters based on the Winbond W89C840F chip. 1698# Note: this is not the same as the Winbond W89C940F, which is a 1699# NE2000 clone. 1700# wi: Lucent WaveLAN/IEEE 802.11 PCMCIA adapters. Note: this supports both 1701# the PCMCIA and ISA cards: the ISA card is really a PCMCIA to ISA 1702# bridge with a PCMCIA adapter plugged into it. 1703# xe: Xircom/Intel EtherExpress Pro100/16 PC Card ethernet controller, 1704# Accton Fast EtherCard-16, Compaq Netelligent 10/100 PC Card, 1705# Toshiba 10/100 Ethernet PC Card, Xircom 16-bit Ethernet + Modem 56 1706# xl: Support for the 3Com 3c900, 3c905, 3c905B and 3c905C (Fast) 1707# Etherlink XL cards and integrated controllers. This includes the 1708# integrated 3c905B-TX chips in certain Dell Optiplex and Dell 1709# Precision desktop machines and the integrated 3c905-TX chips 1710# in Dell Latitude laptop docking stations. 1711# Also supported: 3Com 3c980(C)-TX, 3Com 3cSOHO100-TX, 3Com 3c450-TX 1712 1713# Order for ISA/EISA devices is important here 1714 1715device cm 1716hint.cm.0.at="isa" 1717hint.cm.0.port="0x2e0" 1718hint.cm.0.irq="9" 1719hint.cm.0.maddr="0xdc000" 1720device cs 1721hint.cs.0.at="isa" 1722hint.cs.0.port="0x300" 1723device ep 1724device ex 1725device fe 1726hint.fe.0.at="isa" 1727hint.fe.0.port="0x300" 1728device fea 1729device sn 1730hint.sn.0.at="isa" 1731hint.sn.0.port="0x300" 1732hint.sn.0.irq="10" 1733device an 1734device awi 1735device cnw 1736device wi 1737device xe 1738 1739# PCI Ethernet NICs that use the common MII bus controller code. 1740device dc # DEC/Intel 21143 and various workalikes 1741device fxp # Intel EtherExpress PRO/100B (82557, 82558) 1742hint.fxp.0.prefer_iomap="0" 1743device my # Myson Fast Ethernet (MTD80X, MTD89X) 1744device rl # RealTek 8129/8139 1745device pcn # AMD Am79C97x PCI 10/100 NICs 1746device sf # Adaptec AIC-6915 (``Starfire'') 1747device sbsh # Granch SBNI16 SHDSL modem 1748device sis # Silicon Integrated Systems SiS 900/SiS 7016 1749device ste # Sundance ST201 (D-Link DFE-550TX) 1750device tl # Texas Instruments ThunderLAN 1751device tx # SMC EtherPower II (83c170 ``EPIC'') 1752device vr # VIA Rhine, Rhine II 1753device wb # Winbond W89C840F 1754device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') 1755 1756# PCI Ethernet NICs. 1757device de # DEC/Intel DC21x4x (``Tulip'') 1758device txp # 3Com 3cR990 (``Typhoon'') 1759device vx # 3Com 3c590, 3c595 (``Vortex'') 1760 1761# PCI Gigabit & FDDI NICs. 1762device bge 1763device gx 1764device lge 1765device nge 1766device sk 1767device ti 1768device fpa 1769 1770# Use "private" jumbo buffers allocated exclusively for the ti(4) driver. 1771# This option is incompatible with the TI_JUMBO_HDRSPLIT option below. 1772#options TI_PRIVATE_JUMBOS 1773# Turn on the header splitting option for the ti(4) driver firmware. This 1774# only works for Tigon II chips, and has no effect for Tigon I chips. 1775options TI_JUMBO_HDRSPLIT 1776 1777# These two options allow manipulating the mbuf cluster size and mbuf size, 1778# respectively. Be very careful with NIC driver modules when changing 1779# these from their default values, because that can potentially cause a 1780# mismatch between the mbuf size assumed by the kernel and the mbuf size 1781# assumed by a module. The only driver that currently has the ability to 1782# detect a mismatch is ti(4). 1783options MCLSHIFT=12 # mbuf cluster shift in bits, 12 == 4KB 1784options MSIZE=512 # mbuf size in bytes 1785 1786# 1787# ATM related options (Cranor version) 1788# (note: this driver cannot be used with the HARP ATM stack) 1789# 1790# The `en' device provides support for Efficient Networks (ENI) 1791# ENI-155 PCI midway cards, and the Adaptec 155Mbps PCI ATM cards (ANA-59x0). 1792# 1793# The `hatm' device provides support for Fore/Marconi HE155 and HE622 1794# ATM PCI cards. 1795# 1796# The `fatm' device provides support for Fore PCA200E ATM PCI cards. 1797# 1798# The `patm' device provides support for IDT77252 based cards like 1799# ProSum's ProATM-155 and ProATM-25 and IDT's evaluation boards. 1800# 1801# atm device provides generic atm functions and is required for 1802# atm devices. 1803# NATM enables the netnatm protocol family that can be used to 1804# bypass TCP/IP. 1805# 1806# utopia provides the access to the ATM PHY chips and is required for en, 1807# hatm and fatm. 1808# 1809# the current driver supports only PVC operations (no atm-arp, no multicast). 1810# for more details, please read the original documents at 1811# http://www.ccrc.wustl.edu/pub/chuck/tech/bsdatm/bsdatm.html 1812# 1813device atm 1814device en 1815device fatm #Fore PCA200E 1816device hatm #Fore/Marconi HE155/622 1817device patm #IDT77252 cards (ProATM and IDT) 1818device utopia #ATM PHY driver 1819options NATM #native ATM 1820 1821options LIBMBPOOL #needed by patm, iatm 1822 1823# 1824# Sound drivers 1825# 1826# sound: The generic sound driver. 1827# 1828 1829device sound 1830 1831# 1832# snd_*: Device-specific drivers. 1833# 1834# The flags of the device tells the device a bit more info about the 1835# device that normally is obtained through the PnP interface. 1836# bit 2..0 secondary DMA channel; 1837# bit 4 set if the board uses two dma channels; 1838# bit 15..8 board type, overrides autodetection; leave it 1839# zero if don't know what to put in (and you don't, 1840# since this is unsupported at the moment...). 1841# 1842# snd_als4000: Avance Logic ALS4000 PCI. 1843# snd_ad1816: Analog Devices AD1816 ISA PnP/non-PnP. 1844# snd_cmi: CMedia CMI8338/CMI8738 PCI. 1845# snd_cs4281: Crystal Semiconductor CS4281 PCI. 1846# snd_csa: Crystal Semiconductor CS461x/428x PCI. (except 1847# 4281) 1848# snd_ds1: Yamaha DS-1 PCI. 1849# snd_emu10k1: Creative EMU10K1 PCI and EMU10K2 (Audigy) PCI. 1850# snd_es137x: Ensoniq AudioPCI ES137x PCI. 1851# snd_ess: Ensoniq ESS ISA PnP/non-PnP. 1852# snd_fm801: Forte Media FM801 PCI. 1853# snd_gusc: Gravis UltraSound ISA PnP/non-PnP. 1854# snd_ich: Intel ICH PCI and some more audio controllers 1855# embedded in a chipset. 1856# snd_maestro: ESS Technology Maestro-1/2x PCI. 1857# snd_maestro3: ESS Technology Maestro-3/Allegro PCI. 1858# snd_mss: Microsoft Sound System ISA PnP/non-PnP. 1859# snd_neomagic: Neomagic 256 AV/ZX PCI. 1860# snd_sb16: Creative SoundBlaster16, to be used in 1861# conjuction with snd_sbc. 1862# snd_sb8: Creative SoundBlaster (pre-16), to be used in 1863# conjuction with snd_sbc. 1864# snd_sbc: Creative SoundBlaster ISA PnP/non-PnP. 1865# Supports ESS and Avance ISA chips as well. 1866# snd_solo: ESS Solo-1x PCI. 1867# snd_t4dwave: Trident 4DWave PCI, Sis 7018 PCI and Acer Labs 1868# M5451 PCI. 1869# snd_via8233: VIA VT8233x PCI. 1870# snd_via82c686: VIA VT82C686A PCI. 1871# snd_vibes: S3 Sonicvibes PCI. 1872# snd_uaudio: USB audio. 1873 1874device "snd_ad1816" 1875device "snd_als4000" 1876#device "snd_au88x0" 1877device snd_cmi 1878device "snd_cs4281" 1879device snd_csa 1880device "snd_ds1" 1881device "snd_emu10k1" 1882device "snd_es137x" 1883device snd_ess 1884device "snd_fm801" 1885device snd_gusc 1886device snd_ich 1887device snd_maestro 1888device "snd_maestro3" 1889device snd_mss 1890device snd_neomagic 1891device "snd_sb16" 1892device "snd_sb8" 1893device snd_sbc 1894device snd_solo 1895device "snd_t4dwave" 1896device "snd_via8233" 1897device "snd_via82c686" 1898device snd_vibes 1899#device "snd_vortex1" 1900device snd_uaudio 1901 1902# For non-pnp sound cards: 1903hint.snd_mss.0.at="isa" 1904hint.snd_mss.0.irq="10" 1905hint.snd_mss.0.drq="1" 1906hint.snd_mss.0.flags="0x0" 1907hint.snd_sbc.0.at="isa" 1908hint.snd_sbc.0.port="0x220" 1909hint.snd_sbc.0.irq="5" 1910hint.snd_sbc.0.drq="1" 1911hint.snd_sbc.0.flags="0x15" 1912hint.snd_gusc.0.at="isa" 1913hint.snd_gusc.0.port="0x220" 1914hint.snd_gusc.0.irq="5" 1915hint.snd_gusc.0.drq="1" 1916hint.snd_gusc.0.flags="0x13" 1917 1918# 1919# Miscellaneous hardware: 1920# 1921# scd: Sony CD-ROM using proprietary (non-ATAPI) interface 1922# mcd: Mitsumi CD-ROM using proprietary (non-ATAPI) interface 1923# bktr: Brooktree bt848/848a/849a/878/879 video capture and TV Tuner board 1924# cy: Cyclades serial driver 1925# joy: joystick (including IO DATA PCJOY PC Card joystick) 1926# rc: RISCom/8 multiport card 1927# rp: Comtrol Rocketport(ISA/PCI) - single card 1928# si: Specialix SI/XIO 4-32 port terminal multiplexor 1929# nmdm: nullmodem terminal driver (see nmdm(4)) 1930 1931# Notes on the Comtrol Rocketport driver: 1932# 1933# The exact values used for rp0 depend on how many boards you have 1934# in the system. The manufacturer's sample configs are listed as: 1935# 1936# device rp # core driver support 1937# 1938# Comtrol Rocketport ISA single card 1939# hint.rp.0.at="isa" 1940# hint.rp.0.port="0x280" 1941# 1942# If instead you have two ISA cards, one installed at 0x100 and the 1943# second installed at 0x180, then you should add the following to 1944# your kernel probe hints: 1945# hint.rp.0.at="isa" 1946# hint.rp.0.port="0x100" 1947# hint.rp.1.at="isa" 1948# hint.rp.1.port="0x180" 1949# 1950# For 4 ISA cards, it might be something like this: 1951# hint.rp.0.at="isa" 1952# hint.rp.0.port="0x180" 1953# hint.rp.1.at="isa" 1954# hint.rp.1.port="0x100" 1955# hint.rp.2.at="isa" 1956# hint.rp.2.port="0x340" 1957# hint.rp.3.at="isa" 1958# hint.rp.3.port="0x240" 1959# 1960# For PCI cards, you need no hints. 1961 1962# Mitsumi CD-ROM 1963device mcd 1964hint.mcd.0.at="isa" 1965hint.mcd.0.port="0x300" 1966# for the Sony CDU31/33A CDROM 1967device scd 1968hint.scd.0.at="isa" 1969hint.scd.0.port="0x230" 1970device joy # PnP aware, hints for nonpnp only 1971hint.joy.0.at="isa" 1972hint.joy.0.port="0x201" 1973device rc 1974hint.rc.0.at="isa" 1975hint.rc.0.port="0x220" 1976hint.rc.0.irq="12" 1977device rp 1978hint.rp.0.at="isa" 1979hint.rp.0.port="0x280" 1980device si 1981options SI_DEBUG 1982hint.si.0.at="isa" 1983hint.si.0.maddr="0xd0000" 1984hint.si.0.irq="12" 1985device nmdm 1986 1987# 1988# The 'bktr' device is a PCI video capture device using the Brooktree 1989# bt848/bt848a/bt849a/bt878/bt879 chipset. When used with a TV Tuner it forms a 1990# TV card, e.g. Miro PC/TV, Hauppauge WinCast/TV WinTV, VideoLogic Captivator, 1991# Intel Smart Video III, AverMedia, IMS Turbo, FlyVideo. 1992# 1993# options OVERRIDE_CARD=xxx 1994# options OVERRIDE_TUNER=xxx 1995# options OVERRIDE_MSP=1 1996# options OVERRIDE_DBX=1 1997# These options can be used to override the auto detection 1998# The current values for xxx are found in src/sys/dev/bktr/bktr_card.h 1999# Using sysctl(8) run-time overrides on a per-card basis can be made 2000# 2001# options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_PAL 2002# or 2003# options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_NTSC 2004# Specifies the default video capture mode. 2005# This is required for Dual Crystal (28&35Mhz) boards where PAL is used 2006# to prevent hangs during initialisation, e.g. VideoLogic Captivator PCI. 2007# 2008# options BKTR_USE_PLL 2009# This is required for PAL or SECAM boards with a 28Mhz crystal and no 35Mhz 2010# crystal, e.g. some new Bt878 cards. 2011# 2012# options BKTR_GPIO_ACCESS 2013# This enable IOCTLs which give user level access to the GPIO port. 2014# 2015# options BKTR_NO_MSP_RESET 2016# Prevents the MSP34xx reset. Good if you initialise the MSP in another OS first 2017# 2018# options BKTR_430_FX_MODE 2019# Switch Bt878/879 cards into Intel 430FX chipset compatibility mode. 2020# 2021# options BKTR_SIS_VIA_MODE 2022# Switch Bt878/879 cards into SIS/VIA chipset compatibility mode which is 2023# needed for some old SiS and VIA chipset motherboards. 2024# This also allows Bt878/879 chips to work on old OPTi (<1997) chipset 2025# motherboards and motherboards with bad or incomplete PCI 2.1 support. 2026# As a rough guess, old = before 1998 2027# 2028# options BKTR_NEW_MSP34XX_DRIVER 2029# Use new, more complete initialization scheme for the msp34* soundchip. 2030# Should fix stereo autodetection if the old driver does only output 2031# mono sound. 2032 2033# 2034# options BKTR_USE_FREEBSD_SMBUS 2035# Compile with FreeBSD SMBus implementation 2036# 2037# Brooktree driver has been ported to the new I2C framework. Thus, 2038# you'll need to have the following 3 lines in the kernel config. 2039# device smbus 2040# device iicbus 2041# device iicbb 2042# device iicsmb 2043# The iic and smb devices are only needed if you want to control other 2044# I2C slaves connected to the external connector of some cards. 2045# 2046device bktr 2047 2048# 2049# PC Card/PCMCIA 2050# (OLDCARD) 2051# 2052# card: pccard slots 2053# pcic: isa/pccard bridge 2054#device pcic 2055#hint.pcic.0.at="isa" 2056#hint.pcic.1.at="isa" 2057#device card 1 2058 2059# 2060# PC Card/PCMCIA and Cardbus 2061# (NEWCARD) 2062# 2063# Note that NEWCARD and OLDCARD are incompatible. Do not use both at the same 2064# time. 2065# 2066# pccbb: pci/cardbus bridge implementing YENTA interface 2067# pccard: pccard slots 2068# cardbus: cardbus slots 2069device cbb 2070device pccard 2071device cardbus 2072#device pcic ISA attachment currently busted 2073#hint.pcic.0.at="isa" 2074#hint.pcic.1.at="isa" 2075 2076# 2077# SMB bus 2078# 2079# System Management Bus support is provided by the 'smbus' device. 2080# Access to the SMBus device is via the 'smb' device (/dev/smb*), 2081# which is a child of the 'smbus' device. 2082# 2083# Supported devices: 2084# smb standard io through /dev/smb* 2085# 2086# Supported SMB interfaces: 2087# iicsmb I2C to SMB bridge with any iicbus interface 2088# bktr brooktree848 I2C hardware interface 2089# intpm Intel PIIX4 (82371AB, 82443MX) Power Management Unit 2090# alpm Acer Aladdin-IV/V/Pro2 Power Management Unit 2091# ichsmb Intel ICH SMBus controller chips (82801AA, 82801AB, 82801BA) 2092# viapm VIA VT82C586B/596B/686A and VT8233 Power Management Unit 2093# amdpm AMD 756 Power Management Unit 2094# nfpm NVIDIA nForce Power Management Unit 2095# 2096device smbus # Bus support, required for smb below. 2097 2098device intpm 2099device alpm 2100device ichsmb 2101device viapm 2102device amdpm 2103device nfpm 2104 2105device smb 2106 2107# 2108# I2C Bus 2109# 2110# Philips i2c bus support is provided by the `iicbus' device. 2111# 2112# Supported devices: 2113# ic i2c network interface 2114# iic i2c standard io 2115# iicsmb i2c to smb bridge. Allow i2c i/o with smb commands. 2116# 2117# Supported interfaces: 2118# bktr brooktree848 I2C software interface 2119# 2120# Other: 2121# iicbb generic I2C bit-banging code (needed by lpbb, bktr) 2122# 2123device iicbus # Bus support, required for ic/iic/iicsmb below. 2124device iicbb 2125 2126device ic 2127device iic 2128device iicsmb # smb over i2c bridge 2129 2130# Parallel-Port Bus 2131# 2132# Parallel port bus support is provided by the `ppbus' device. 2133# Multiple devices may be attached to the parallel port, devices 2134# are automatically probed and attached when found. 2135# 2136# Supported devices: 2137# vpo Iomega Zip Drive 2138# Requires SCSI disk support ('scbus' and 'da'), best 2139# performance is achieved with ports in EPP 1.9 mode. 2140# lpt Parallel Printer 2141# plip Parallel network interface 2142# ppi General-purpose I/O ("Geek Port") + IEEE1284 I/O 2143# pps Pulse per second Timing Interface 2144# lpbb Philips official parallel port I2C bit-banging interface 2145# 2146# Supported interfaces: 2147# ppc ISA-bus parallel port interfaces. 2148# 2149 2150options PPC_PROBE_CHIPSET # Enable chipset specific detection 2151 # (see flags in ppc(4)) 2152options DEBUG_1284 # IEEE1284 signaling protocol debug 2153options PERIPH_1284 # Makes your computer act as an IEEE1284 2154 # compliant peripheral 2155options DONTPROBE_1284 # Avoid boot detection of PnP parallel devices 2156options VP0_DEBUG # ZIP/ZIP+ debug 2157options LPT_DEBUG # Printer driver debug 2158options PPC_DEBUG # Parallel chipset level debug 2159options PLIP_DEBUG # Parallel network IP interface debug 2160options PCFCLOCK_VERBOSE # Verbose pcfclock driver 2161options PCFCLOCK_MAX_RETRIES=5 # Maximum read tries (default 10) 2162 2163device ppc 2164hint.ppc.0.at="isa" 2165hint.ppc.0.irq="7" 2166device ppbus 2167device vpo 2168device lpt 2169device plip 2170device ppi 2171device pps 2172device lpbb 2173device pcfclock 2174 2175# Kernel BOOTP support 2176 2177options BOOTP # Use BOOTP to obtain IP address/hostname 2178 # Requires NFSCLIENT and NFS_ROOT 2179options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info 2180options BOOTP_NFSV3 # Use NFS v3 to NFS mount root 2181options BOOTP_COMPAT # Workaround for broken bootp daemons. 2182options BOOTP_WIRED_TO=fxp0 # Use interface fxp0 for BOOTP 2183 2184# 2185# Add tie-ins for a hardware watchdog. This only enables the hooks; 2186# the user must still supply the actual driver. 2187# 2188options HW_WDOG 2189 2190# 2191# Add software watchdog routines. 2192# 2193options SW_WATCHDOG 2194 2195# 2196# Disable swapping of upages and stack pages. This option removes all 2197# code which actually performs swapping, so it's not possible to turn 2198# it back on at run-time. 2199# 2200# This is sometimes usable for systems which don't have any swap space 2201# (see also sysctls "vm.defer_swapspace_pageouts" and 2202# "vm.disable_swapspace_pageouts") 2203# 2204#options NO_SWAPPING 2205 2206# Set the number of sf_bufs to allocate. sf_bufs are virtual buffers 2207# for sendfile(2) that are used to map file VM pages, and normally 2208# default to a quantity that is roughly 16*MAXUSERS+512. You would 2209# typically want about 4 of these for each simultaneous file send. 2210# 2211options NSFBUFS=1024 2212 2213# 2214# Enable extra debugging code for locks. This stores the filename and 2215# line of whatever acquired the lock in the lock itself, and change a 2216# number of function calls to pass around the relevant data. This is 2217# not at all useful unless you are debugging lock code. Also note 2218# that it is likely to break e.g. fstat(1) unless you recompile your 2219# userland with -DDEBUG_LOCKS as well. 2220# 2221options DEBUG_LOCKS 2222 2223 2224##################################################################### 2225# USB support 2226# UHCI controller 2227device uhci 2228# OHCI controller 2229device ohci 2230# EHCI controller 2231device ehci 2232# General USB code (mandatory for USB) 2233device usb 2234# 2235# USB Double Bulk Pipe devices 2236device udbp 2237# USB Fm Radio 2238device ufm 2239# Generic USB device driver 2240device ugen 2241# Human Interface Device (anything with buttons and dials) 2242device uhid 2243# USB keyboard 2244device ukbd 2245# USB printer 2246device ulpt 2247# USB Iomega Zip 100 Drive (Requires scbus and da) 2248device umass 2249# USB support for Belkin F5U109 and Magic Control Technology serial adapters 2250device umct 2251# USB modem support 2252device umodem 2253# USB mouse 2254device ums 2255# Diamond Rio 500 Mp3 player 2256device urio 2257# USB scanners 2258device uscanner 2259# 2260# USB serial support 2261device ucom 2262# USB support for Belkin F5U103 and compatible serial adapters 2263device ubsa 2264# USB support for BWCT console serial adapters 2265device ubser 2266# USB support for serial adapters based on the FT8U100AX and FT8U232AM 2267device uftdi 2268# USB support for Prolific PL-2303 serial adapters 2269device uplcom 2270# USB Visor and Palm devices 2271device uvisor 2272# USB serial support for DDI pocket's PHS 2273device uvscom 2274# 2275# ADMtek USB ethernet. Supports the LinkSys USB100TX, 2276# the Billionton USB100, the Melco LU-ATX, the D-Link DSB-650TX 2277# and the SMC 2202USB. Also works with the ADMtek AN986 Pegasus 2278# eval board. 2279device aue 2280# 2281# CATC USB-EL1201A USB ethernet. Supports the CATC Netmate 2282# and Netmate II, and the Belkin F5U111. 2283device cue 2284# 2285# Kawasaki LSI ethernet. Supports the LinkSys USB10T, 2286# Entrega USB-NET-E45, Peracom Ethernet Adapter, the 2287# 3Com 3c19250, the ADS Technologies USB-10BT, the ATen UC10T, 2288# the Netgear EA101, the D-Link DSB-650, the SMC 2102USB 2289# and 2104USB, and the Corega USB-T. 2290device kue 2291# 2292# RealTek RTL8150 USB to fast ethernet. Supports the Melco LUA-KTX 2293# and the GREEN HOUSE GH-USB100B. 2294device rue 2295# 2296# Davicom DM9601E USB to fast ethernet. Supports the Corega FEther USB-TXC. 2297device udav 2298 2299 2300# debugging options for the USB subsystem 2301# 2302options USB_DEBUG 2303 2304# options for ukbd: 2305options UKBD_DFLT_KEYMAP # specify the built-in keymap 2306makeoptions UKBD_DFLT_KEYMAP=it.iso 2307 2308# options for uplcom: 2309options UPLCOM_INTR_INTERVAL=100 # interrupt pipe interval 2310 # in milliseconds 2311 2312# options for uvscom: 2313options UVSCOM_DEFAULT_OPKTSIZE=8 # default output packet size 2314options UVSCOM_INTR_INTERVAL=100 # interrupt pipe interval 2315 # in milliseconds 2316 2317##################################################################### 2318# FireWire support 2319 2320device firewire # FireWire bus code 2321device sbp # SCSI over Firewire (Requires scbus and da) 2322device sbp_targ # SBP-2 Target mode (Requires scbus and targ) 2323device fwe # Ethernet over FireWire (non-standard!) 2324device fwip # IP over FireWire (rfc2734 and rfc3146) 2325 2326##################################################################### 2327# dcons support (Dumb Console Device) 2328 2329device dcons # dumb console driver 2330device dcons_crom # FireWire attachment 2331options DCONS_BUF_SIZE=16384 # buffer size 2332options DCONS_POLL_HZ=100 # polling rate 2333options DCONS_FORCE_CONSOLE=0 # force to be the primary console 2334options DCONS_FORCE_GDB=1 # force to be the gdb device 2335 2336##################################################################### 2337# crypto subsystem 2338# 2339# This is a port of the openbsd crypto framework. Include this when 2340# configuring FAST_IPSEC and when you have a h/w crypto device to accelerate 2341# user applications that link to openssl. 2342# 2343# Drivers are ports from openbsd with some simple enhancements that have 2344# been fed back to openbsd. 2345 2346device crypto # core crypto support 2347device cryptodev # /dev/crypto for access to h/w 2348 2349device rndtest # FIPS 140-2 entropy tester 2350 2351device hifn # Hifn 7951, 7781, etc. 2352options HIFN_DEBUG # enable debugging support: hw.hifn.debug 2353options HIFN_RNDTEST # enable rndtest support 2354 2355device ubsec # Broadcom 5501, 5601, 58xx 2356options UBSEC_DEBUG # enable debugging support: hw.ubsec.debug 2357options UBSEC_RNDTEST # enable rndtest support 2358 2359##################################################################### 2360 2361 2362# 2363# Embedded system options: 2364# 2365# An embedded system might want to run something other than init. 2366options INIT_PATH=/sbin/init:/stand/sysinstall 2367 2368# Debug options 2369options BUS_DEBUG # enable newbus debugging 2370options DEBUG_VFS_LOCKS # enable vfs lock debugging 2371options SOCKBUF_DEBUG # enable sockbuf last record/mb tail checking 2372 2373##################################################################### 2374# SYSV IPC KERNEL PARAMETERS 2375# 2376# Maximum number of entries in a semaphore map. 2377options SEMMAP=31 2378 2379# Maximum number of System V semaphores that can be used on the system at 2380# one time. 2381options SEMMNI=11 2382 2383# Total number of semaphores system wide 2384options SEMMNS=61 2385 2386# Total number of undo structures in system 2387options SEMMNU=31 2388 2389# Maximum number of System V semaphores that can be used by a single process 2390# at one time. 2391options SEMMSL=61 2392 2393# Maximum number of operations that can be outstanding on a single System V 2394# semaphore at one time. 2395options SEMOPM=101 2396 2397# Maximum number of undo operations that can be outstanding on a single 2398# System V semaphore at one time. 2399options SEMUME=11 2400 2401# Maximum number of shared memory pages system wide. 2402options SHMALL=1025 2403 2404# Maximum size, in bytes, of a single System V shared memory region. 2405options SHMMAX=(SHMMAXPGS*PAGE_SIZE+1) 2406options SHMMAXPGS=1025 2407 2408# Minimum size, in bytes, of a single System V shared memory region. 2409options SHMMIN=2 2410 2411# Maximum number of shared memory regions that can be used on the system 2412# at one time. 2413options SHMMNI=33 2414 2415# Maximum number of System V shared memory regions that can be attached to 2416# a single process at one time. 2417options SHMSEG=9 2418 2419# Set the amount of time (in seconds) the system will wait before 2420# rebooting automatically when a kernel panic occurs. If set to (-1), 2421# the system will wait indefinitely until a key is pressed on the 2422# console. 2423options PANIC_REBOOT_WAIT_TIME=16 2424 2425# Attempt to bypass the buffer cache and put data directly into the 2426# userland buffer for read operation when O_DIRECT flag is set on the 2427# file. Both offset and length of the read operation must be 2428# multiples of the physical media sector size. 2429# 2430#options DIRECTIO 2431 2432# Specify a lower limit for the number of swap I/O buffers. They are 2433# (among other things) used when bypassing the buffer cache due to 2434# DIRECTIO kernel option enabled and O_DIRECT flag set on file. 2435# 2436#options NSWBUF_MIN=120 2437 2438##################################################################### 2439 2440# More undocumented options for linting. 2441# Note that documenting these are not considered an affront. 2442 2443options CAM_DEBUG_DELAY 2444 2445# VFS cluster debugging. 2446options CLUSTERDEBUG 2447 2448options DEBUG 2449 2450# Kernel filelock debugging. 2451options LOCKF_DEBUG 2452 2453# System V compatible message queues 2454# Please note that the values provided here are used to test kernel 2455# building. The defaults in the sources provide almost the same numbers. 2456# MSGSSZ must be a power of 2 between 8 and 1024. 2457options MSGMNB=2049 # Max number of chars in queue 2458options MSGMNI=41 # Max number of message queue identifiers 2459options MSGSEG=2049 # Max number of message segments 2460options MSGSSZ=16 # Size of a message segment 2461options MSGTQL=41 # Max number of messages in system 2462 2463options NBUF=512 # Number of buffer headers 2464 2465options NMBCLUSTERS=1024 # Number of mbuf clusters 2466 2467options SCSI_NCR_DEBUG 2468options SCSI_NCR_MAX_SYNC=10000 2469options SCSI_NCR_MAX_WIDE=1 2470options SCSI_NCR_MYADDR=7 2471 2472options SC_DEBUG_LEVEL=5 # Syscons debug level 2473options SC_RENDER_DEBUG # syscons rendering debugging 2474 2475options SHOW_BUSYBUFS # List buffers that prevent root unmount 2476options SLIP_IFF_OPTS 2477options VFS_BIO_DEBUG # VFS buffer I/O debugging 2478 2479options KSTACK_MAX_PAGES=32 # Maximum pages to give the kernel stack 2480 2481# Adaptec Array Controller driver options 2482options AAC_DEBUG # Debugging levels: 2483 # 0 - quiet, only emit warnings 2484 # 1 - noisy, emit major function 2485 # points and things done 2486 # 2 - extremely noisy, emit trace 2487 # items in loops, etc. 2488 2489# Yet more undocumented options for linting. 2490# BKTR_ALLOC_PAGES has no effect except to cause warnings, and 2491# BROOKTREE_ALLOC_PAGES hasn't actually been superseded by it, since the 2492# driver still mostly spells this option BROOKTREE_ALLOC_PAGES. 2493##options BKTR_ALLOC_PAGES=(217*4+1) 2494options BROOKTREE_ALLOC_PAGES=(217*4+1) 2495options MAXFILES=999 2496options NDEVFSINO=1025 2497options NDEVFSOVERFLOW=32769 2498 2499# Yet more undocumented options for linting. 2500options VGA_DEBUG 2501