xref: /freebsd/sys/amd64/conf/GENERIC (revision b3a397a8)
1ba1cabf4SPeter Wemm#
2afa88623SPeter Wemm# GENERIC -- Generic kernel configuration file for FreeBSD/amd64
3677060b4SPoul-Henning Kamp#
4650ea0d6SLuigi Rizzo# For more information on this file, please read the config(5) manual page,
5650ea0d6SLuigi Rizzo# and/or the handbook section on Kernel Configuration Files:
6d571daa0SJordan K. Hubbard#
7c0727dcbSMarc Fonvieille#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8d571daa0SJordan K. Hubbard#
9d571daa0SJordan K. Hubbard# The handbook is also available locally in /usr/share/doc/handbook
10d571daa0SJordan K. Hubbard# if you've installed the doc distribution, otherwise always see the
11214d1c55STim Vanderhoek# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12d571daa0SJordan K. Hubbard# latest information.
13677060b4SPoul-Henning Kamp#
148830dd31SWolfram Schneider# An exhaustive list of options and more detailed explanations of the
15dde04295SJohn Baldwin# device lines is also present in the ../../conf/NOTES and NOTES files.
16dde04295SJohn Baldwin# If you are in doubt as to the purpose or necessity of a line, check first
17dde04295SJohn Baldwin# in NOTES.
188830dd31SWolfram Schneider#
19c3aac50fSPeter Wemm# $FreeBSD$
20677060b4SPoul-Henning Kamp
21afa88623SPeter Wemmcpu		HAMMER
22677060b4SPoul-Henning Kampident		GENERIC
23677060b4SPoul-Henning Kamp
24b8aeddf1SPeter Wemmmakeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
25e9acaa9aSBrooks Davismakeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
26713c9391SDavid E. O'Brien
2795b55771SKen Smithoptions 	SCHED_ULE		# ULE scheduler
28444ba945SScott Longoptions 	PREEMPTION		# Enable kernel thread preemption
29677060b4SPoul-Henning Kampoptions 	INET			# InterNETworking
30ba1cabf4SPeter Wemmoptions 	INET6			# IPv6 communications protocols
314fabde56SChristian Bruefferoptions 	SCTP			# Stream Control Transmission Protocol
324525c93eSJordan K. Hubbardoptions 	FFS			# Berkeley Fast Filesystem
33bc265916SPeter Wemmoptions 	SOFTUPDATES		# Enable FFS soft updates support
34ba1cabf4SPeter Wemmoptions 	UFS_ACL			# Support for access control lists
35ba1cabf4SPeter Wemmoptions 	UFS_DIRHASH		# Improve performance on big directories
36fef2a259SPawel Jakub Dawidekoptions 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
3770c3f049SMark Murrayoptions 	MD_ROOT			# MD is a potential root device
384309e17aSRick Macklemoptions 	NFSCL			# New Network Filesystem Client
394309e17aSRick Macklemoptions 	NFSD			# New Network Filesystem Server
40fa9d9930SDoug Rabsonoptions 	NFSLOCKD		# Network Lock Manager
4188c037e2SRick Macklemoptions 	NFS_ROOT		# NFS usable as /, requires NFSCL
42ba1cabf4SPeter Wemmoptions 	MSDOSFS			# MSDOS Filesystem
43ba1cabf4SPeter Wemmoptions 	CD9660			# ISO 9660 Filesystem
44ba1cabf4SPeter Wemmoptions 	PROCFS			# Process filesystem (requires PSEUDOFS)
45ba1cabf4SPeter Wemmoptions 	PSEUDOFS		# Pseudo-filesystem framework
461d3aed33SMarcel Moolenaaroptions 	GEOM_PART_GPT		# GUID Partition Tables.
47983f9709SBrooks Davisoptions 	GEOM_LABEL		# Provides labelization
48841c0c7eSNathan Whitehornoptions 	COMPAT_FREEBSD32	# Compatible with i386 binaries
49713c9391SDavid E. O'Brienoptions 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
5022e59cecSKen Smithoptions 	COMPAT_FREEBSD5		# Compatible with FreeBSD5
516c9fdda7SRuslan Ermilovoptions 	COMPAT_FREEBSD6		# Compatible with FreeBSD6
525965c4b7SJohn Baldwinoptions 	COMPAT_FREEBSD7		# Compatible with FreeBSD7
5332672ba8SAndre Oppermannoptions 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
54ba1cabf4SPeter Wemmoptions 	KTRACE			# ktrace(1) support
553c90d1eaSRobert Watsonoptions 	STACK			# stack(9) support
56713c9391SDavid E. O'Brienoptions 	SYSVSHM			# SYSV-style shared memory
57713c9391SDavid E. O'Brienoptions 	SYSVMSG			# SYSV-style message queues
58713c9391SDavid E. O'Brienoptions 	SYSVSEM			# SYSV-style semaphores
59118ef86eSJohn Baldwinoptions 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
60c2919fd8SEd Schoutenoptions 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
61ba1cabf4SPeter Wemmoptions 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
62dbd47f15SXin LIoptions 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
6368ce278eSMaxim Sobolevoptions 	AUDIT			# Security event auditing
64009d2032SRobert Watsonoptions 	CAPABILITY_MODE		# Capsicum capability mode
65009d2032SRobert Watsonoptions 	CAPABILITIES		# Capsicum capabilities
66bd875f5fSRobert Watsonoptions 	MAC			# TrustedBSD MAC Framework
67e9acaa9aSBrooks Davisoptions 	KDTRACE_FRAME		# Ensure frames are compiled in
68e9acaa9aSBrooks Davisoptions 	KDTRACE_HOOKS		# Kernel DTrace hooks
69b3a397a8SBrooks Davisoptions 	DDB_CTF			# Kernel ELF linker loads CTF data
7087948dfdSWarner Loshoptions 	INCLUDE_CONFIG_FILE     # Include this file in kernel
71677060b4SPoul-Henning Kamp
726168545aSKen Smith# Debugging support.  Always need this:
738bcb1e9eSMarcel Moolenaaroptions 	KDB			# Enable kernel debugger support.
746168545aSKen Smith# For minimum debugger support (stable branch) use:
756168545aSKen Smith#options 	KDB_TRACE		# Print a stack trace for a panic.
766168545aSKen Smith# For full debugger support use this instead:
778bcb1e9eSMarcel Moolenaaroptions 	DDB			# Support DDB.
788bcb1e9eSMarcel Moolenaaroptions 	GDB			# Support remote GDB.
7988cbfa85SAttilio Raooptions 	DEADLKRES		# Enable the deadlock resolver
80686710f7SAttilio Raooptions 	INVARIANTS		# Enable calls of extra sanity checking
8147e87d5aSWarner Loshoptions 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
82686710f7SAttilio Raooptions 	WITNESS			# Enable checks to detect deadlocks and cycles
83686710f7SAttilio Raooptions 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
84686710f7SAttilio Raooptions 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
858fab58d8SPoul-Henning Kamp
86b8aeddf1SPeter Wemm# Make an SMP-capable kernel by default
87b8aeddf1SPeter Wemmoptions 	SMP			# Symmetric MultiProcessor Kernel
88118ef86eSJohn Baldwin
89a7b811a6SNate Lawson# CPU frequency control
90a7b811a6SNate Lawsondevice		cpufreq
91a7b811a6SNate Lawson
9254903605SPeter Wemm# Bus support.
93a4d60a7fSPeter Wemmdevice		acpi
94b618108fSPeter Wemmdevice		pci
95ba1cabf4SPeter Wemm
96ba1cabf4SPeter Wemm# Floppy drives
97ba1cabf4SPeter Wemmdevice		fdc
98677060b4SPoul-Henning Kamp
9997b53e36SAlexander Motin# ATA controllers
10097b53e36SAlexander Motindevice		ahci		# AHCI-compatible SATA controllers
10197b53e36SAlexander Motindevice		ata		# Legacy ATA/SATA controllers
10297b53e36SAlexander Motinoptions 	ATA_CAM		# Handle legacy controllers with CAM
1030d307e09SAlexander Motinoptions 	ATA_STATIC_ID	# Static device numbering
10497b53e36SAlexander Motindevice		mvs		# Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
10597b53e36SAlexander Motindevice		siis		# SiliconImage SiI3124/SiI3132/SiI3531 SATA
106ff680471SDavid E. O'Brien
107ba1cabf4SPeter Wemm# SCSI Controllers
108ba1cabf4SPeter Wemmdevice		ahc		# AHA2940 and onboard AIC7xxx devices
1093b28c0c6SXin LIoptions 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
1103b28c0c6SXin LI					# output.  Adds ~128k to driver.
111ba1cabf4SPeter Wemmdevice		ahd		# AHA39320/29320 and onboard AIC79xx devices
1123b28c0c6SXin LIoptions 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
1133b28c0c6SXin LI					# output.  Adds ~215k to driver.
114a9ab459bSMarius Strobldevice		esp		# AMD Am53C974 (Tekram DC-390(T))
1154439f8b4SScott Longdevice		hptiop		# Highpoint RocketRaid 3xxx series
116ba1cabf4SPeter Wemmdevice		isp		# Qlogic family
11746ec31b0SPeter Wemm#device		ispfw		# Firmware for QLogic HBAs- normally a module
118ba1cabf4SPeter Wemmdevice		mpt		# LSI-Logic MPT-Fusion
119d3c7b9a0SKenneth D. Merrydevice		mps		# LSI-Logic MPT-Fusion 2
120ba1cabf4SPeter Wemm#device		ncr		# NCR/Symbios Logic
121b8aeddf1SPeter Wemmdevice		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
122ba1cabf4SPeter Wemmdevice		trm		# Tekram DC395U/UW/F DC315U adapters
123ba1cabf4SPeter Wemm
124ba1cabf4SPeter Wemmdevice		adv		# Advansys SCSI adapters
125ba1cabf4SPeter Wemmdevice		adw		# Advansys wide SCSI adapters
126ba1cabf4SPeter Wemmdevice		aic		# Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
127ba1cabf4SPeter Wemmdevice		bt		# Buslogic/Mylex MultiMaster SCSI adapters
128f11c7f63SJim Harrisdevice		isci		# Intel C600 SAS controller
129ba1cabf4SPeter Wemm
13097b53e36SAlexander Motin# ATA/SCSI peripherals
13197b53e36SAlexander Motindevice		scbus		# SCSI bus (required for ATA/SCSI)
132ba1cabf4SPeter Wemmdevice		ch		# SCSI media changers
133ba1cabf4SPeter Wemmdevice		da		# Direct Access (disks)
134ba1cabf4SPeter Wemmdevice		sa		# Sequential Access (tape etc)
135ba1cabf4SPeter Wemmdevice		cd		# CD
13697b53e36SAlexander Motindevice		pass		# Passthrough device (direct ATA/SCSI access)
137130f4520SKenneth D. Merrydevice		ses		# Enclosure Services (SES and SAF-TE)
138130f4520SKenneth D. Merrydevice		ctl		# CAM Target Layer
139ba1cabf4SPeter Wemm
140a4d60a7fSPeter Wemm# RAID controllers interfaced to the SCSI subsystem
1414d598bc1SMaxim Sobolevdevice		amr		# AMI MegaRAID
142d0885ac3SScott Longdevice		arcmsr		# Areca SATA II RAID
1434d598bc1SMaxim Sobolev#XXX it is not 64-bit clean, -scottl
1444d598bc1SMaxim Sobolev#device		asr		# DPT SmartRAID V, VI and Adaptec SCSI RAID
145a4d60a7fSPeter Wemmdevice		ciss		# Compaq Smart RAID 5*
146a4d60a7fSPeter Wemmdevice		dpt		# DPT Smartcache III, IV - See NOTES for options
147dc8540a9SScott Longdevice		hptmv		# Highpoint RocketRAID 182x
148b063a422SScott Longdevice		hptrr		# Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
149a4d60a7fSPeter Wemmdevice		iir		# Intel Integrated RAID
150a4d60a7fSPeter Wemmdevice		ips		# IBM (Adaptec) ServeRAID
151a4d60a7fSPeter Wemmdevice		mly		# Mylex AcceleRAID/eXtremeRAID
1522a779082SPeter Wemmdevice		twa		# 3ware 9000 series PATA/SATA RAID
153a4d60a7fSPeter Wemm
154ba1cabf4SPeter Wemm# RAID controllers
155df6ece38SPeter Wemmdevice		aac		# Adaptec FSA RAID
156df6ece38SPeter Wemmdevice		aacp		# SCSI passthrough for aac (requires CAM)
157ba1cabf4SPeter Wemmdevice		ida		# Compaq Smart RAID
1587f631a41SScott Longdevice		mfi		# LSI MegaRAID SAS
159ba1cabf4SPeter Wemmdevice		mlx		# Mylex DAC960 family
160ba1cabf4SPeter Wemm#XXX pointer/int warnings
161ba1cabf4SPeter Wemm#device		pst		# Promise Supertrak SX6000
162ba1cabf4SPeter Wemmdevice		twe		# 3ware ATA RAID
163db1fda10SXin LIdevice		tws		# LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
164ba1cabf4SPeter Wemm
16523f7bd17SBrian Somers# atkbdc0 controls both the keyboard and the PS/2 mouse
16614426b9cSPeter Wemmdevice		atkbdc		# AT keyboard controller
16714426b9cSPeter Wemmdevice		atkbd		# AT keyboard
16814426b9cSPeter Wemmdevice		psm		# PS/2 mouse
1692ad872c5SKazutaka YOKOTA
170b6431012SMaksim Yevmenkindevice		kbdmux		# keyboard multiplexer
171b6431012SMaksim Yevmenkin
17214426b9cSPeter Wemmdevice		vga		# VGA video card driver
173e883bb1aSJung-uk Kimoptions 	VESA		# Add support for VESA BIOS Extensions (VBE)
1742ad872c5SKazutaka YOKOTA
17514426b9cSPeter Wemmdevice		splash		# Splash screen and screen saver support
1762ad872c5SKazutaka YOKOTA
177c19da41eSPeter Wemm# syscons is the default console driver, resembling an SCO console
17814426b9cSPeter Wemmdevice		sc
17900c885e1SJung-uk Kimoptions 	SC_PIXEL_MODE	# add support for the raster text mode
1805895e3c8SPeter Wemm
181354096a3SEric Anholtdevice		agp		# support several AGP chipsets
182354096a3SEric Anholt
183ba1cabf4SPeter Wemm# PCCARD (PCMCIA) support
1843a0bfa76SPeter Wemm# PCMCIA and cardbus bridge support
185ba1cabf4SPeter Wemmdevice		cbb		# cardbus (yenta) bridge
186ba1cabf4SPeter Wemmdevice		pccard		# PC Card (16-bit) bus
187ba1cabf4SPeter Wemmdevice		cardbus		# CardBus (32-bit) bus
188e597b497SNate Williams
1891f06573dSPeter Wemm# Serial (COM) ports
19038195fdcSMarcel Moolenaardevice		uart		# Generic UART driver
191677060b4SPoul-Henning Kamp
19204e83575SJoseph Koshy# Parallel port
193ba1cabf4SPeter Wemmdevice		ppc
194ba1cabf4SPeter Wemmdevice		ppbus		# Parallel port bus (required)
195ba1cabf4SPeter Wemmdevice		lpt		# Printer
196ba1cabf4SPeter Wemmdevice		plip		# TCP/IP over parallel
197ba1cabf4SPeter Wemmdevice		ppi		# Parallel port interface device
198ba1cabf4SPeter Wemm#device		vpo		# Requires scbus and da
199ba1cabf4SPeter Wemm
2003a3ba1b0SJohn Baldwindevice		puc		# Multi I/O cards and multi-channel UARTs
201ba1cabf4SPeter Wemm
202ba1cabf4SPeter Wemm# PCI Ethernet NICs.
203dd46ab31SDavid Christensendevice		bxe		# Broadcom BCM57710/BCM57711/BCM57711E 10Gb Ethernet
204ba1cabf4SPeter Wemmdevice		de		# DEC/Intel DC21x4x (``Tulip'')
205859ff640SJack F Vogeldevice		em		# Intel PRO/1000 Gigabit Ethernet Family
206859ff640SJack F Vogeldevice		igb		# Intel PRO/1000 PCIE Server Gigabit Family
207b698ab40SJack F Vogeldevice		ixgbe		# Intel PRO/10GbE PCIE Ethernet Family
2088df071afSMarius Strobldevice		le		# AMD Am7900 LANCE and Am79C9xx PCnet
2096e535f6eSRemko Lodderdevice		ti		# Alteon Networks Tigon I/II gigabit Ethernet
210ba1cabf4SPeter Wemmdevice		txp		# 3Com 3cR990 (``Typhoon'')
211ba1cabf4SPeter Wemmdevice		vx		# 3Com 3c590, 3c595 (``Vortex'')
212c6a5d1a6SPeter Wemm
213c6a5d1a6SPeter Wemm# PCI Ethernet NICs that use the common MII bus controller code.
214f94a808cSNik Clayton# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
215c9953c3bSPeter Wemmdevice		miibus		# MII bus support
216ba26d470SStanislav Sedovdevice		ae		# Attansic/Atheros L2 FastEthernet
21783a17b90SPyun YongHyeondevice		age		# Attansic/Atheros L1 Gigabit Ethernet
218d68875ebSPyun YongHyeondevice		alc		# Atheros AR8131/AR8132 Ethernet
2193c6e15bcSPyun YongHyeondevice		ale		# Atheros AR8121/AR8113/AR8114 Ethernet
220d8636a9aSPaul Saabdevice		bce		# Broadcom BCM5706/BCM5708 Gigabit Ethernet
2214e744b5eSDavid E. O'Briendevice		bfe		# Broadcom BCM440x 10/100 Ethernet
2223fc40c24SDavid E. O'Briendevice		bge		# Broadcom BCM570xx Gigabit Ethernet
223b78ebd64SMarius Strobldevice		cas		# Sun Cassini/Cassini+ and NS DP83065 Saturn
224ba1cabf4SPeter Wemmdevice		dc		# DEC/Intel 21143 and various workalikes
2254d52a575SXin LIdevice		et		# Agere ET1310 10/100/Gigabit Ethernet
2264664a8d5SJonathan Lemondevice		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
227b78ebd64SMarius Strobldevice		gem		# Sun GEM/Sun ERI/Apple GMAC
228b78ebd64SMarius Strobldevice		hme		# Sun HME (Happy Meal Ethernet)
22920f99a5bSPyun YongHyeondevice		jme		# JMicron JMC250 Gigabit/JMC260 Fast Ethernet
2306f4e528aSJun Kuriyamadevice		lge		# Level 1 LXT1001 gigabit Ethernet
2311f90cf98SPyun YongHyeondevice		msk		# Marvell/SysKonnect Yukon II Gigabit Ethernet
232b5f0caf9SPyun YongHyeondevice		nfe		# nVidia nForce MCP on-board Ethernet
2336f4e528aSJun Kuriyamadevice		nge		# NatSemi DP83820 gigabit Ethernet
234b5f0caf9SPyun YongHyeon#device		nve		# nVidia nForce MCP on-board Ethernet Networking
2358df071afSMarius Strobldevice		pcn		# AMD Am79C97x PCI 10/100 (precedence over 'le')
236a94100faSBill Pauldevice		re		# RealTek 8139C+/8169/8169S/8110S
237ba1cabf4SPeter Wemmdevice		rl		# RealTek 8129/8139
238ba1cabf4SPeter Wemmdevice		sf		# Adaptec AIC-6915 (``Starfire'')
239d193ed0bSPyun YongHyeondevice		sge		# Silicon Integrated Systems SiS190/191
240ba1cabf4SPeter Wemmdevice		sis		# Silicon Integrated Systems SiS 900/SiS 7016
2414e744b5eSDavid E. O'Briendevice		sk		# SysKonnect SK-984x & SK-982x gigabit Ethernet
242ba1cabf4SPeter Wemmdevice		ste		# Sundance ST201 (D-Link DFE-550TX)
243579aaaa4SMaxim Sobolevdevice		stge		# Sundance/Tamarack TC9021 gigabit Ethernet
244ba1cabf4SPeter Wemmdevice		tl		# Texas Instruments ThunderLAN
245ba1cabf4SPeter Wemmdevice		tx		# SMC EtherPower II (83c170 ``EPIC'')
2466f4e528aSJun Kuriyamadevice		vge		# VIA VT612x gigabit Ethernet
247ba1cabf4SPeter Wemmdevice		vr		# VIA Rhine, Rhine II
248ba1cabf4SPeter Wemmdevice		wb		# Winbond W89C840F
249c9953c3bSPeter Wemmdevice		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
25029c6a10bSGarrett Wollman
2513a0bfa76SPeter Wemm# ISA Ethernet NICs.  pccard NICs included.
252ba1cabf4SPeter Wemmdevice		cs		# Crystal Semiconductor CS89x0 NIC
253ba1cabf4SPeter Wemm# 'device ed' requires 'device miibus'
2545a297065SMaxime Henriondevice		ed		# NE[12]000, SMC Ultra, 3c503, DS8390 cards
255ba1cabf4SPeter Wemmdevice		ex		# Intel EtherExpress Pro/10 and Pro/10+
256ba1cabf4SPeter Wemmdevice		ep		# Etherlink III based cards
257ba1cabf4SPeter Wemmdevice		fe		# Fujitsu MB8696x based cards
2584e744b5eSDavid E. O'Briendevice		sn		# SMC's 9000 series of Ethernet chips
2594e744b5eSDavid E. O'Briendevice		xe		# Xircom pccard Ethernet
260ba1cabf4SPeter Wemm
261ba1cabf4SPeter Wemm# Wireless NIC cards
262ba1cabf4SPeter Wemmdevice		wlan		# 802.11 support
2636c26723bSSam Leffleroptions 	IEEE80211_DEBUG	# enable debug msgs
2646c26723bSSam Leffleroptions 	IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
265c16c6b65SRui Paulooptions 	IEEE80211_SUPPORT_MESH	# enable 802.11s draft support
26657d6ae06SSam Lefflerdevice		wlan_wep	# 802.11 WEP support
26757d6ae06SSam Lefflerdevice		wlan_ccmp	# 802.11 CCMP support
26857d6ae06SSam Lefflerdevice		wlan_tkip	# 802.11 TKIP support
26900465d5aSKevin Lodevice		wlan_amrr	# AMRR transmit rate control algorithm
270ba1cabf4SPeter Wemmdevice		an		# Aironet 4500/4800 802.11 wireless NICs.
271dba9c859SAdrian Chadddevice		ath		# Atheros NIC's
272dba9c859SAdrian Chadddevice		ath_pci		# Atheros pci/cardbus glue
27333644623SSam Lefflerdevice		ath_hal		# pci/cardbus chip support
27433644623SSam Leffleroptions 	AH_SUPPORT_AR5416	# enable AR5416 tx/rx descriptors
27557d6ae06SSam Lefflerdevice		ath_rate_sample	# SampleRate tx rate control for ath
276d1f25d5dSBernhard Schmidt#device		bwi		# Broadcom BCM430x/BCM431x wireless NICs.
277d1f25d5dSBernhard Schmidt#device		bwn		# Broadcom BCM43xx wireless NICs.
278d1f25d5dSBernhard Schmidtdevice		ipw		# Intel 2100 wireless NICs.
279d1f25d5dSBernhard Schmidtdevice		iwi		# Intel 2200BG/2225BG/2915ABG wireless NICs.
280d1f25d5dSBernhard Schmidtdevice		iwn		# Intel 4965/1000/5000/6000 wireless NICs.
281d1f25d5dSBernhard Schmidtdevice		malo		# Marvell Libertas wireless NICs.
282d1f25d5dSBernhard Schmidtdevice		mwl		# Marvell 88W8363 802.11n wireless NICs.
2830b090f41SDamien Bergaminidevice		ral		# Ralink Technology RT2500 wireless NICs.
284ba1cabf4SPeter Wemmdevice		wi		# WaveLAN/Intersil/Symbol 802.11 wireless NICs.
285d1f25d5dSBernhard Schmidtdevice		wpi		# Intel 3945ABG wireless NICs.
286ba1cabf4SPeter Wemm
287aa355a26SMaxim Konovalov# Pseudo devices.
288f71c01ccSPeter Wemmdevice		loop		# Network loopback
2898ab2f5ecSMark Murraydevice		random		# Entropy device
290f71c01ccSPeter Wemmdevice		ether		# Ethernet support
2919efde583SBrooks Davisdevice		vlan		# 802.1Q VLAN support
292ba1cabf4SPeter Wemmdevice		tun		# Packet tunnel.
293ba1cabf4SPeter Wemmdevice		md		# Memory "disks"
294ba1cabf4SPeter Wemmdevice		gif		# IPv6 and IPv4 tunneling
295ba1cabf4SPeter Wemmdevice		faith		# IPv6-to-IPv4 relaying (translation)
296086ba9f7SMatt Jacobdevice		firmware	# firmware assist module
297713c9391SDavid E. O'Brien
298713c9391SDavid E. O'Brien# The `bpf' device enables the Berkeley Packet Filter.
299713c9391SDavid E. O'Brien# Be aware of the administrative consequences of enabling this!
300991f5121SMurray Stokely# Note that 'bpf' is required for DHCP.
301713c9391SDavid E. O'Briendevice		bpf		# Berkeley packet filter
3020cec007cSNick Hibma
303c89d41e5SAndrew Thompson# USB support
304f6a9d95bSAndrew Thompsonoptions 	USB_DEBUG	# enable debug msgs
305c89d41e5SAndrew Thompsondevice		uhci		# UHCI PCI->USB interface
306c89d41e5SAndrew Thompsondevice		ohci		# OHCI PCI->USB interface
307c89d41e5SAndrew Thompsondevice		ehci		# EHCI PCI->USB interface (USB 2.0)
308144b7166SHans Petter Selaskydevice		xhci		# XHCI PCI->USB interface (USB 3.0)
309c89d41e5SAndrew Thompsondevice		usb		# USB Bus (required)
310c89d41e5SAndrew Thompsondevice		ukbd		# Keyboard
311c89d41e5SAndrew Thompsondevice		umass		# Disks/Mass storage - Requires scbus and da
312ba1cabf4SPeter Wemm
313ba1cabf4SPeter Wemm# FireWire support
314ba1cabf4SPeter Wemmdevice		firewire	# FireWire bus code
3157042aba7SKen Smith# sbp(4) works for some systems but causes boot failure on others
3164c0ba9b7SKen Smith#device		sbp		# SCSI over FireWire (Requires scbus and da)
317ba1cabf4SPeter Wemmdevice		fwe		# Ethernet over FireWire (non-standard!)
31835fafac2SHidetoshi Shimokawadevice		fwip		# IP over FireWire (RFC 2734,3146)
31935fafac2SHidetoshi Shimokawadevice		dcons		# Dumb console driver
32035fafac2SHidetoshi Shimokawadevice		dcons_crom	# Configuration ROM for dcons
321701b698bSJoel Dahl
322701b698bSJoel Dahl# Sound support
323701b698bSJoel Dahldevice		sound		# Generic sound driver (required)
324f38f12f2SJoel Dahldevice		snd_cmi		# CMedia CMI8338/CMI8738
325f38f12f2SJoel Dahldevice		snd_csa		# Crystal Semiconductor CS461x/428x
326f38f12f2SJoel Dahldevice		snd_emu10kx	# Creative SoundBlaster Live! and Audigy
327701b698bSJoel Dahldevice		snd_es137x	# Ensoniq AudioPCI ES137x
328701b698bSJoel Dahldevice		snd_hda		# Intel High Definition Audio
329701b698bSJoel Dahldevice		snd_ich		# Intel, NVidia and other ICH AC'97 Audio
330701b698bSJoel Dahldevice		snd_via8233	# VIA VT8233x Audio
331966d0ed1SKevin Lo
332966d0ed1SKevin Lo# MMC/SD
333966d0ed1SKevin Lodevice		mmc		# MMC/SD bus
334966d0ed1SKevin Lodevice		mmcsd		# MMC/SD memory card
335966d0ed1SKevin Lodevice		sdhci		# Generic PCI SD Host Controller
336