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