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# MBUF_FRAG_TEST option allows you to tell the IP stack to 572# fragment all outgoing packets into mbuf fragments of size 573# net.inet.ip.mbuf_frag_size (bytes). It is used for testing 574# if network drivers can properly handle long chains of mbufs. 575# The sysctl is '0' (no fragmentation) by default. 576options MBUF_FRAG_TEST 577 578# RANDOM_IP_ID causes the ID field in IP packets to be randomized 579# instead of incremented by 1 with each packet generated. This 580# option closes a minor information leak which allows remote 581# observers to determine the rate of packet generation on the 582# machine by watching the counter. 583options RANDOM_IP_ID 584 585# Statically Link in accept filters 586options ACCEPT_FILTER_DATA 587options ACCEPT_FILTER_HTTP 588 589# TCP_DROP_SYNFIN adds support for ignoring TCP packets with SYN+FIN. This 590# prevents nmap et al. from identifying the TCP/IP stack, but breaks support 591# for RFC1644 extensions and is not recommended for web servers. 592# 593options TCP_DROP_SYNFIN #drop TCP packets with SYN+FIN 594 595# DUMMYNET enables the "dummynet" bandwidth limiter. You need 596# IPFIREWALL as well. See the dummynet(4) and ipfw(8) manpages for more info. 597# When you run DUMMYNET it is advisable to also have "options HZ=1000" 598# to achieve a smoother scheduling of the traffic. 599# 600# BRIDGE enables bridging between ethernet cards -- see bridge(4). 601# You can use IPFIREWALL and DUMMYNET together with bridging. 602# 603options DUMMYNET 604options BRIDGE 605 606# Zero copy sockets support. This enables "zero copy" for sending and 607# receving data via a socket. The send side works for any type of NIC, 608# the receive side only works for NICs that support MTUs greater than the 609# page size of your architecture and that support header splitting. See 610# zero_copy(9) for more details. 611options ZERO_COPY_SOCKETS 612 613# 614# ATM (HARP version) options 615# 616# ATM_CORE includes the base ATM functionality code. This must be included 617# for ATM support. 618# 619# ATM_IP includes support for running IP over ATM. 620# 621# At least one (and usually only one) of the following signalling managers 622# must be included (note that all signalling managers include PVC support): 623# ATM_SIGPVC includes support for the PVC-only signalling manager `sigpvc'. 624# ATM_SPANS includes support for the `spans' signalling manager, which runs 625# the FORE Systems's proprietary SPANS signalling protocol. 626# ATM_UNI includes support for the `uni30' and `uni31' signalling managers, 627# which run the ATM Forum UNI 3.x signalling protocols. 628# 629# The `hea' driver provides support for the Efficient Networks, Inc. 630# ENI-155p ATM PCI Adapter. 631# 632# The `hfa' driver provides support for the FORE Systems, Inc. 633# PCA-200E ATM PCI Adapter. 634# 635options ATM_CORE #core ATM protocol family 636options ATM_IP #IP over ATM support 637options ATM_SIGPVC #SIGPVC signalling manager 638options ATM_SPANS #SPANS signalling manager 639options ATM_UNI #UNI signalling manager 640 641device hea #Efficient ENI-155p ATM PCI 642device hfa #FORE PCA-200E ATM PCI 643 644 645##################################################################### 646# FILESYSTEM OPTIONS 647 648# 649# Only the root, /usr, and /tmp filesystems need be statically 650# compiled; everything else will be automatically loaded at mount 651# time. (Exception: the UFS family--- FFS --- cannot 652# currently be demand-loaded.) Some people still prefer to statically 653# compile other filesystems as well. 654# 655# NB: The NULL, PORTAL, UMAP and UNION filesystems are known to be 656# buggy, and WILL panic your system if you attempt to do anything with 657# them. They are included here as an incentive for some enterprising 658# soul to sit down and fix them. 659# 660 661# One of these is mandatory: 662options FFS #Fast filesystem 663options NFSCLIENT #Network File System 664options NFSSERVER #Network File System 665 666# The rest are optional: 667options CD9660 #ISO 9660 filesystem 668options FDESCFS #File descriptor filesystem 669options HPFS #OS/2 File system 670options MSDOSFS #MS DOS File System (FAT, FAT32) 671options NTFS #NT File System 672options NULLFS #NULL filesystem 673#options NWFS #NetWare filesystem 674options PORTALFS #Portal filesystem 675options PROCFS #Process filesystem (requires PSEUDOFS) 676options PSEUDOFS #Pseudo-filesystem framework 677options SMBFS #SMB/CIFS filesystem 678options UDF #Universal Disk Format 679options UMAPFS #UID map filesystem 680options UNIONFS #Union filesystem 681# The xFS_ROOT options REQUIRE the associated ``options xFS'' 682options NFS_ROOT #NFS usable as root device 683 684# Soft updates is a technique for improving filesystem speed and 685# making abrupt shutdown less risky. 686# 687options SOFTUPDATES 688 689# Extended attributes allow additional data to be associated with files, 690# and is used for ACLs, Capabilities, and MAC labels. 691# See src/sys/ufs/ufs/README.extattr for more information. 692options UFS_EXTATTR 693options UFS_EXTATTR_AUTOSTART 694 695# Access Control List support for UFS filesystems. The current ACL 696# implementation requires extended attribute support, UFS_EXTATTR, 697# for the underlying filesystem. 698# See src/sys/ufs/ufs/README.acls for more information. 699options UFS_ACL 700 701# Directory hashing improves the speed of operations on very large 702# directories at the expense of some memory. 703options UFS_DIRHASH 704 705# Make space in the kernel for a root filesystem on a md device. 706# Define to the number of kilobytes to reserve for the filesystem. 707options MD_ROOT_SIZE=10 708 709# Make the md device a potential root device, either with preloaded 710# images of type mfs_root or md_root. 711options MD_ROOT 712 713# Allow this many swap-devices. 714# 715# In order to manage swap, the system must reserve bitmap space that 716# scales with the largest mounted swap device multiplied by NSWAPDEV, 717# irregardless of whether other swap devices exist or not. So it 718# is not a good idea to make this value too large. 719options NSWAPDEV=5 720 721# Disk quotas are supported when this option is enabled. 722options QUOTA #enable disk quotas 723 724# If you are running a machine just as a fileserver for PC and MAC 725# users, using SAMBA or Netatalk, you may consider setting this option 726# and keeping all those users' directories on a filesystem that is 727# mounted with the suiddir option. This gives new files the same 728# ownership as the directory (similar to group). It's a security hole 729# if you let these users run programs, so confine it to file-servers 730# (but it'll save you lots of headaches in those cases). Root owned 731# directories are exempt and X bits are cleared. The suid bit must be 732# set on the directory as well; see chmod(1) PC owners can't see/set 733# ownerships so they keep getting their toes trodden on. This saves 734# you all the support calls as the filesystem it's used on will act as 735# they expect: "It's my dir so it must be my file". 736# 737options SUIDDIR 738 739# NFS options: 740options NFS_MINATTRTIMO=3 # VREG attrib cache timeout in sec 741options NFS_MAXATTRTIMO=60 742options NFS_MINDIRATTRTIMO=30 # VDIR attrib cache timeout in sec 743options NFS_MAXDIRATTRTIMO=60 744options NFS_GATHERDELAY=10 # Default write gather delay (msec) 745options NFS_WDELAYHASHSIZ=16 # and with this 746options NFS_DEBUG # Enable NFS Debugging 747 748# Coda stuff: 749options CODA #CODA filesystem. 750device vcoda 4 #coda minicache <-> venus comm. 751 752# 753# Add support for the EXT2FS filesystem of Linux fame. Be a bit 754# careful with this - the ext2fs code has a tendency to lag behind 755# changes and not be exercised very much, so mounting read/write could 756# be dangerous (and even mounting read only could result in panics.) 757# 758options EXT2FS 759 760# Use real implementations of the aio_* system calls. There are numerous 761# stability and security issues in the current aio code that make it 762# unsuitable for inclusion on machines with untrusted local users. 763options VFS_AIO 764 765# Cryptographically secure random number generator; /dev/[u]random 766device random 767 768 769##################################################################### 770# POSIX P1003.1B 771 772# Real time extensions added in the 1993 Posix 773# _KPOSIX_PRIORITY_SCHEDULING: Build in _POSIX_PRIORITY_SCHEDULING 774 775options _KPOSIX_PRIORITY_SCHEDULING 776# p1003_1b_semaphores are very experimental, 777# user should be ready to assist in debugging if problems arise. 778options P1003_1B_SEMAPHORES 779 780 781##################################################################### 782# SECURITY POLICY PARAMETERS 783 784# Support for Mandatory Access Control (MAC): 785options MAC 786options MAC_BIBA 787options MAC_BSDEXTENDED 788options MAC_DEBUG 789options MAC_IFOFF 790options MAC_LOMAC 791options MAC_MLS 792options MAC_NONE 793options MAC_PARTITION 794options MAC_PORTACL 795options MAC_SEEOTHERUIDS 796options MAC_TEST 797 798 799##################################################################### 800# CLOCK OPTIONS 801 802# The granularity of operation is controlled by the kernel option HZ whose 803# default value (100) means a granularity of 10ms (1s/HZ). 804# Some subsystems, such as DUMMYNET, might benefit from a smaller 805# granularity such as 1ms or less, for a smoother scheduling of packets. 806# Consider, however, that reducing the granularity too much might 807# cause excessive overhead in clock interrupt processing, 808# potentially causing ticks to be missed and thus actually reducing 809# the accuracy of operation. 810 811options HZ=100 812 813# If you see the "calcru: negative time of %ld usec for pid %d (%s)\n" 814# message you probably have some broken sw/hw which disables interrupts 815# for too long. You can make the system more resistant to this by 816# choosing a high value for NTIMECOUNTER. The default is 5, there 817# is no upper limit but more than a couple of hundred are not productive. 818 819options NTIMECOUNTER=20 820 821# Enable support for the kernel PLL to use an external PPS signal, 822# under supervision of [x]ntpd(8) 823# More info in ntpd documentation: http://www.eecis.udel.edu/~ntp 824 825options PPS_SYNC 826 827 828##################################################################### 829# SCSI DEVICES 830 831# SCSI DEVICE CONFIGURATION 832 833# The SCSI subsystem consists of the `base' SCSI code, a number of 834# high-level SCSI device `type' drivers, and the low-level host-adapter 835# device drivers. The host adapters are listed in the ISA and PCI 836# device configuration sections below. 837# 838# Beginning with FreeBSD 2.0.5 you can wire down your SCSI devices so 839# that a given bus, target, and LUN always come on line as the same 840# device unit. In earlier versions the unit numbers were assigned 841# in the order that the devices were probed on the SCSI bus. This 842# means that if you removed a disk drive, you may have had to rewrite 843# your /etc/fstab file, and also that you had to be careful when adding 844# a new disk as it may have been probed earlier and moved your device 845# configuration around. 846 847# This old behavior is maintained as the default behavior. The unit 848# assignment begins with the first non-wired down unit for a device 849# type. For example, if you wire a disk as "da3" then the first 850# non-wired disk will be assigned da4. 851 852# The syntax for wiring down devices is: 853 854hint.scbus.0.at="ahc0" 855hint.scbus.1.at="ahc1" 856hint.scbus.1.bus="0" 857hint.scbus.3.at="ahc2" 858hint.scbus.3.bus="0" 859hint.scbus.2.at="ahc2" 860hint.scbus.2.bus="1" 861hint.da.0.at="scbus0" 862hint.da.0.target="0" 863hint.da.0.unit="0" 864hint.da.1.at="scbus3" 865hint.da.1.target="1" 866hint.da.2.at="scbus2" 867hint.da.2.target="3" 868hint.sa.1.at="scbus1" 869hint.sa.1.target="6" 870 871# "units" (SCSI logical unit number) that are not specified are 872# treated as if specified as LUN 0. 873 874# All SCSI devices allocate as many units as are required. 875 876# The ch driver drives SCSI Media Changer ("jukebox") devices. 877# 878# The da driver drives SCSI Direct Access ("disk") and Optical Media 879# ("WORM") devices. 880# 881# The sa driver drives SCSI Sequential Access ("tape") devices. 882# 883# The cd driver drives SCSI Read Only Direct Access ("cd") devices. 884# 885# The ses driver drives SCSI Envinronment Services ("ses") and 886# SAF-TE ("SCSI Accessable Fault-Tolerant Enclosure") devices. 887# 888# The pt driver drives SCSI Processor devices. 889# 890# 891# Target Mode support is provided here but also requires that a SIM 892# (SCSI Host Adapter Driver) provide support as well. 893# 894# The targ driver provides target mode support as a Processor type device. 895# It exists to give the minimal context necessary to respond to Inquiry 896# commands. There is a sample user application that shows how the rest 897# of the command support might be done in /usr/share/examples/scsi_target. 898# 899# The targbh driver provides target mode support and exists to respond 900# to incoming commands that do not otherwise have a logical unit assigned 901# to them. 902# 903# The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI 904# configuration as the "pass" driver. 905 906device scbus #base SCSI code 907device ch #SCSI media changers 908device da #SCSI direct access devices (aka disks) 909device sa #SCSI tapes 910device cd #SCSI CD-ROMs 911device ses #SCSI Environmental Services (and SAF-TE) 912device pt #SCSI processor 913device targ #SCSI Target Mode Code 914device targbh #SCSI Target Mode Blackhole Device 915device pass #CAM passthrough driver 916 917# CAM OPTIONS: 918# debugging options: 919# -- NOTE -- If you specify one of the bus/target/lun options, you must 920# specify them all! 921# CAMDEBUG: When defined enables debugging macros 922# CAM_DEBUG_BUS: Debug the given bus. Use -1 to debug all busses. 923# CAM_DEBUG_TARGET: Debug the given target. Use -1 to debug all targets. 924# CAM_DEBUG_LUN: Debug the given lun. Use -1 to debug all luns. 925# CAM_DEBUG_FLAGS: OR together CAM_DEBUG_INFO, CAM_DEBUG_TRACE, 926# CAM_DEBUG_SUBTRACE, and CAM_DEBUG_CDB 927# 928# CAM_MAX_HIGHPOWER: Maximum number of concurrent high power (start unit) cmds 929# CAM_NEW_TRAN_CODE: this is the new transport layer code that will be switched 930# to soon 931# SCSI_NO_SENSE_STRINGS: When defined disables sense descriptions 932# SCSI_NO_OP_STRINGS: When defined disables opcode descriptions 933# SCSI_DELAY: The number of MILLISECONDS to freeze the SIM (scsi adapter) 934# queue after a bus reset, and the number of milliseconds to 935# freeze the device queue after a bus device reset. This 936# can be changed at boot and runtime with the 937# kern.cam.scsi_delay tunable/sysctl. 938options CAMDEBUG 939options CAM_DEBUG_BUS=-1 940options CAM_DEBUG_TARGET=-1 941options CAM_DEBUG_LUN=-1 942options CAM_DEBUG_FLAGS=(CAM_DEBUG_INFO|CAM_DEBUG_TRACE|CAM_DEBUG_CDB) 943options CAM_MAX_HIGHPOWER=4 944options SCSI_NO_SENSE_STRINGS 945options SCSI_NO_OP_STRINGS 946options SCSI_DELAY=8000 # Be pessimistic about Joe SCSI device 947 948# Options for the CAM CDROM driver: 949# CHANGER_MIN_BUSY_SECONDS: Guaranteed minimum time quantum for a changer LUN 950# CHANGER_MAX_BUSY_SECONDS: Maximum time quantum per changer LUN, only 951# enforced if there is I/O waiting for another LUN 952# The compiled in defaults for these variables are 2 and 10 seconds, 953# respectively. 954# 955# These can also be changed on the fly with the following sysctl variables: 956# kern.cam.cd.changer.min_busy_seconds 957# kern.cam.cd.changer.max_busy_seconds 958# 959options CHANGER_MIN_BUSY_SECONDS=2 960options CHANGER_MAX_BUSY_SECONDS=10 961 962# Options for the CAM sequential access driver: 963# SA_IO_TIMEOUT: Timeout for read/write/wfm operations, in minutes 964# SA_SPACE_TIMEOUT: Timeout for space operations, in minutes 965# SA_REWIND_TIMEOUT: Timeout for rewind operations, in minutes 966# SA_ERASE_TIMEOUT: Timeout for erase operations, in minutes 967# SA_1FM_AT_EOD: Default to model which only has a default one filemark at EOT. 968options SA_IO_TIMEOUT=4 969options SA_SPACE_TIMEOUT=60 970options SA_REWIND_TIMEOUT=(2*60) 971options SA_ERASE_TIMEOUT=(4*60) 972options SA_1FM_AT_EOD 973 974# Optional timeout for the CAM processor target (pt) device 975# This is specified in seconds. The default is 60 seconds. 976options SCSI_PT_DEFAULT_TIMEOUT=60 977 978# Optional enable of doing SES passthrough on other devices (e.g., disks) 979# 980# Normally disabled because a lot of newer SCSI disks report themselves 981# as having SES capabilities, but this can then clot up attempts to build 982# build a topology with the SES device that's on the box these drives 983# are in.... 984options SES_ENABLE_PASSTHROUGH 985 986 987##################################################################### 988# MISCELLANEOUS DEVICES AND OPTIONS 989 990# The `pty' device usually turns out to be ``effectively mandatory'', 991# as it is required for `telnetd', `rlogind', `screen', `emacs', and 992# `xterm', among others. 993 994device pty #Pseudo ttys 995device nmdm #back-to-back tty devices 996device md #Memory/malloc disk 997device snp #Snoop device - to look at pty/vty/etc.. 998device ccd #Concatenated disk driver 999 1000# Configuring Vinum into the kernel is not necessary, since the kld 1001# module gets started automatically when vinum(8) starts. This 1002# device is also untested. Use at your own risk. 1003# 1004# The option VINUMDEBUG must match the value set in CFLAGS 1005# in src/sbin/vinum/Makefile. Failure to do so will result in 1006# the following message from vinum(8): 1007# 1008# Can't get vinum config: Invalid argument 1009# 1010# see vinum(4) for more reasons not to use these options. 1011device vinum #Vinum concat/mirror/raid driver 1012options VINUMDEBUG #enable Vinum debugging hooks 1013 1014# RAIDframe device. RAID_AUTOCONFIG allows RAIDframe to search all of the 1015# disk devices in the system looking for components that it recognizes (already 1016# configured once before) and auto-configured them into arrays. 1017device raidframe 1018options RAID_AUTOCONFIG 1019 1020# Kernel side iconv library 1021options LIBICONV 1022 1023# Size of the kernel message buffer. Should be N * pagesize. 1024options MSGBUF_SIZE=40960 1025 1026# Maximum size of a tty or pty input buffer. 1027options TTYHOG=8193 1028 1029 1030##################################################################### 1031# HARDWARE DEVICE CONFIGURATION 1032 1033# For ISA the required hints are listed. 1034# EISA, MCA, PCI and pccard are self identifying buses, so no hints 1035# are needed. 1036 1037# 1038# Mandatory devices: 1039# 1040 1041# The keyboard controller; it controls the keyboard and the PS/2 mouse. 1042device atkbdc 1043hint.atkbdc.0.at="isa" 1044hint.atkbdc.0.port="0x060" 1045 1046# The AT keyboard 1047device atkbd 1048hint.atkbd.0.at="atkbdc" 1049hint.atkbd.0.irq="1" 1050 1051# Options for atkbd: 1052options ATKBD_DFLT_KEYMAP # specify the built-in keymap 1053makeoptions ATKBD_DFLT_KEYMAP=jp.106 1054 1055# These options are valid for other keyboard drivers as well. 1056options KBD_DISABLE_KEYMAP_LOAD # refuse to load a keymap 1057options KBD_INSTALL_CDEV # install a CDEV entry in /dev 1058 1059# `flags' for atkbd: 1060# 0x01 Force detection of keyboard, else we always assume a keyboard 1061# 0x02 Don't reset keyboard, useful for some newer ThinkPads 1062# 0x03 Force detection and avoid reset, might help with certain 1063# dockingstations 1064# 0x04 Old-style (XT) keyboard support, useful for older ThinkPads 1065 1066# PS/2 mouse 1067device psm 1068hint.psm.0.at="atkbdc" 1069hint.psm.0.irq="12" 1070 1071# Options for psm: 1072options PSM_HOOKRESUME #hook the system resume event, useful 1073 #for some laptops 1074options PSM_RESETAFTERSUSPEND #reset the device at the resume event 1075 1076# Video card driver for VGA adapters. 1077device vga 1078hint.vga.0.at="isa" 1079 1080# Options for vga: 1081# Try the following option if the mouse pointer is not drawn correctly 1082# or font does not seem to be loaded properly. May cause flicker on 1083# some systems. 1084options VGA_ALT_SEQACCESS 1085 1086# If you can dispense with some vga driver features, you may want to 1087# use the following options to save some memory. 1088#options VGA_NO_FONT_LOADING # don't save/load font 1089#options VGA_NO_MODE_CHANGE # don't change video modes 1090 1091# Older video cards may require this option for proper operation. 1092options VGA_SLOW_IOACCESS # do byte-wide i/o's to TS and GDC regs 1093 1094# The following option probably won't work with the LCD displays. 1095options VGA_WIDTH90 # support 90 column modes 1096 1097options FB_DEBUG # Frame buffer debugging 1098 1099device splash # Splash screen and screen saver support 1100 1101# Various screen savers. 1102device blank_saver 1103device daemon_saver 1104device fade_saver 1105device fire_saver 1106device green_saver 1107device logo_saver 1108device rain_saver 1109device star_saver 1110device warp_saver 1111 1112# The syscons console driver (sco color console compatible). 1113device sc 1114hint.sc.0.at="isa" 1115options MAXCONS=16 # number of virtual consoles 1116options SC_ALT_MOUSE_IMAGE # simplified mouse cursor in text mode 1117options SC_DFLT_FONT # compile font in 1118makeoptions SC_DFLT_FONT=cp850 1119options SC_DISABLE_DDBKEY # disable `debug' key 1120options SC_DISABLE_REBOOT # disable reboot key sequence 1121options SC_HISTORY_SIZE=200 # number of history buffer lines 1122options SC_MOUSE_CHAR=0x3 # char code for text mode mouse cursor 1123options SC_PIXEL_MODE # add support for the raster text mode 1124 1125# The following options will let you change the default colors of syscons. 1126options SC_NORM_ATTR=(FG_GREEN|BG_BLACK) 1127options SC_NORM_REV_ATTR=(FG_YELLOW|BG_GREEN) 1128options SC_KERNEL_CONS_ATTR=(FG_RED|BG_BLACK) 1129options SC_KERNEL_CONS_REV_ATTR=(FG_BLACK|BG_RED) 1130 1131# The following options will let you change the default behaviour of 1132# cut-n-paste feature 1133options SC_CUT_SPACES2TABS # convert leading spaces into tabs 1134options SC_CUT_SEPCHARS=\"x09\" # set of characters that delimit words 1135 # (default is single space - \"x20\") 1136 1137# If you have a two button mouse, you may want to add the following option 1138# to use the right button of the mouse to paste text. 1139options SC_TWOBUTTON_MOUSE 1140 1141# You can selectively disable features in syscons. 1142options SC_NO_CUTPASTE 1143options SC_NO_FONT_LOADING 1144options SC_NO_HISTORY 1145options SC_NO_SYSMOUSE 1146options SC_NO_SUSPEND_VTYSWITCH 1147 1148# `flags' for sc 1149# 0x80 Put the video card in the VESA 800x600 dots, 16 color mode 1150# 0x100 Probe for a keyboard device periodically if one is not present 1151 1152# 1153# Optional devices: 1154# 1155 1156# 1157# SCSI host adapters: 1158# 1159# adv: All Narrow SCSI bus AdvanSys controllers. 1160# adw: Second Generation AdvanSys controllers including the ADV940UW. 1161# aha: Adaptec 154x/1535/1640 1162# ahb: Adaptec 174x EISA controllers 1163# ahc: Adaptec 274x/284x/2910/293x/294x/394x/3950x/3960x/398X/4944/ 1164# 19160x/29160x, aic7770/aic78xx 1165# ahd: Adaptec 29320/39320 Controllers. 1166# aic: Adaptec 6260/6360, APA-1460 (PC Card), NEC PC9801-100 (C-BUS) 1167# amd: Support for the AMD 53C974 SCSI host adapter chip as found on devices 1168# such as the Tekram DC-390(T). 1169# bt: Most Buslogic controllers: including BT-445, BT-54x, BT-64x, BT-74x, 1170# BT-75x, BT-946, BT-948, BT-956, BT-958, SDC3211B, SDC3211F, SDC3222F 1171# isp: Qlogic ISP 1020, 1040 and 1040B PCI SCSI host adapters, 1172# ISP 1240 Dual Ultra SCSI, ISP 1080 and 1280 (Dual) Ultra2, 1173# ISP 12160 Ultra3 SCSI, 1174# Qlogic ISP 2100 and ISP 2200 1Gb Fibre Channel host adapters. 1175# Qlogic ISP 2300 and ISP 2312 2Gb Fibre Channel host adapters. 1176# ispfw: Firmware module for Qlogic host adapters 1177# mpt: LSI-Logic MPT/Fusion 53c1020 or 53c1030 Ultra4 1178# or FC9x9 Fibre Channel host adapters. 1179# ncr: NCR 53C810, 53C825 self-contained SCSI host adapters. 1180# sym: Symbios/Logic 53C8XX family of PCI-SCSI I/O processors: 1181# 53C810, 53C810A, 53C815, 53C825, 53C825A, 53C860, 53C875, 1182# 53C876, 53C885, 53C895, 53C895A, 53C896, 53C897, 53C1510D, 1183# 53C1010-33, 53C1010-66. 1184# trm: Tekram DC395U/UW/F DC315U adapters. 1185# wds: WD7000 1186 1187# 1188# Note that the order is important in order for Buslogic ISA/EISA cards to be 1189# probed correctly. 1190# 1191device bt 1192hint.bt.0.at="isa" 1193hint.bt.0.port="0x330" 1194device adv 1195hint.adv.0.at="isa" 1196device adw 1197device aha 1198hint.aha.0.at="isa" 1199device aic 1200hint.aic.0.at="isa" 1201device ahb 1202device ahc 1203device ahd 1204device amd 1205device isp 1206hint.isp.0.disable="1" 1207hint.isp.0.role="3" 1208hint.isp.0.prefer_iomap="1" 1209hint.isp.0.prefer_memmap="1" 1210hint.isp.0.fwload_disable="1" 1211hint.isp.0.ignore_nvram="1" 1212hint.isp.0.fullduplex="1" 1213hint.isp.0.topology="lport" 1214hint.isp.0.topology="nport" 1215hint.isp.0.topology="lport-only" 1216hint.isp.0.topology="nport-only" 1217# we can't get u_int64_t types, nor can we get strings if it's got 1218# a leading 0x, hence this silly dodge. 1219hint.isp.0.portwnn="w50000000aaaa0000" 1220hint.isp.0.nodewnn="w50000000aaaa0001" 1221device ispfw 1222device mpt 1223device ncr 1224device sym 1225device trm 1226device wds 1227hint.wds.0.at="isa" 1228hint.wds.0.port="0x350" 1229hint.wds.0.irq="11" 1230hint.wds.0.drq="6" 1231 1232# The aic7xxx driver will attempt to use memory mapped I/O for all PCI 1233# controllers that have it configured only if this option is set. Unfortunately, 1234# this doesn't work on some motherboards, which prevents it from being the 1235# default. 1236options AHC_ALLOW_MEMIO 1237 1238# Dump the contents of the ahc controller configuration PROM. 1239options AHC_DUMP_EEPROM 1240 1241# Bitmap of units to enable targetmode operations. 1242options AHC_TMODE_ENABLE 1243 1244# Compile in aic79xx debugging code. 1245options AHD_DEBUG 1246 1247# Aic79xx driver debugging options. 1248# See the ahd(4) manpage 1249options AHD_DEBUG_OPTS=0xFFFFFFFF 1250 1251# Print human-readable register definitions when debugging 1252options AHD_REG_PRETTY_PRINT 1253 1254# The adw driver will attempt to use memory mapped I/O for all PCI 1255# controllers that have it configured only if this option is set. 1256options ADW_ALLOW_MEMIO 1257 1258# Options used in dev/isp/ (Qlogic SCSI/FC driver). 1259# 1260# ISP_TARGET_MODE - enable target mode operation 1261# 1262options ISP_TARGET_MODE=1 1263 1264# Options used in dev/sym/ (Symbios SCSI driver). 1265#options SYM_SETUP_LP_PROBE_MAP #-Low Priority Probe Map (bits) 1266 # Allows the ncr to take precedence 1267 # 1 (1<<0) -> 810a, 860 1268 # 2 (1<<1) -> 825a, 875, 885, 895 1269 # 4 (1<<2) -> 895a, 896, 1510d 1270#options SYM_SETUP_SCSI_DIFF #-HVD support for 825a, 875, 885 1271 # disabled:0 (default), enabled:1 1272#options SYM_SETUP_PCI_PARITY #-PCI parity checking 1273 # disabled:0, enabled:1 (default) 1274#options SYM_SETUP_MAX_LUN #-Number of LUNs supported 1275 # default:8, range:[1..64] 1276 1277# The 'asr' driver provides support for current DPT/Adaptec SCSI RAID 1278# controllers (SmartRAID V and VI and later). 1279# These controllers require the CAM infrastructure. 1280# 1281device asr 1282 1283# The 'dpt' driver provides support for old DPT controllers (http://www.dpt.com/). 1284# These have hardware RAID-{0,1,5} support, and do multi-initiator I/O. 1285# The DPT controllers are commonly re-licensed under other brand-names - 1286# some controllers by Olivetti, Dec, HP, AT&T, SNI, AST, Alphatronic, NEC and 1287# Compaq are actually DPT controllers. 1288# 1289# See src/sys/dev/dpt for debugging and other subtle options. 1290# DPT_MEASURE_PERFORMANCE Enables a set of (semi)invasive metrics. Various 1291# instruments are enabled. The tools in 1292# /usr/sbin/dpt_* assume these to be enabled. 1293# DPT_HANDLE_TIMEOUTS Normally device timeouts are handled by the DPT. 1294# If you ant the driver to handle timeouts, enable 1295# this option. If your system is very busy, this 1296# option will create more trouble than solve. 1297# DPT_TIMEOUT_FACTOR Used to compute the excessive amount of time to 1298# wait when timing out with the above option. 1299# DPT_DEBUG_xxxx These are controllable from sys/dev/dpt/dpt.h 1300# DPT_LOST_IRQ When enabled, will try, once per second, to catch 1301# any interrupt that got lost. Seems to help in some 1302# DPT-firmware/Motherboard combinations. Minimal 1303# cost, great benefit. 1304# DPT_RESET_HBA Make "reset" actually reset the controller 1305# instead of fudging it. Only enable this if you 1306# are 100% certain you need it. 1307 1308device dpt 1309 1310# DPT options 1311#!CAM# options DPT_MEASURE_PERFORMANCE 1312#!CAM# options DPT_HANDLE_TIMEOUTS 1313options DPT_TIMEOUT_FACTOR=4 1314options DPT_LOST_IRQ 1315options DPT_RESET_HBA 1316options DPT_ALLOW_MEMIO 1317 1318# 1319# Compaq "CISS" RAID controllers (SmartRAID 5* series) 1320# These controllers have a SCSI-like interface, and require the 1321# CAM infrastructure. 1322# 1323device ciss 1324 1325# 1326# Intel Integrated RAID controllers. 1327# This driver was developed and is maintained by Intel. Contacts 1328# at Intel for this driver are 1329# "Kannanthanam, Boji T" <boji.t.kannanthanam@intel.com> and 1330# "Leubner, Achim" <achim.leubner@intel.com>. 1331# 1332device iir 1333 1334# 1335# Mylex AcceleRAID and eXtremeRAID controllers with v6 and later 1336# firmware. These controllers have a SCSI-like interface, and require 1337# the CAM infrastructure. 1338# 1339device mly 1340 1341# 1342# Compaq Smart RAID, Mylex DAC960 and AMI MegaRAID controllers. Only 1343# one entry is needed; the code will find and configure all supported 1344# controllers. 1345# 1346device ida # Compaq Smart RAID 1347device mlx # Mylex DAC960 1348device amr # AMI MegaRAID 1349 1350# 1351# 3ware ATA RAID 1352# 1353device twe # 3ware ATA RAID 1354 1355# 1356# The 'ATA' driver supports all ATA and ATAPI devices, including PC Card 1357# devices. You only need one "device ata" for it to find all 1358# PCI and PC Card ATA/ATAPI devices on modern machines. 1359device ata 1360device atadisk # ATA disk drives 1361device atapicd # ATAPI CDROM drives 1362device atapifd # ATAPI floppy drives 1363device atapist # ATAPI tape drives 1364device atapicam # emulate ATAPI devices as SCSI ditto via CAM 1365 # needs CAM to be present (scbus & pass) 1366# 1367# For older non-PCI, non-PnPBIOS systems, these are the hints lines to add: 1368hint.ata.0.at="isa" 1369hint.ata.0.port="0x1f0" 1370hint.ata.0.irq="14" 1371hint.ata.1.at="isa" 1372hint.ata.1.port="0x170" 1373hint.ata.1.irq="15" 1374 1375# 1376# The following options are valid on the ATA driver: 1377# 1378# ATA_STATIC_ID: controller numbering is static ie depends on location 1379# else the device numbers are dynamically allocated. 1380 1381options ATA_STATIC_ID 1382 1383# 1384# Standard floppy disk controllers and floppy tapes, supports 1385# the Y-E DATA External FDD (PC Card) 1386# 1387device fdc 1388hint.fdc.0.at="isa" 1389hint.fdc.0.port="0x3F0" 1390hint.fdc.0.irq="6" 1391hint.fdc.0.drq="2" 1392# 1393# FDC_DEBUG enables floppy debugging. Since the debug output is huge, you 1394# gotta turn it actually on by setting the variable fd_debug with DDB, 1395# however. 1396options FDC_DEBUG 1397# 1398# Activate this line if you happen to have an Insight floppy tape. 1399# Probing them proved to be dangerous for people with floppy disks only, 1400# so it's "hidden" behind a flag: 1401#hint.fdc.0.flags="1" 1402 1403# Specify floppy devices 1404hint.fd.0.at="fdc0" 1405hint.fd.0.drive="0" 1406hint.fd.1.at="fdc0" 1407hint.fd.1.drive="1" 1408 1409# 1410# sio: serial ports (see sio(4)), including support for various 1411# PC Card devices, such as Modem and NICs (see etc/defaults/pccard.conf) 1412 1413device sio 1414hint.sio.0.at="isa" 1415hint.sio.0.port="0x3F8" 1416hint.sio.0.flags="0x10" 1417hint.sio.0.irq="4" 1418 1419# 1420# `flags' for serial drivers that support consoles (only for sio now): 1421# 0x10 enable console support for this unit. The other console flags 1422# are ignored unless this is set. Enabling console support does 1423# not make the unit the preferred console - boot with -h or set 1424# the 0x20 flag for that. Currently, at most one unit can have 1425# console support; the first one (in config file order) with 1426# this flag set is preferred. Setting this flag for sio0 gives 1427# the old behaviour. 1428# 0x20 force this unit to be the console (unless there is another 1429# higher priority console). This replaces the COMCONSOLE option. 1430# 0x40 reserve this unit for low level console operations. Do not 1431# access the device in any normal way. 1432# 0x80 use this port for serial line gdb support in ddb. 1433# 1434# PnP `flags' 1435# 0x1 disable probing of this device. Used to prevent your modem 1436# from being attached as a PnP modem. 1437# 1438 1439# Options for serial drivers that support consoles (only for sio now): 1440options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to 1441 #DDB, if available. 1442options CONSPEED=115200 # speed for serial console 1443 # (default 9600) 1444 1445# Solaris implements a new BREAK which is initiated by a character 1446# sequence CR ~ ^b which is similar to a familiar pattern used on 1447# Sun servers by the Remote Console. 1448options ALT_BREAK_TO_DEBUGGER 1449 1450# Options for sio: 1451options COM_ESP #code for Hayes ESP 1452options COM_MULTIPORT #code for some cards with shared IRQs 1453 1454# Other flags for sio that aren't documented in the man page. 1455# 0x20000 enable hardware RTS/CTS and larger FIFOs. Only works for 1456# ST16650A-compatible UARTs. 1457 1458# PCI Universal Communications driver 1459# Supports various single and multi port PCI serial cards. Maybe later 1460# also the parallel ports on combination serial/parallel cards. New cards 1461# can be added in src/sys/dev/puc/pucdata.c. 1462# 1463# If the PUC_FASTINTR option is used the driver will try to use fast 1464# interrupts. The card must then be the only user of that interrupt. 1465# Interrupts cannot be shared when using PUC_FASTINTR. 1466device puc 1467options PUC_FASTINTR 1468 1469# 1470# Network interfaces: 1471# 1472# MII bus support is required for some PCI 10/100 ethernet NICs, 1473# namely those which use MII-compliant transceivers or implement 1474# tranceiver control interfaces that operate like an MII. Adding 1475# "device miibus0" to the kernel config pulls in support for 1476# the generic miibus API and all of the PHY drivers, including a 1477# generic one for PHYs that aren't specifically handled by an 1478# individual driver. 1479device miibus 1480 1481# an: Aironet 4500/4800 802.11 wireless adapters. Supports the PCMCIA, 1482# PCI and ISA varieties. 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# em: Intel Pro/1000 Gigabit Ethernet 82542, 82543, 82544 based adapters. 1506# ep: 3Com 3C509, 3C529, 3C556, 3C562D, 3C563D, 3C572, 3C574X, 3C579, 3C589 1507# and PC Card devices using these chipsets. 1508# ex: Intel EtherExpress Pro/10 and other i82595-based adapters, 1509# Olicom Ethernet PC Card devices. 1510# fe: Fujitsu MB86960A/MB86965A Ethernet 1511# fea: DEC DEFEA EISA FDDI adapter 1512# fpa: Support for the Digital DEFPA PCI FDDI. `device fddi' is also needed. 1513# fxp: Intel EtherExpress Pro/100B 1514# (hint of prefer_iomap can be done to prefer I/O instead of Mem mapping) 1515# gx: Intel Pro/1000 Gigabit Ethernet (82542, 82543-F, 82543-T) 1516# lge: Support for PCI gigabit ethernet adapters based on the Level 1 1517# LXT1001 NetCellerator chipset. This includes the D-Link DGE-500SX, 1518# SMC TigerCard 1000 (SMC9462SX), and some Addtron cards. 1519# my: Myson Fast Ethernet (MTD80X, MTD89X) 1520# nge: Support for PCI gigabit ethernet adapters based on the National 1521# Semiconductor DP83820 and DP83821 chipset. This includes the 1522# SMC EZ Card 1000 (SMC9462TX), D-Link DGE-500T, Asante FriendlyNet 1523# GigaNIX 1000TA and 1000TPC, the Addtron AEG320T, the LinkSys 1524# EG1032 and EG1064, the Surecom EP-320G-TX and the Netgear GA622T. 1525# pcn: Support for PCI fast ethernet adapters based on the AMD Am79c97x 1526# chipsets, including the PCnet/FAST, PCnet/FAST+, PCnet/PRO and 1527# PCnet/Home. These were previously handled by the lnc driver (and 1528# still will be if you leave this driver out of the kernel). 1529# rl: Support for PCI fast ethernet adapters based on the RealTek 8129/8139 1530# chipset. Note that the RealTek driver defaults to using programmed 1531# I/O to do register accesses because memory mapped mode seems to cause 1532# severe lockups on SMP hardware. This driver also supports the 1533# Accton EN1207D `Cheetah' adapter, which uses a chip called 1534# the MPX 5030/5038, which is either a RealTek in disguise or a 1535# RealTek workalike. Note that the D-Link DFE-530TX+ uses the RealTek 1536# chipset and is supported by this driver, not the 'vr' driver. 1537# sf: Support for Adaptec Duralink PCI fast ethernet adapters based on the 1538# Adaptec AIC-6915 "starfire" controller. 1539# This includes dual and quad port cards, as well as one 100baseFX card. 1540# Most of these are 64-bit PCI devices, except for one single port 1541# card which is 32-bit. 1542# sis: Support for NICs based on the Silicon Integrated Systems SiS 900, 1543# SiS 7016 and NS DP83815 PCI fast ethernet controller chips. 1544# sk: Support for the SysKonnect SK-984x series PCI gigabit ethernet NICs. 1545# This includes the SK-9841 and SK-9842 single port cards (single mode 1546# and multimode fiber) and the SK-9843 and SK-9844 dual port cards 1547# (also single mode and multimode). 1548# The driver will autodetect the number of ports on the card and 1549# attach each one as a separate network interface. 1550# sn: Support for ISA and PC Card Ethernet devices using the 1551# SMC91C90/92/94/95 chips. 1552# ste: Sundance Technologies ST201 PCI fast ethernet controller, includes 1553# the D-Link DFE-550TX. 1554# ti: Support for PCI gigabit ethernet NICs based on the Alteon Networks 1555# Tigon 1 and Tigon 2 chipsets. This includes the Alteon AceNIC, the 1556# 3Com 3c985, the Netgear GA620 and various others. Note that you will 1557# probably want to bump up NMBCLUSTERS a lot to use this driver. 1558# tl: Support for the Texas Instruments TNETE100 series 'ThunderLAN' 1559# cards and integrated ethernet controllers. This includes several 1560# Compaq Netelligent 10/100 cards and the built-in ethernet controllers 1561# in several Compaq Prosignia, Proliant and Deskpro systems. It also 1562# supports several Olicom 10Mbps and 10/100 boards. 1563# tx: SMC 9432 TX, BTX and FTX cards. (SMC EtherPower II serie) 1564# txp: Support for 3Com 3cR990 cards with the "Typhoon" chipset 1565# vr: Support for various fast ethernet adapters based on the VIA 1566# Technologies VT3043 `Rhine I' and VT86C100A `Rhine II' chips, 1567# including the D-Link DFE530TX (see 'rl' for DFE530TX+), the Hawking 1568# Technologies PN102TX, and the AOpen/Acer ALN-320. 1569# vx: 3Com 3C590 and 3C595 1570# wb: Support for fast ethernet adapters based on the Winbond W89C840F chip. 1571# Note: this is not the same as the Winbond W89C940F, which is a 1572# NE2000 clone. 1573# wi: Lucent WaveLAN/IEEE 802.11 PCMCIA adapters. Note: this supports both 1574# the PCMCIA and ISA cards: the ISA card is really a PCMCIA to ISA 1575# bridge with a PCMCIA adapter plugged into it. 1576# xe: Xircom/Intel EtherExpress Pro100/16 PC Card ethernet controller, 1577# Accton Fast EtherCard-16, Compaq Netelligent 10/100 PC Card, 1578# Toshiba 10/100 Ethernet PC Card, Xircom 16-bit Ethernet + Modem 56 1579# xl: Support for the 3Com 3c900, 3c905, 3c905B and 3c905C (Fast) 1580# Etherlink XL cards and integrated controllers. This includes the 1581# integrated 3c905B-TX chips in certain Dell Optiplex and Dell 1582# Precision desktop machines and the integrated 3c905-TX chips 1583# in Dell Latitude laptop docking stations. 1584# Also supported: 3Com 3c980(C)-TX, 3Com 3cSOHO100-TX, 3Com 3c450-TX 1585 1586# Order for ISA/EISA devices is important here 1587 1588device cm 1589hint.cm.0.at="isa" 1590hint.cm.0.port="0x2e0" 1591hint.cm.0.irq="9" 1592hint.cm.0.maddr="0xdc000" 1593device cs 1594hint.cs.0.at="isa" 1595hint.cs.0.port="0x300" 1596device ep 1597device ex 1598device fe 1599hint.fe.0.at="isa" 1600hint.fe.0.port="0x300" 1601device fea 1602device sn 1603hint.sn.0.at="isa" 1604hint.sn.0.port="0x300" 1605hint.sn.0.irq="10" 1606device an 1607device awi 1608device cnw 1609device wi 1610device xe 1611 1612# PCI Ethernet NICs that use the common MII bus controller code. 1613device dc # DEC/Intel 21143 and various workalikes 1614device fxp # Intel EtherExpress PRO/100B (82557, 82558) 1615hint.fxp.0.prefer_iomap="0" 1616device my # Myson Fast Ethernet (MTD80X, MTD89X) 1617device rl # RealTek 8129/8139 1618device pcn # AMD Am79C97x PCI 10/100 NICs 1619device sf # Adaptec AIC-6915 (``Starfire'') 1620device sis # Silicon Integrated Systems SiS 900/SiS 7016 1621device ste # Sundance ST201 (D-Link DFE-550TX) 1622device tl # Texas Instruments ThunderLAN 1623device tx # SMC EtherPower II (83c170 ``EPIC'') 1624device vr # VIA Rhine, Rhine II 1625device wb # Winbond W89C840F 1626device xl # 3Com 3c90x (``Boomerang'', ``Cyclone'') 1627 1628# PCI Ethernet NICs. 1629device de # DEC/Intel DC21x4x (``Tulip'') 1630device txp # 3Com 3cR990 (``Typhoon'') 1631device vx # 3Com 3c590, 3c595 (``Vortex'') 1632 1633# PCI Gigabit & FDDI NICs. 1634device bge 1635device gx 1636device lge 1637device nge 1638device sk 1639device ti 1640device fpa 1641 1642# Use "private" jumbo buffers allocated exclusively for the ti(4) driver. 1643# This option is incompatible with the TI_JUMBO_HDRSPLIT option below. 1644#options TI_PRIVATE_JUMBOS 1645# Turn on the header splitting option for the ti(4) driver firmware. This 1646# only works for Tigon II chips, and has no effect for Tigon I chips. 1647options TI_JUMBO_HDRSPLIT 1648 1649# These two options allow manipulating the mbuf cluster size and mbuf size, 1650# respectively. Be very careful with NIC driver modules when changing 1651# these from their default values, because that can potentially cause a 1652# mismatch between the mbuf size assumed by the kernel and the mbuf size 1653# assumed by a module. The only driver that currently has the ability to 1654# detect a mismatch is ti(4). 1655options MCLSHIFT=12 # mbuf cluster shift in bits, 12 == 4KB 1656options MSIZE=512 # mbuf size in bytes 1657 1658# 1659# ATM related options (Cranor version) 1660# (note: this driver cannot be used with the HARP ATM stack) 1661# 1662# The `en' device provides support for Efficient Networks (ENI) 1663# ENI-155 PCI midway cards, and the Adaptec 155Mbps PCI ATM cards (ANA-59x0). 1664# 1665# atm device provides generic atm functions and is required for 1666# atm devices. 1667# NATM enables the netnatm protocol family that can be used to 1668# bypass TCP/IP. 1669# 1670# the current driver supports only PVC operations (no atm-arp, no multicast). 1671# for more details, please read the original documents at 1672# http://www.ccrc.wustl.edu/pub/chuck/tech/bsdatm/bsdatm.html 1673# 1674device atm 1675device en 1676options NATM #native ATM 1677 1678# 1679# Audio drivers: `pcm', `sbc', `gusc' 1680# 1681# pcm: PCM audio through various sound cards. 1682# 1683# This has support for a large number of new audio cards, based on 1684# CS423x, OPTi931, Yamaha OPL-SAx, and also for SB16, GusPnP. 1685# For more information about this driver and supported cards, 1686# see the pcm.4 man page. 1687# 1688# The flags of the device tells the device a bit more info about the 1689# device that normally is obtained through the PnP interface. 1690# bit 2..0 secondary DMA channel; 1691# bit 4 set if the board uses two dma channels; 1692# bit 15..8 board type, overrides autodetection; leave it 1693# zero if don't know what to put in (and you don't, 1694# since this is unsupported at the moment...). 1695# 1696# Supported cards include: 1697# Creative SoundBlaster ISA PnP/non-PnP 1698# Supports ESS and Avance ISA chips as well. 1699# Gravis UltraSound ISA PnP/non-PnP 1700# Crystal Semiconductor CS461x/428x PCI 1701# Neomagic 256AV (ac97) 1702# Most of the more common ISA/PnP sb/mss/ess compatable cards. 1703 1704device pcm 1705 1706# For non-pnp sound cards with no bridge drivers only: 1707hint.pcm.0.at="isa" 1708hint.pcm.0.irq="10" 1709hint.pcm.0.drq="1" 1710hint.pcm.0.flags="0x0" 1711 1712# 1713# midi: MIDI interfaces and synthesizers 1714# 1715 1716device midi 1717 1718# For non-pnp sound cards with no bridge drivers: 1719hint.midi.0.at="isa" 1720hint.midi.0.irq="5" 1721hint.midi.0.flags="0x0" 1722 1723# For serial ports (this example configures port 2): 1724# TODO: implement generic tty-midi interface so that we can use 1725# other uarts. 1726hint.midi.0.at="isa" 1727hint.midi.0.port="0x2F8" 1728hint.midi.0.irq="3" 1729 1730# 1731# seq: MIDI sequencer 1732# 1733 1734device seq 1735 1736# The bridge drivers for sound cards. These can be separately configured 1737# for providing services to the likes of new-midi. 1738# When used with 'device pcm' they also provide pcm sound services. 1739# 1740# sbc: Creative SoundBlaster ISA PnP/non-PnP 1741# Supports ESS and Avance ISA chips as well. 1742# gusc: Gravis UltraSound ISA PnP/non-PnP 1743# csa: Crystal Semiconductor CS461x/428x PCI 1744 1745# For non-PnP cards: 1746device sbc 1747hint.sbc.0.at="isa" 1748hint.sbc.0.port="0x220" 1749hint.sbc.0.irq="5" 1750hint.sbc.0.drq="1" 1751hint.sbc.0.flags="0x15" 1752device gusc 1753hint.gusc.0.at="isa" 1754hint.gusc.0.port="0x220" 1755hint.gusc.0.irq="5" 1756hint.gusc.0.drq="1" 1757hint.gusc.0.flags="0x13" 1758 1759# 1760# Miscellaneous hardware: 1761# 1762# scd: Sony CD-ROM using proprietary (non-ATAPI) interface 1763# mcd: Mitsumi CD-ROM using proprietary (non-ATAPI) interface 1764# meteor: Matrox Meteor video capture board 1765# bktr: Brooktree bt848/848a/849a/878/879 video capture and TV Tuner board 1766# cy: Cyclades serial driver 1767# joy: joystick (including IO DATA PCJOY PC Card joystick) 1768# rc: RISCom/8 multiport card 1769# rp: Comtrol Rocketport(ISA/PCI) - single card 1770# si: Specialix SI/XIO 4-32 port terminal multiplexor 1771# nmdm: nullmodem terminal driver (see nmdm(4)) 1772 1773# Notes on the Comtrol Rocketport driver: 1774# 1775# The exact values used for rp0 depend on how many boards you have 1776# in the system. The manufacturer's sample configs are listed as: 1777# 1778# device rp # core driver support 1779# 1780# Comtrol Rocketport ISA single card 1781# hint.rp.0.at="isa" 1782# hint.rp.0.port="0x280" 1783# 1784# If instead you have two ISA cards, one installed at 0x100 and the 1785# second installed at 0x180, then you should add the following to 1786# your kernel probe hints: 1787# hint.rp.0.at="isa" 1788# hint.rp.0.port="0x100" 1789# hint.rp.1.at="isa" 1790# hint.rp.1.port="0x180" 1791# 1792# For 4 ISA cards, it might be something like this: 1793# hint.rp.0.at="isa" 1794# hint.rp.0.port="0x180" 1795# hint.rp.1.at="isa" 1796# hint.rp.1.port="0x100" 1797# hint.rp.2.at="isa" 1798# hint.rp.2.port="0x340" 1799# hint.rp.3.at="isa" 1800# hint.rp.3.port="0x240" 1801# 1802# For PCI cards, you need no hints. 1803 1804# Mitsumi CD-ROM 1805device mcd 1806hint.mcd.0.at="isa" 1807hint.mcd.0.port="0x300" 1808# for the Sony CDU31/33A CDROM 1809device scd 1810hint.scd.0.at="isa" 1811hint.scd.0.port="0x230" 1812device joy # PnP aware, hints for nonpnp only 1813hint.joy.0.at="isa" 1814hint.joy.0.port="0x201" 1815device rc 1816hint.rc.0.at="isa" 1817hint.rc.0.port="0x220" 1818hint.rc.0.irq="12" 1819device rp 1820hint.rp.0.at="isa" 1821hint.rp.0.port="0x280" 1822device si 1823options SI_DEBUG 1824hint.si.0.at="isa" 1825hint.si.0.maddr="0xd0000" 1826hint.si.0.irq="12" 1827device nmdm 1828 1829# 1830# The `meteor' device is a PCI video capture board. It can also have the 1831# following options: 1832# options METEOR_ALLOC_PAGES=xxx preallocate kernel pages for data entry 1833# figure (ROWS*COLUMN*BYTES_PER_PIXEL*FRAME+PAGE_SIZE-1)/PAGE_SIZE 1834# options METEOR_DEALLOC_PAGES remove all allocated pages on close(2) 1835# options METEOR_DEALLOC_ABOVE=xxx remove all allocated pages above the 1836# specified amount. If this value is below the allocated amount no action 1837# taken 1838# options METEOR_SYSTEM_DEFAULT={METEOR_PAL|METEOR_NTSC|METEOR_SECAM}, used 1839# for initialization of fps routine when a signal is not present. 1840# 1841# The 'bktr' device is a PCI video capture device using the Brooktree 1842# bt848/bt848a/bt849a/bt878/bt879 chipset. When used with a TV Tuner it forms a 1843# TV card, eg Miro PC/TV, Hauppauge WinCast/TV WinTV, VideoLogic Captivator, 1844# Intel Smart Video III, AverMedia, IMS Turbo, FlyVideo. 1845# 1846# options OVERRIDE_CARD=xxx 1847# options OVERRIDE_TUNER=xxx 1848# options OVERRIDE_MSP=1 1849# options OVERRIDE_DBX=1 1850# These options can be used to override the auto detection 1851# The current values for xxx are found in src/sys/dev/bktr/bktr_card.h 1852# Using sysctl(8) run-time overrides on a per-card basis can be made 1853# 1854# options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_PAL 1855# or 1856# options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_NTSC 1857# Specifes the default video capture mode. 1858# This is required for Dual Crystal (28&35Mhz) boards where PAL is used 1859# to prevent hangs during initialisation. eg VideoLogic Captivator PCI. 1860# 1861# options BKTR_USE_PLL 1862# PAL or SECAM users who have a 28Mhz crystal (and no 35Mhz crystal) 1863# must enable PLL mode with this option. eg some new Bt878 cards. 1864# 1865# options BKTR_GPIO_ACCESS 1866# This enable IOCTLs which give user level access to the GPIO port. 1867# 1868# options BKTR_NO_MSP_RESET 1869# Prevents the MSP34xx reset. Good if you initialise the MSP in another OS first 1870# 1871# options BKTR_430_FX_MODE 1872# Switch Bt878/879 cards into Intel 430FX chipset compatibility mode. 1873# 1874# options BKTR_SIS_VIA_MODE 1875# Switch Bt878/879 cards into SIS/VIA chipset compatibility mode which is 1876# needed for some old SiS and VIA chipset motherboards. 1877# This also allows Bt878/879 chips to work on old OPTi (<1997) chipset 1878# motherboards and motherboards with bad or incomplete PCI 2.1 support. 1879# As a rough guess, old = before 1998 1880# 1881 1882device meteor 1 1883 1884# 1885# options BKTR_USE_FREEBSD_SMBUS 1886# Compile with FreeBSD SMBus implementation 1887# 1888# Brooktree driver has been ported to the new I2C framework. Thus, 1889# you'll need to have the following 3 lines in the kernel config. 1890# device smbus 1891# device iicbus 1892# device iicbb 1893# device iicsmb 1894# The iic and smb devices are only needed if you want to control other 1895# I2C slaves connected to the external connector of some cards. 1896# 1897device bktr 1898 1899# 1900# PC Card/PCMCIA 1901# (OLDCARD) 1902# 1903# card: pccard slots 1904# pcic: isa/pccard bridge 1905#device pcic 1906#hint.pcic.0.at="isa" 1907#hint.pcic.1.at="isa" 1908#device card 1 1909 1910# 1911# PC Card/PCMCIA and Cardbus 1912# (NEWCARD) 1913# 1914# Note that NEWCARD and OLDCARD are incompatible. Do not use both at the same 1915# time. 1916# 1917# pccbb: pci/cardbus bridge implementing YENTA interface 1918# pccard: pccard slots 1919# cardbus: cardbus slots 1920device cbb 1921device pccard 1922device cardbus 1923#device pcic ISA attachment currently busted 1924#hint.pcic.0.at="isa" 1925#hint.pcic.1.at="isa" 1926 1927# 1928# SMB bus 1929# 1930# System Management Bus support is provided by the 'smbus' device. 1931# Access to the SMBus device is via the 'smb' device (/dev/smb*), 1932# which is a child of the 'smbus' device. 1933# 1934# Supported devices: 1935# smb standard io through /dev/smb* 1936# 1937# Supported SMB interfaces: 1938# iicsmb I2C to SMB bridge with any iicbus interface 1939# bktr brooktree848 I2C hardware interface 1940# intpm Intel PIIX4 (82371AB, 82443MX) Power Management Unit 1941# alpm Acer Aladdin-IV/V/Pro2 Power Management Unit 1942# ichsmb Intel ICH SMBus controller chips (82801AA, 82801AB, 82801BA) 1943# viapm VIA VT82C586B/596B/686A and VT8233 Power Management Unit 1944# amdpm AMD 756 Power Management Unit 1945# nfpm NVIDIA nForce Power Management Unit 1946# 1947device smbus # Bus support, required for smb below. 1948 1949device intpm 1950device alpm 1951device ichsmb 1952device viapm 1953device amdpm 1954device nfpm 1955 1956device smb 1957 1958# 1959# I2C Bus 1960# 1961# Philips i2c bus support is provided by the `iicbus' device. 1962# 1963# Supported devices: 1964# ic i2c network interface 1965# iic i2c standard io 1966# iicsmb i2c to smb bridge. Allow i2c i/o with smb commands. 1967# 1968# Supported interfaces: 1969# bktr brooktree848 I2C software interface 1970# 1971# Other: 1972# iicbb generic I2C bit-banging code (needed by lpbb, bktr) 1973# 1974device iicbus # Bus support, required for ic/iic/iicsmb below. 1975device iicbb 1976 1977device ic 1978device iic 1979device iicsmb # smb over i2c bridge 1980 1981# Parallel-Port Bus 1982# 1983# Parallel port bus support is provided by the `ppbus' device. 1984# Multiple devices may be attached to the parallel port, devices 1985# are automatically probed and attached when found. 1986# 1987# Supported devices: 1988# vpo Iomega Zip Drive 1989# Requires SCSI disk support ('scbus' and 'da'), best 1990# performance is achieved with ports in EPP 1.9 mode. 1991# lpt Parallel Printer 1992# plip Parallel network interface 1993# ppi General-purpose I/O ("Geek Port") + IEEE1284 I/O 1994# pps Pulse per second Timing Interface 1995# lpbb Philips official parallel port I2C bit-banging interface 1996# 1997# Supported interfaces: 1998# ppc ISA-bus parallel port interfaces. 1999# 2000 2001options PPC_PROBE_CHIPSET # Enable chipset specific detection 2002 # (see flags in ppc(4)) 2003options DEBUG_1284 # IEEE1284 signaling protocol debug 2004options PERIPH_1284 # Makes your computer act as an IEEE1284 2005 # compliant peripheral 2006options DONTPROBE_1284 # Avoid boot detection of PnP parallel devices 2007options VP0_DEBUG # ZIP/ZIP+ debug 2008options LPT_DEBUG # Printer driver debug 2009options PPC_DEBUG # Parallel chipset level debug 2010options PLIP_DEBUG # Parallel network IP interface debug 2011options PCFCLOCK_VERBOSE # Verbose pcfclock driver 2012options PCFCLOCK_MAX_RETRIES=5 # Maximum read tries (default 10) 2013 2014device ppc 2015hint.ppc.0.at="isa" 2016hint.ppc.0.irq="7" 2017device ppbus 2018device vpo 2019device lpt 2020device plip 2021device ppi 2022device pps 2023device lpbb 2024device pcfclock 2025 2026# Kernel BOOTP support 2027 2028options BOOTP # Use BOOTP to obtain IP address/hostname 2029 # Requires NFSCLIENT and NFS_ROOT 2030options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info 2031options BOOTP_NFSV3 # Use NFS v3 to NFS mount root 2032options BOOTP_COMPAT # Workaround for broken bootp daemons. 2033options BOOTP_WIRED_TO=fxp0 # Use interface fxp0 for BOOTP 2034 2035# 2036# Add tie-ins for a hardware watchdog. This only enable the hooks; 2037# the user must still supply the actual driver. 2038# 2039options HW_WDOG 2040 2041# 2042# Disable swapping. This option removes all code which actually performs 2043# swapping, so it's not possible to turn it back on at run-time. 2044# 2045# This is sometimes usable for systems which don't have any swap space 2046# (see also sysctls "vm.defer_swapspace_pageouts" and 2047# "vm.disable_swapspace_pageouts") 2048# 2049#options NO_SWAPPING 2050 2051# Set the number of sf_bufs to allocate. sf_bufs are virtual buffers 2052# for sendfile(2) that are used to map file VM pages, and normally 2053# default to a quantity that is roughly 16*MAXUSERS+512. You would 2054# typically want about 4 of these for each simultaneous file send. 2055# 2056options NSFBUFS=1024 2057 2058# 2059# Enable extra debugging code for locks. This stores the filename and 2060# line of whatever acquired the lock in the lock itself, and change a 2061# number of function calls to pass around the relevant data. This is 2062# not at all useful unless you are debugging lock code. Also note 2063# that it is likely to break e.g. fstat(1) unless you recompile your 2064# userland with -DDEBUG_LOCKS as well. 2065# 2066options DEBUG_LOCKS 2067 2068 2069##################################################################### 2070# USB support 2071# UHCI controller 2072device uhci 2073# OHCI controller 2074device ohci 2075# General USB code (mandatory for USB) 2076device usb 2077# 2078# USB Double Bulk Pipe devices 2079device udbp 2080# Generic USB device driver 2081device ugen 2082# Human Interface Device (anything with buttons and dials) 2083device uhid 2084# USB keyboard 2085device ukbd 2086# USB printer 2087device ulpt 2088# USB Iomega Zip 100 Drive (Requires scbus and da) 2089device umass 2090# USB modem support 2091device umodem 2092# USB mouse 2093device ums 2094# Diamond Rio 500 Mp3 player 2095device urio 2096# USB scanners 2097device uscanner 2098# USB serial support 2099device ucom 2100# USB support for serial adapters based on the FT8U100AX and FT8U232AM 2101device uftdi 2102# USB support for Prolific PL-2303 serial adapters 2103device uplcom 2104# USB support for Belkin F5U103 and compatible serial adapters 2105device ubsa 2106# USB serial support for DDI pocket's PHS 2107device uvscom 2108# USB Visor and Palm devices 2109device uvisor 2110 2111# USB Fm Radio 2112device ufm 2113# 2114# ADMtek USB ethernet. Supports the LinkSys USB100TX, 2115# the Billionton USB100, the Melco LU-ATX, the D-Link DSB-650TX 2116# and the SMC 2202USB. Also works with the ADMtek AN986 Pegasus 2117# eval board. 2118device aue 2119# 2120# CATC USB-EL1201A USB ethernet. Supports the CATC Netmate 2121# and Netmate II, and the Belkin F5U111. 2122device cue 2123# 2124# Kawasaki LSI ethernet. Supports the LinkSys USB10T, 2125# Entrega USB-NET-E45, Peracom Ethernet Adapter, the 2126# 3Com 3c19250, the ADS Technologies USB-10BT, the ATen UC10T, 2127# the Netgear EA101, the D-Link DSB-650, the SMC 2102USB 2128# and 2104USB, and the Corega USB-T. 2129device kue 2130 2131# debugging options for the USB subsystem 2132# 2133options USB_DEBUG 2134 2135# options for ukbd: 2136options UKBD_DFLT_KEYMAP # specify the built-in keymap 2137makeoptions UKBD_DFLT_KEYMAP=it.iso 2138 2139# options for uvscom: 2140options UVSCOM_DEFAULT_OPKTSIZE=8 # default output packet size 2141 2142##################################################################### 2143# Firewire support 2144 2145device firewire # Firewire bus code 2146device sbp # SCSI over Firewire (Requires scbus and da) 2147device fwe # Ethernet over Firewire (non-standard!) 2148 2149##################################################################### 2150# crypto subsystem 2151# 2152# This is a port of the openbsd crypto framework. Include this when 2153# configuring FAST_IPSEC and when you have a h/w crypto device to accelerate 2154# user applications that link to openssl. 2155# 2156# Drivers are ports from openbsd with some simple enhancements that have 2157# been fed back to openbsd. 2158 2159device crypto # core crypto support 2160device cryptodev # /dev/crypto for access to h/w 2161 2162device rndtest # FIPS 140-2 entropy tester 2163 2164device hifn # Hifn 7951, 7781, etc. 2165options HIFN_DEBUG # enable debugging support: hw.hifn.debug 2166options HIFN_RNDTEST # enable rndtest support 2167 2168device ubsec # Broadcom 5501, 5601, 58xx 2169options UBSEC_DEBUG # enable debugging support: hw.ubsec.debug 2170options UBSEC_RNDTEST # enable rndtest support 2171 2172##################################################################### 2173 2174 2175# 2176# Embedded system options: 2177# 2178# An embedded system might want to run something other than init. 2179options INIT_PATH=/sbin/init:/stand/sysinstall 2180 2181# Debug options 2182options BUS_DEBUG # enable newbus debugging 2183options DEBUG_VFS_LOCKS # enable vfs lock debugging 2184 2185##################################################################### 2186# SYSV IPC KERNEL PARAMETERS 2187# 2188# Maximum number of entries in a semaphore map. 2189options SEMMAP=31 2190 2191# Maximum number of System V semaphores that can be used on the system at 2192# one time. 2193options SEMMNI=11 2194 2195# Total number of semaphores system wide 2196options SEMMNS=61 2197 2198# Total number of undo structures in system 2199options SEMMNU=31 2200 2201# Maximum number of System V semaphores that can be used by a single process 2202# at one time. 2203options SEMMSL=61 2204 2205# Maximum number of operations that can be outstanding on a single System V 2206# semaphore at one time. 2207options SEMOPM=101 2208 2209# Maximum number of undo operations that can be outstanding on a single 2210# System V semaphore at one time. 2211options SEMUME=11 2212 2213# Maximum number of shared memory pages system wide. 2214options SHMALL=1025 2215 2216# Maximum size, in bytes, of a single System V shared memory region. 2217options SHMMAX=(SHMMAXPGS*PAGE_SIZE+1) 2218options SHMMAXPGS=1025 2219 2220# Minimum size, in bytes, of a single System V shared memory region. 2221options SHMMIN=2 2222 2223# Maximum number of shared memory regions that can be used on the system 2224# at one time. 2225options SHMMNI=33 2226 2227# Maximum number of System V shared memory regions that can be attached to 2228# a single process at one time. 2229options SHMSEG=9 2230 2231# Set the amount of time (in seconds) the system will wait before 2232# rebooting automatically when a kernel panic occurs. If set to (-1), 2233# the system will wait indefinitely until a key is pressed on the 2234# console. 2235options PANIC_REBOOT_WAIT_TIME=16 2236 2237# Attempt to bypass the buffer cache and put data directly into the 2238# userland buffer for read operation when O_DIRECT flag is set on the 2239# file. Both offset and length of the read operation must be 2240# multiples of the physical media sector size. 2241# 2242#options DIRECTIO 2243 2244# Specify a lower limit for the number of swap I/O buffers. They are 2245# (among other things) used when bypassing the buffer cache due to 2246# DIRECTIO kernel option enabled and O_DIRECT flag set on file. 2247# 2248#options NSWBUF_MIN=120 2249 2250##################################################################### 2251 2252# More undocumented options for linting. 2253# Note that documenting these are not considered an affront. 2254 2255options CAM_DEBUG_DELAY 2256 2257# VFS cluster debugging. 2258options CLUSTERDEBUG 2259 2260options DEBUG 2261 2262# Kernel filelock debugging. 2263options LOCKF_DEBUG 2264 2265# System V compatible message queues 2266# Please note that the values provided here are used to test kernel 2267# building. The defaults in the sources provide almost the same numbers. 2268# MSGSSZ must be a power of 2 between 8 and 1024. 2269options MSGMNB=2049 # Max number of chars in queue 2270options MSGMNI=41 # Max number of message queue identifiers 2271options MSGSEG=2049 # Max number of message segments 2272options MSGSSZ=16 # Size of a message segment 2273options MSGTQL=41 # Max number of messages in system 2274 2275options NBUF=512 # Number of buffer headers 2276 2277options NMBCLUSTERS=1024 # Number of mbuf clusters 2278 2279options SCSI_NCR_DEBUG 2280options SCSI_NCR_MAX_SYNC=10000 2281options SCSI_NCR_MAX_WIDE=1 2282options SCSI_NCR_MYADDR=7 2283 2284options SC_DEBUG_LEVEL=5 # Syscons debug level 2285options SC_RENDER_DEBUG # syscons rendering debugging 2286 2287options SHOW_BUSYBUFS # List buffers that prevent root unmount 2288options SLIP_IFF_OPTS 2289options VFS_BIO_DEBUG # VFS buffer I/O debugging 2290 2291options KSTACK_MAX_PAGES=32 # Maximum pages to give the kernel stack 2292 2293# Yet more undocumented options for linting. 2294options AAC_DEBUG 2295options ACD_DEBUG 2296options ACPI_MAX_THREADS=1 2297#!options ACPI_NO_SEMAPHORES 2298# Broken: 2299##options ASR_MEASURE_PERFORMANCE 2300options AST_DEBUG 2301options ATAPI_DEBUG 2302options ATA_DEBUG 2303# BKTR_ALLOC_PAGES has no effect except to cause warnings, and 2304# BROOKTREE_ALLOC_PAGES hasn't actually been superseded by it, since the 2305# driver still mostly spells this option BROOKTREE_ALLOC_PAGES. 2306##options BKTR_ALLOC_PAGES=(217*4+1) 2307options BROOKTREE_ALLOC_PAGES=(217*4+1) 2308options MAXFILES=999 2309# METEOR_TEST_VIDEO has no effect since meteor is broken. 2310options METEOR_TEST_VIDEO 2311options NDEVFSINO=1025 2312options NDEVFSOVERFLOW=32769 2313 2314# Yet more undocumented options for linting. 2315options VGA_DEBUG 2316