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