Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.41
      1 #	$NetBSD: GENERIC,v 1.41 2007/08/21 02:48:15 kiyohara Exp $
      2 #
      3 # GENERIC machine description file
      4 #
      5 # This machine description file is used to generate the default NetBSD
      6 # kernel.  The generic kernel does not include all options, subsystems
      7 # and device drivers, but should be useful for most applications.
      8 #
      9 # The machine description file can be customised for your specific
     10 # machine to reduce the kernel size and improve its performance.
     11 #
     12 # For further information on compiling NetBSD kernels, see the config(8)
     13 # man page.
     14 #
     15 # For further information on hardware support for this architecture, see
     16 # the intro(4) man page.  For further information about kernel options
     17 # for this architecture, see the options(4) man page.  For an explanation
     18 # of each device driver in this file see the section 4 man page for the
     19 # device.
     20 
     21 include	"arch/iyonix/conf/std.iyonix"
     22 
     23 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24 
     25 #ident 		"GENERIC-$Revision: 1.41 $"
     26 
     27 maxusers	32		# estimated number of users
     28 
     29 options		MSGBUFSIZE=65536
     30 
     31 # CPU options
     32 
     33 # For XScale systems
     34 options 	CPU_XSCALE_80321	# Support the XScale core
     35 makeoptions	CPUFLAGS="-mcpu=xscale"
     36 
     37 # Architecture options
     38 options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
     39 #options 	HZ=512
     40 
     41 # Standard system options
     42 
     43 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     44 #options 	NTP		# NTP phase/frequency locked loop
     45 #options 	NO_TSC_TIME	# Don't use TSC microtime, even if available.
     46 				# Improves time behavior under VMware.
     47 
     48 #options 	KTRACE		# system call tracing via ktrace(1)
     49 #options 	SYSTRACE	# system call vetting via systrace(1)
     50 
     51 
     52 #options 	SYSVMSG		# System V-like message queues
     53 #options 	SYSVSEM		# System V-like semaphores
     54 #options 	SEMMNI=10	# number of semaphore identifiers
     55 #options 	SEMMNS=60	# number of semaphores in system
     56 #options 	SEMUME=10	# max number of undo entries per process
     57 #options 	SEMMNU=30	# number of undo structures in system
     58 #options 	SYSVSHM		# System V-like memory sharing
     59 #options 	SHMMAXPGS=2048	# 2048 pages is the default
     60 #options 	P1003_1B_SEMAPHORE	# p1003.1b semaphore support
     61 
     62 # Device options
     63 
     64 # Console options.  The default console is speed is 115200 baud.
     65 #options 	CONSPEED=9600		# Console speed
     66 
     67 # Miscellaneous kernel options
     68 options 	KTRACE		# system call tracing, a la ktrace(1)
     69 options 	IRQSTATS	# manage IRQ statistics
     70 #options 	LKM		# loadable kernel modules
     71 #options 	KMEMSTATS	# kernel memory statistics
     72 #options 	SCSIVERBOSE	# Verbose SCSI errors
     73 options 	PCIVERBOSE	# Verbose PCI descriptions
     74 options 	MIIVERBOSE	# Verbose MII autoconfuration messages
     75 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
     76 
     77 options 	USERCONF	# userconf(4) support
     78 #options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     79 #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     80 
     81 # Development and Debugging options
     82 
     83 # Enable experimental buffer queue strategy for better responsiveness under
     84 # high disk I/O load. Likely stable but not yet the default.
     85 #options 	BUFQ_READPRIO
     86 #options 	BUFQ_PRIOCSCAN
     87 
     88 # Diagnostic/debugging support options
     89 #options 	DIAGNOSTIC	# expensive kernel consistency checks
     90 #options 	DEBUG		# expensive debugging checks/support
     91 #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     92 options 	DDB		# in-kernel debugger
     93 #options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
     94 options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     95 #options 	DDB_KEYCODE=0x40
     96 #options 	KGDB		# remote debugger
     97 #options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
     98 makeoptions	DEBUG="-g"	# compile full symbol table
     99 options 	SYMTAB_SPACE=350000
    100 options 	PERFCTRS	# performance counters
    101 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    102 #options 	IPKDB		# remote kernel debugging
    103 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    104 
    105 #options 	PMAP_INCLUDE_PTE_SYNC
    106 #options 	LOCKDEBUG
    107 
    108 
    109 # Compatibility options
    110 #options 	COMPAT_09	# NetBSD 0.9
    111 #options 	COMPAT_10	# NetBSD 1.0
    112 #options 	COMPAT_11	# NetBSD 1.1
    113 #options 	COMPAT_12	# NetBSD 1.2
    114 #options 	COMPAT_13	# NetBSD 1.3
    115 #options 	COMPAT_14	# NetBSD 1.4
    116 #options 	COMPAT_15	# NetBSD 1.5
    117 #options 	COMPAT_16	# NetBSD 1.6
    118 #options 	COMPAT_20	# NetBSD 2.0
    119 #options 	COMPAT_30	# NetBSD 3.0
    120 #options 	COMPAT_43	# 4.3BSD
    121 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    122 options 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    123 
    124 # File systems
    125 file-system 	FFS		# UFS
    126 #file-system 	EXT2FS		# second extended file system (linux)
    127 #file-system 	LFS		# log-structured file system
    128 #file-system 	MFS		# memory file system
    129 file-system 	NFS		# Network File System client
    130 #file-system 	NTFS		# Windows/NT file system (experimental)
    131 file-system 	CD9660		# ISO 9660 + Rock Ridge file system
    132 file-system 	MSDOSFS		# MS-DOS file system
    133 #file-system 	FDESC		# /dev/fd
    134 #file-system 	KERNFS		# /kern
    135 #file-system 	NULLFS		# loopback file system
    136 #file-system 	OVERLAY		# overlay file system
    137 #file-system 	PORTAL		# portal filesystem (still experimental)
    138 #file-system 	PROCFS		# /proc
    139 #file-system 	UMAPFS		# NULLFS + uid and gid remapping
    140 #file-system 	UNION		# union file system
    141 #file-system	CODA		# Coda File System; also needs vcoda (below)
    142 #file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
    143 #file-system	PTYFS		# /dev/ptm support
    144 #file-system	TMPFS		# Efficient memory file-system
    145 #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
    146 #file-system	HFS		# experimental - Apple HFS+ (read-only)
    147 file-system     FILECORE        # Acorn filecore file system
    148 
    149 # File system options
    150 #options 	QUOTA		# UFS quotas
    151 #options 	FFS_EI		# FFS Endian Independent support
    152 #options 	SOFTDEP		# FFS soft updates support.
    153 # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
    154 # It is not recommended for general use.
    155 #options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    156 #options 	NFSSERVER	# Network File System server
    157 options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    158 #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    159 				# immutable) behave as system flags.
    160 
    161 # Networking options
    162 #options 	GATEWAY		# packet forwarding
    163 options 	INET		# IP + ICMP + TCP + UDP
    164 #options 	INET6		# IPV6
    165 #options 	IPSEC		# IP security
    166 #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    167 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
    168 #options 	IPSEC_DEBUG	# debug for IP security
    169 #options 	MROUTING	# IP multicast routing
    170 #options 	PIM		# Protocol Independent Multicast
    171 #options 	ISO,TPIP	# OSI
    172 #options 	EON		# OSI tunneling over IP
    173 #options 	NETATALK	# AppleTalk networking protocols
    174 #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    175 #options 	PPP_DEFLATE	# Deflate compression support for PPP
    176 #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    177 #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
    178 #options 	IPFILTER_LOG	# ipmon(8) log support
    179 #options 	IPFILTER_LOOKUP	# ippool(8) support
    180 #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    181 #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    182 
    183 #options 	ALTQ		# Manipulate network interfaces' output queues
    184 #options 	ALTQ_BLUE	# Stochastic Fair Blue
    185 #options 	ALTQ_CBQ	# Class-Based Queueing
    186 #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    187 #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    188 #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    189 #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    190 #options 	ALTQ_LOCALQ	# Local queueing discipline
    191 #options 	ALTQ_PRIQ	# Priority Queueing
    192 #options 	ALTQ_RED	# Random Early Detection
    193 #options 	ALTQ_RIO	# RED with IN/OUT
    194 #options 	ALTQ_WFQ	# Weighted Fair Queueing
    195 
    196 
    197 options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    198 
    199 # Kernel root file system and dump configuration.
    200 config		netbsd	root on ? type ?
    201 #config		netbsd	root on sd0a type ffs
    202 #config		netbsd	root on ? type nfs
    203 
    204 #
    205 # Device configuration
    206 #
    207 
    208 mainbus0 at root
    209 
    210 cpu0 at mainbus?
    211 
    212 # i80321 I/O Processor peripheral support
    213 iopxs*          at mainbus?
    214 
    215 iopaau*         at iopxs?               # Application Accelerator Unit
    216 iopiic*         at iopxs?               # I2C Controller Unit(s) 
    217 iic0            at iopiic?
    218 iic1            at iopiic?
    219 iopwdog*        at iopxs?               # Watchdog timer
    220 pci0            at iopxs? bus ?         # PCI/PCI-X support
    221 
    222 # PCI bridges
    223 ppb*	at pci? dev ? function ?	# PCI-PCI bridges
    224 pci*	at ppb? bus ?
    225 # XXX 'puc's aren't really bridges, but there's no better place for them here
    226 #puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    227 
    228 # VGA
    229 #vga*            at pci? dev ? function ?
    230 
    231 # CardBus bridge support
    232 #cbb*		at pci? dev ? function ?
    233 #cardslot*	at cbb?
    234 
    235 # CardBus bus support
    236 #cardbus*	at cardslot?
    237 #pcmcia* 	at cardslot?
    238 
    239 # Serial Devices
    240 
    241 # PCI serial interfaces
    242 #com*	at puc? port ?			# 16x50s on "universal" comm boards
    243 #cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    244 #cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
    245 
    246 # PCMCIA serial interfaces
    247 #com*	at pcmcia? function ?		# Modems and serial cards
    248 
    249 #pcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
    250 #com*	at pcmcom? slave ?		# ...and the slave devices
    251 
    252 # CardBus serial interfaces
    253 #com*	at cardbus? function ?	# Modems and serial cards
    254 
    255 # I2O devices
    256 #iop*	at pci? dev ? function ?	# I/O processor
    257 #iopsp*	at iop? tid ?			# SCSI/FC-AL ports
    258 #ld*	at iop? tid ?			# block devices
    259 #dpti*	at iop? tid 0			# DPT/Adaptec control interface
    260 
    261 # SCSI Controllers and Devices
    262 
    263 # PCI SCSI controllers
    264 #adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    265 #adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
    266 #ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    267 #ahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
    268 #bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    269 #dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    270 #iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
    271 #isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    272 #mfi*	at pci? dev ? function ?	# LSI MegaRAID SAS
    273 #mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
    274 #mpt*	at pci? dev ? function ?	# LSI Fusion SCSI/FC
    275 #njs*	at pci? dev ? function ?	# Workbit NinjaSCSI-32
    276 #pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    277 #siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
    278 #esiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
    279 ##options 	SIOP_SYMLED		# drive the act. LED in software
    280 #trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
    281 
    282 # PCMCIA SCSI controllers
    283 #aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
    284 #esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
    285 #spc* 	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
    286 
    287 # CardBus SCSI cards
    288 #adv*	at cardbus? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    289 #ahc*	at cardbus? function ?	# Adaptec ADP-1480
    290 #njs*	at cardbus? function ?	# Workbit NinjaSCSI-32
    291 
    292 # SCSI bus support
    293 #scsibus* at scsi?
    294 
    295 # SCSI devices
    296 #sd*	at scsibus? target ? lun ?	# SCSI disk drives
    297 #st*	at scsibus? target ? lun ?	# SCSI tape drives
    298 #cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    299 #ch*	at scsibus? target ? lun ?	# SCSI autochangers
    300 #ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    301 #ss*	at scsibus? target ? lun ?	# SCSI scanners
    302 #uk*	at scsibus? target ? lun ?	# SCSI unknown
    303 
    304 
    305 # RAID controllers and devices
    306 #aac*	at pci? dev ? function ?	# Adaptec AAC family
    307 #amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
    308 #cac*	at pci? dev ? function ?	# Compaq PCI array controllers
    309 #ciss*	at pci? dev ? function ?	# HP Smart Array controllers
    310 #icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
    311 #mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
    312 #mlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
    313 #twa*	at pci? dev ? function ?	# 3ware Escalade 95xx RAID controllers
    314 #twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
    315 
    316 #ld*	at aac? unit ?			# logical disk devices
    317 #ld*	at amr? unit ?
    318 #ld*	at cac? unit ?
    319 #ld*	at icp? unit ?
    320 #ld*	at twa? unit ?
    321 #ld*	at twe? unit ?
    322 #ld*	at mlx? unit ?
    323 
    324 #icpsp*	at icp? unit ?			# SCSI pass-through
    325 
    326 # IDE and related devices
    327 # PCI IDE controllers - see pciide(4) for supported hardware.
    328 # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    329 # how to set up DMA modes for this chip. This may work, or may cause
    330 # a machine hang with some controllers.
    331 pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    332 acardide*	at pci? dev ? function ?	# Acard IDE controllers
    333 aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
    334 #ahcisata* 	at pci? dev ? function ?	# AHCI SATA controllers
    335 artsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
    336 cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
    337 cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
    338 #geodeide* 	at pci? dev ? function ?	# AMD Geode IDE controllers
    339 hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    340 #iteide* 	at pci? dev ? function ?	# IT Express IDE controllers
    341 #ixpide* 	at pci? dev ? function ?	# ATI IXP IDE controllers
    342 optiide* 	at pci? dev ? function ?	# Opti IDE controllers
    343 #piixide* 	at pci? dev ? function ?	# Intel IDE controllers
    344 pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
    345 pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
    346 rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
    347 satalink*	at pci? dev ? function ?	# SiI SATALink controllers
    348 siside* 	at pci? dev ? function ?	# SiS IDE controllers
    349 slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
    350 #svwsata* 	at pci? dev ? function ?	# ServerWorks SATA controllers
    351 stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
    352 viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    353 
    354 # PCMCIA IDE controllers
    355 #wdc*	at pcmcia? function ?
    356 
    357 # CardBus IDE controllers
    358 #njata*	at cardbus? function ? flags 0x01	# Workbit NinjaATA-32
    359 
    360 # ATA (IDE) bus support
    361 atabus* at ata?
    362 #options	ATADEBUG
    363 
    364 # IDE drives
    365 # Flags are used only with controllers that support DMA operations
    366 # and mode settings (e.g. some pciide controllers)
    367 # The lowest order four bits (rightmost digit) of the flags define the PIO
    368 # mode to use, the next set of four bits the DMA mode and the third set the
    369 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    370 # to use, and the last bit must be 1 for this setting to be used.
    371 # For DMA and UDMA, 0xf (1111) means 'disable'.
    372 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    373 # (0xc=1100, 0xa=1010, 0xf=1111)
    374 # 0x0000 means "use whatever the drive claims to support".
    375 wd*	at atabus? drive ? flags 0x0000
    376 
    377 # ATA RAID configuration support, as found on some Promise controllers.
    378 pseudo-device	ataraid
    379 ld*	at ataraid? vendtype ? unit ?
    380 
    381 # ATAPI bus support
    382 atapibus* at atapi?
    383 
    384 # ATAPI devices
    385 # flags have the same meaning as for IDE drives.
    386 # XXX No DMA on IDE devices for now
    387 cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
    388 sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    389 st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    390 uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    391 
    392 
    393 # Network Interfaces
    394 
    395 # PCI network interfaces
    396 #an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    397 #ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
    398 #atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
    399 #bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
    400 #bge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    401 #bnx* 	at pci? dev ? function ?	# Broadcom NetXtremeII gigabit Ethernet
    402 #dge*	at pci? dev ? function ?	# Intel 82597 10GbE LR
    403 #en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    404 #ep*	at pci? dev ? function ?	# 3Com 3c59x
    405 #epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    406 #esh*	at pci? dev ? function ?	# Essential HIPPI card
    407 #ex*	at pci? dev ? function ?	# 3Com 90x[BC]
    408 #fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    409 #fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    410 #gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    411 #hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
    412 #ipw*	at pci? dev ? function ?	# Intel PRO/Wireless 2100
    413 #iwi*	at pci? dev ? function ?	# Intel PRO/Wireless 2200BG
    414 #le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    415 #lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    416 #mskc*	at pci? dev ? function ?	# Marvell Yukon 2 Gigabit Ethernet
    417 #msk*	at mskc?			# Marvell Yukon 2 Gigabit Ethernet
    418 #mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    419 ##ndis* 	at pci? dev ? function ?	# Experimental - NDIS Network Driver
    420 #ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    421 #nfe*	at pci?	dev ? function ?	# NVIDIA nForce Ethernet
    422 #ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    423 #pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    424 #ral*	at pci? dev ? function ?	# Ralink Technology RT25x0 802.11a/b/g
    425 #re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
    426 rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    427 #rtw*	at pci? dev ? function ?	# Realtek 8180L (802.11)
    428 #sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    429 #sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    430 #skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
    431 #sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
    432 #ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    433 #stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    434 #ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    435 #tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    436 #tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    437 #txp*	at pci? dev ? function ?	# 3com 3cr990
    438 #vge*	at pci? dev ? function ?	# VIATech VT612X Gigabit Ethernet
    439 #vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    440 #wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    441 wm*	at pci? dev ? function ?	# Intel 8254x gigabit
    442 #wpi*	at pci? dev ? function ?	# Intel PRO/Wireless 3945ABG
    443 #xge*	at pci? dev ? function ?	# Neterion (S2io) Xframe-I 10GbE
    444 
    445 # PCMCIA network interfaces
    446 #an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
    447 #awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
    448 #cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
    449 #cs*	at pcmcia? function ?		# CS89xx Ethernet
    450 #ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
    451 #mbe*	at pcmcia? function ?		# MB8696x based Ethernet
    452 #ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
    453 #ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
    454 #sm*	at pcmcia? function ?		# Megahertz Ethernet
    455 ## tr at pcmcia has problems with Cardbus bridges
    456 ##tr*	at pcmcia? function ?		# TROPIC based Token-Ring
    457 #wi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
    458 #xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
    459 #com*	at xirc?
    460 #xi*	at xirc?
    461 #mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
    462 #com*	at mhzc?
    463 #sm*	at mhzc?
    464 
    465 # CardBus network cards
    466 #ath*	at cardbus? function ?	# Atheros 5210/5211/5212 802.11
    467 #atw*	at cardbus? function ?	# ADMtek ADM8211 (802.11)
    468 #ex*	at cardbus? function ?	# 3Com 3C575TX
    469 #fxp*	at cardbus? function ?	# Intel i8255x
    470 #ral*	at cardbus? function ?	# Ralink Technology RT25x0 802.11a/b/g
    471 #rtk*	at cardbus? function ?	# Realtek 8129/8139
    472 #rtw*	at cardbus? function ?	# Realtek 8180L (802.11)
    473 #tlp*	at cardbus? function ?	# DECchip 21143
    474 
    475 # MII/PHY support
    476 acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
    477 amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    478 bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    479 brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    480 #ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
    481 dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    482 exphy*	at mii? phy ?			# 3Com internal PHYs
    483 gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    484 glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    485 gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    486 icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    487 igphy*	at mii? phy ?			# Intel IGP01E1000
    488 #ikphy*	at mii? phy ?			# Intel 82563 PHYs
    489 inphy*	at mii? phy ?			# Intel 82555 PHYs
    490 iophy*	at mii? phy ?			# Intel 82553 PHYs
    491 lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    492 makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    493 nsphy*	at mii? phy ?			# NS83840 PHYs
    494 nsphyter* at mii? phy ? 		# NS83843 PHYs
    495 pnaphy* at mii? phy ?			# generic HomePNA PHYs
    496 qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    497 #rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
    498 #rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
    499 sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    500 tlphy*	at mii? phy ?			# ThunderLAN PHYs
    501 tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    502 ukphy*	at mii? phy ?			# generic unknown PHYs
    503 urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    504 
    505 
    506 # USB Controller and Devices
    507 
    508 # PCI USB controllers
    509 #ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    510 ohci*	at pci?	dev ? function ?	# Open Host Controller
    511 uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
    512 
    513 # CardBus USB controllers
    514 #ehci*	at cardbus? function ?		# Enhanced Host Controller
    515 #ohci*	at cardbus? function ?		# Open Host Controller
    516 #uhci*	at cardbus? function ?		# Universal Host Controller (Intel)
    517 
    518 # ISA USB controllers
    519 #slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
    520 
    521 # PCMCIA USB controllers
    522 slhci*	at pcmcia? function ?		# ScanLogic SL811HS
    523 
    524 # USB bus support
    525 #usb*	at ehci?
    526 usb*	at ohci?
    527 usb*	at uhci?
    528 #usb*	at slhci?
    529 
    530 # USB Hubs
    531 uhub*	at usb?
    532 uhub*	at uhub? port ?
    533 
    534 # USB HID device
    535 uhidev*	at uhub? port ? configuration ? interface ?
    536 
    537 # USB Mice
    538 ums*	at uhidev? reportid ?
    539 wsmouse* at ums? mux 0
    540 
    541 # USB eGalax touch-panel
    542 #uep*	at uhub? port ?
    543 #wsmouse* at uep? mux 0
    544 
    545 # USB Keyboards
    546 ukbd*	at uhidev? reportid ?
    547 wskbd*	at ukbd? console ? mux 1
    548 
    549 # USB serial adapter
    550 ucycom*	at uhidev? reportid ?
    551 
    552 # USB Generic HID devices
    553 uhid*	at uhidev? reportid ?
    554 
    555 # USB Printer
    556 ulpt*	at uhub? port ? configuration ? interface ?
    557 
    558 # USB Modem
    559 umodem*	at uhub? port ? configuration ?
    560 ucom*	at umodem?
    561 
    562 # USB Mass Storage
    563 umass*	at uhub? port ? configuration ? interface ?
    564 wd*	at umass?
    565 
    566 # USB audio
    567 uaudio*	at uhub? port ? configuration ?
    568 
    569 # USB MIDI
    570 #umidi* at uhub? port ? configuration ?
    571 
    572 # USB IrDA
    573 # USB-IrDA bridge spec
    574 #uirda* at uhub? port ? configuration ? interface ?
    575 #irframe* at uirda?
    576 
    577 # SigmaTel STIr4200 USB/IrDA Bridge
    578 #ustir* at uhub? port ?
    579 #irframe* at ustir?
    580 
    581 # USB Ethernet adapters
    582 #aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    583 #axe*	at uhub? port ?		# ASIX AX88172 based adapters
    584 #cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
    585 #cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    586 #kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    587 #udav*	at uhub? port ?		# Davicom DM9601 based adapters
    588 #url*	at uhub? port ?		# Realtek RTL8150L based adapters
    589 
    590 # USB 802.11 adapters
    591 #atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
    592 #ral*	at uhub? port ?		# Ralink Technology RT25x0 802.11a/b/g
    593 #rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
    594 #zyd*	at uhub? port ?		# Zydas ZD1211
    595 
    596 # Prolific PL2301/PL2302 host-to-host adapter
    597 upl*	at uhub? port ?
    598 
    599 # Serial adapters
    600 ubsa*	at uhub? port ?		# Belkin serial adapter
    601 ucom*	at ubsa? portno ?
    602 
    603 uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    604 ucom*	at uftdi? portno ?
    605 
    606 uipaq*	at uhub? port ?		# iPAQ PDAs
    607 ucom*	at uipaq? portno ?
    608 
    609 umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    610 ucom*	at umct? portno ?
    611 
    612 uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    613 ucom*	at uplcom? portno ?
    614 
    615 uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
    616 ucom*	at uvscom? portno ?
    617 
    618 # Diamond Multimedia Rio 500
    619 #urio*	at uhub? port ?
    620 
    621 # USB Handspring Visor
    622 #uvisor*	at uhub? port ?
    623 #ucom*	at uvisor?
    624 
    625 # Kyocera AIR-EDGE PHONE
    626 #ukyopon* at uhub? port ?
    627 #ucom*	at ukyopon? portno ?
    628 
    629 # USB scanners
    630 #uscanner* at uhub? port ?
    631 
    632 # USB scanners that use SCSI emulation, e.g., HP5300
    633 #usscanner* at uhub? port ?
    634 
    635 # Topfield TF5000PVR range of DVB recorders
    636 #utoppy*	at uhub? port ?
    637 
    638 # Y@P firmware loader
    639 #uyap* at uhub? port ?
    640 
    641 # D-Link DSB-R100 USB radio
    642 #udsbr*	at uhub? port ?
    643 #radio*	at udsbr?
    644 
    645 # USB Generic driver
    646 #ugen*	at uhub? port ?
    647 # On ugen bulk endpoints, perform read-ahead and write-behind.
    648 #options UGEN_BULK_RA_WB
    649 
    650 
    651 # IrDA and Consumer Ir devices
    652 
    653 # Toshiba Oboe
    654 #oboe* 	at pci? dev ? function ?
    655 #irframe* at oboe?
    656 
    657 
    658 # PCI IEEE1394 controllers
    659 #fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
    660 
    661 # CardBus IEEE1394 controllers
    662 #fwohci*	at cardbus? function ?	# IEEE1394 Open Host Controller
    663 
    664 #ieee1394if* at fwohci?
    665 #fwip*	at ieee1394if?			# IP over IEEE1394
    666 #sbp*	at ieee1394if? euihi ? euilo ?	# SCSI over IEEE1394
    667 
    668 
    669 # Audio Devices
    670 
    671 # PCI audio devices
    672 #auacer* at pci? dev ? function ?	# ALi M5455 integrated AC'97 Audio
    673 auich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
    674 #auixp*	at pci? dev ? function ?	# ATI IXP AC'97 Audio
    675 autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
    676 auvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
    677 #azalia*	at pci? dev ? function ?	# High Definition Audio
    678 clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
    679 clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
    680 cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
    681 eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
    682 emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
    683 esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
    684 esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
    685 eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
    686 fms*	at pci? dev ? function ?	# Forte Media FM801
    687 neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
    688 sv*	at pci? dev ? function ?	# S3 SonicVibes
    689 yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
    690 
    691 # OPL[23] FM synthesizers
    692 opl*	at cmpci? flags 1
    693 opl*	at eso?
    694 opl*	at fms?
    695 opl*	at sv?
    696 opl*	at yds?
    697 
    698 # Audio support
    699 audio*	at audiobus?
    700 
    701 # MPU 401 UARTs
    702 mpu*	at cmpci?
    703 mpu*	at eso?
    704 mpu*	at fms?
    705 mpu*	at yds?
    706 
    707 # MIDI support
    708 midi*	at midibus?
    709 
    710 # PCI radio devices
    711 #gtp*	at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
    712 
    713 # Radio support
    714 #radio*	at gtp?
    715 
    716 # TV cards
    717 
    718 # Brooktree 848/849/878/879 based TV cards
    719 #bktr* at pci? dev ? function ?
    720 #radio* at bktr?
    721 
    722 
    723 # Bluetooth Controller and Device support
    724 
    725 # Bluetooth PCMCIA Controllers
    726 #bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
    727 #btbc* at pcmcia? function ?		# AnyCom BlueCard LSE041/039/139
    728 
    729 # Bluetooth USB Controllers
    730 #ubt* at uhub? port ?
    731 
    732 # Bluetooth Device Hub
    733 #bthub* at bt3c?
    734 #bthub* at btbc?
    735 #bthub* at btuart?
    736 #bthub* at ubt?
    737 
    738 # Bluetooth HID support
    739 #bthidev* at bthub?
    740 
    741 # Bluetooth Mouse
    742 #btms* at bthidev? reportid ?
    743 #wsmouse* at btms? mux 0
    744 
    745 # Bluetooth Keyboard
    746 #btkbd* at bthidev? reportid ?
    747 #wskbd* at btkbd? console ? mux 1
    748 
    749 # Bluetooth Audio support
    750 #btsco* at bthub?
    751 
    752 # Cryptographic Devices
    753 
    754 # PCI cryptographic devices
    755 #hifn*	at pci? dev ? function ?	# Hifn 7755/7811/795x
    756 #ubsec*	at pci? dev ? function ?	# Broadcom 5501/5601/580x/582x
    757 
    758 # On-board device support
    759 
    760 obio*	at mainbus?
    761 #com1	at obio? addr 0x900003e8 xint 1 # on-board UART
    762 com0	at obio? addr 0x900002f8 xint 1 # on-board UART
    763 #com*	at obio? addr 0x900003e8 xint 1 # on-board UART
    764 #com*	at obio? addr 0x900003f8 xint 1 # on-board UART
    765 
    766 # Pseudo-Devices
    767 
    768 #pseudo-device 	crypto		# /dev/crypto device
    769 #pseudo-device	swcrypto	# software crypto implementation
    770 
    771 # disk/mass storage pseudo-devices
    772 
    773 #pseudo-device	bio			# RAID control device driver
    774 #pseudo-device	ccd		4	# concatenated/striped disk devices
    775 #pseudo-device	cgd		4	# cryptographic disk devices
    776 #pseudo-device	raid		8	# RAIDframe disk driver
    777 #options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    778 # Options to enable various other RAIDframe RAID types.
    779 #options 	RF_INCLUDE_EVENODD=1
    780 #options 	RF_INCLUDE_RAID5_RS=1
    781 #options 	RF_INCLUDE_PARITYLOGGING=1
    782 #options 	RF_INCLUDE_CHAINDECLUSTER=1
    783 #options 	RF_INCLUDE_INTERDECLUSTER=1
    784 #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    785 #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    786 pseudo-device	fss		4	# file system snapshot device
    787 
    788 pseudo-device	md		1	# memory disk device (ramdisk)
    789 #pseudo-device	vnd			# disk-like interface to files
    790 #options 	VND_COMPRESSION		# compressed vnd(4)
    791 
    792 # network pseudo-devices
    793 pseudo-device	bpfilter		# Berkeley packet filter
    794 #pseudo-device	carp			# Common Address Redundancy Protocol
    795 #pseudo-device	ipfilter		# IP filter (firewall) and NAT
    796 pseudo-device	loop			# network loopback
    797 #pseudo-device	ppp			# Point-to-Point Protocol
    798 #pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    799 #pseudo-device	sl			# Serial Line IP
    800 #pseudo-device	strip			# Starmode Radio IP (Metricom)
    801 #pseudo-device	irframetty		# IrDA frame line discipline
    802 #pseudo-device	tap			# virtual Ethernet
    803 #pseudo-device	tun			# network tunneling over tty
    804 #pseudo-device	gre			# generic L3 over IP tunnel
    805 #pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    806 #pseudo-device	faith			# IPv[46] tcp relay translation i/f#
    807 #pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    808 #pseudo-device	vlan			# IEEE 802.1q encapsulation
    809 #pseudo-device	bridge			# simple inter-network bridging
    810 #options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    811 #pseudo-device	agr			# IEEE 802.3ad link aggregation
    812 #pseudo-device	pf			# PF packet filter
    813 #pseudo-device	pflog			# PF log if
    814 # srt is EXPERIMENTAL
    815 #pseudo-device	srt			# source-address-based routing
    816 
    817 # miscellaneous pseudo-devices
    818 pseudo-device	pty			# pseudo-terminals
    819 #pseudo-device	sequencer	1	# MIDI sequencer
    820 pseudo-device	rnd			# /dev/random and in-kernel generator
    821 #options 	RND_COM			# use "com" randomness as well (BROKEN)
    822 pseudo-device	clockctl		# user control of clock subsystem
    823 pseudo-device	ksyms			# /dev/ksyms
    824 #pseudo-device	lockstat		# lock profiling
    825 #pseudo-device	btuart			# Bluetooth HCI UART (H4)
    826 
    827 # a pseudo device needed for Coda	# also needs CODA (above)
    828 #pseudo-device	vcoda		4	# coda minicache <-> venus comm.
    829 
    830 # a pseudo device needed for SMBFS
    831 #pseudo-device	nsmb			# experimental - SMB requester
    832 
    833 # wscons pseudo-devices
    834 pseudo-device	wsmux			# mouse & keyboard multiplexor
    835 #pseudo-device	wsfont
    836 
    837 #options 	FILEASSOC		# fileassoc(9) - required for Veriexec
    838 
    839 # Veriexec
    840 #pseudo-device	veriexec
    841 #
    842 # Uncomment the fingerprint methods below that are desired. Note that
    843 # removing fingerprint methods will have almost no impact on the kernel
    844 # code size.
    845 #
    846 #options VERIFIED_EXEC_FP_RMD160
    847 #options VERIFIED_EXEC_FP_SHA256
    848 #options VERIFIED_EXEC_FP_SHA384
    849 #options VERIFIED_EXEC_FP_SHA512
    850 #options VERIFIED_EXEC_FP_SHA1
    851 #options VERIFIED_EXEC_FP_MD5
    852 
    853 #options PAX_MPROTECT=0			# PaX mprotect(2) restrictions
    854