GENERIC revision 252555
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/amd64
3#
4# For more information on this file, please read the config(5) manual page,
5# and/or the handbook section on Kernel Configuration Files:
6#
7#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8#
9# The handbook is also available locally in /usr/share/doc/handbook
10# if you've installed the doc distribution, otherwise always see the
11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12# latest information.
13#
14# An exhaustive list of options and more detailed explanations of the
15# device lines is also present in the ../../conf/NOTES and NOTES files.
16# If you are in doubt as to the purpose or necessity of a line, check first
17# in NOTES.
18#
19# $FreeBSD: stable/9/sys/amd64/conf/GENERIC 252555 2013-07-03 09:25:29Z np $
20
21cpu		HAMMER
22ident		GENERIC
23
24makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
25makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
26
27options 	SCHED_ULE		# ULE scheduler
28options 	PREEMPTION		# Enable kernel thread preemption
29options 	INET			# InterNETworking
30options 	INET6			# IPv6 communications protocols
31options 	TCP_OFFLOAD		# TCP offload
32options 	SCTP			# Stream Control Transmission Protocol
33options 	FFS			# Berkeley Fast Filesystem
34options 	SOFTUPDATES		# Enable FFS soft updates support
35options 	UFS_ACL			# Support for access control lists
36options 	UFS_DIRHASH		# Improve performance on big directories
37options 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
38options 	QUOTA			# Enable disk quotas for UFS
39options 	MD_ROOT			# MD is a potential root device
40options 	NFSCL			# New Network Filesystem Client
41options 	NFSD			# New Network Filesystem Server
42options 	NFSLOCKD		# Network Lock Manager
43options 	NFS_ROOT		# NFS usable as /, requires NFSCL
44options 	MSDOSFS			# MSDOS Filesystem
45options 	CD9660			# ISO 9660 Filesystem
46options 	PROCFS			# Process filesystem (requires PSEUDOFS)
47options 	PSEUDOFS		# Pseudo-filesystem framework
48options 	GEOM_PART_GPT		# GUID Partition Tables.
49options 	GEOM_RAID		# Soft RAID functionality.
50options 	GEOM_LABEL		# Provides labelization
51options 	COMPAT_FREEBSD32	# Compatible with i386 binaries
52options 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
53options 	COMPAT_FREEBSD5		# Compatible with FreeBSD5
54options 	COMPAT_FREEBSD6		# Compatible with FreeBSD6
55options 	COMPAT_FREEBSD7		# Compatible with FreeBSD7
56options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
57options 	KTRACE			# ktrace(1) support
58options 	STACK			# stack(9) support
59options 	SYSVSHM			# SYSV-style shared memory
60options 	SYSVMSG			# SYSV-style message queues
61options 	SYSVSEM			# SYSV-style semaphores
62options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
63options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
64options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
65options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
66options 	AUDIT			# Security event auditing
67options 	MAC			# TrustedBSD MAC Framework
68options 	KDTRACE_FRAME		# Ensure frames are compiled in
69options 	KDTRACE_HOOKS		# Kernel DTrace hooks
70options 	INCLUDE_CONFIG_FILE     # Include this file in kernel
71options 	KDB			# Kernel debugger related code
72options 	KDB_TRACE		# Print a stack trace for a panic
73options 	DDB_CTF			# kernel ELF linker loads CTF data
74
75# Make an SMP-capable kernel by default
76options 	SMP			# Symmetric MultiProcessor Kernel
77
78# CPU frequency control
79device		cpufreq
80
81# Bus support.
82device		acpi
83device		pci
84
85# Floppy drives
86device		fdc
87
88# ATA controllers
89device		ahci		# AHCI-compatible SATA controllers
90device		ata		# Legacy ATA/SATA controllers
91options 	ATA_CAM		# Handle legacy controllers with CAM
92options 	ATA_STATIC_ID	# Static device numbering
93device		mvs		# Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
94device		siis		# SiliconImage SiI3124/SiI3132/SiI3531 SATA
95
96# SCSI Controllers
97device		ahc		# AHA2940 and onboard AIC7xxx devices
98options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
99					# output.  Adds ~128k to driver.
100device		ahd		# AHA39320/29320 and onboard AIC79xx devices
101options 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
102					# output.  Adds ~215k to driver.
103device		esp		# AMD Am53C974 (Tekram DC-390(T))
104device		hptiop		# Highpoint RocketRaid 3xxx series
105device		isp		# Qlogic family
106#device		ispfw		# Firmware for QLogic HBAs- normally a module
107device		mpt		# LSI-Logic MPT-Fusion
108device		mps		# LSI-Logic MPT-Fusion 2
109#device		ncr		# NCR/Symbios Logic
110device		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
111device		trm		# Tekram DC395U/UW/F DC315U adapters
112
113device		adv		# Advansys SCSI adapters
114device		adw		# Advansys wide SCSI adapters
115device		aic		# Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
116device		bt		# Buslogic/Mylex MultiMaster SCSI adapters
117device		isci		# Intel C600 SAS controller
118
119# ATA/SCSI peripherals
120device		scbus		# SCSI bus (required for ATA/SCSI)
121device		ch		# SCSI media changers
122device		da		# Direct Access (disks)
123device		sa		# Sequential Access (tape etc)
124device		cd		# CD
125device		pass		# Passthrough device (direct ATA/SCSI access)
126device		ses		# Enclosure Services (SES and SAF-TE)
127device		ctl		# CAM Target Layer
128
129# RAID controllers interfaced to the SCSI subsystem
130device		amr		# AMI MegaRAID
131device		arcmsr		# Areca SATA II RAID
132#XXX it is not 64-bit clean, -scottl
133#device		asr		# DPT SmartRAID V, VI and Adaptec SCSI RAID
134device		ciss		# Compaq Smart RAID 5*
135device		dpt		# DPT Smartcache III, IV - See NOTES for options
136device		hptmv		# Highpoint RocketRAID 182x
137device		hptrr		# Highpoint RocketRAID 17xx, 22xx, 23xx, 25xx
138device		hpt27xx		# Highpoint RocketRAID 27xx
139device		iir		# Intel Integrated RAID
140device		ips		# IBM (Adaptec) ServeRAID
141device		mly		# Mylex AcceleRAID/eXtremeRAID
142device		twa		# 3ware 9000 series PATA/SATA RAID
143device		tws		# LSI 3ware 9750 SATA+SAS 6Gb/s RAID controller
144
145# RAID controllers
146device		aac		# Adaptec FSA RAID
147device		aacp		# SCSI passthrough for aac (requires CAM)
148device		ida		# Compaq Smart RAID
149device		mfi		# LSI MegaRAID SAS
150device		mlx		# Mylex DAC960 family
151#XXX pointer/int warnings
152#device		pst		# Promise Supertrak SX6000
153device		twe		# 3ware ATA RAID
154
155# atkbdc0 controls both the keyboard and the PS/2 mouse
156device		atkbdc		# AT keyboard controller
157device		atkbd		# AT keyboard
158device		psm		# PS/2 mouse
159
160device		kbdmux		# keyboard multiplexer
161
162device		vga		# VGA video card driver
163options 	VESA		# Add support for VESA BIOS Extensions (VBE)
164
165device		splash		# Splash screen and screen saver support
166
167# syscons is the default console driver, resembling an SCO console
168device		sc
169options 	SC_PIXEL_MODE	# add support for the raster text mode
170
171device		agp		# support several AGP chipsets
172
173# PCCARD (PCMCIA) support
174# PCMCIA and cardbus bridge support
175device		cbb		# cardbus (yenta) bridge
176device		pccard		# PC Card (16-bit) bus
177device		cardbus		# CardBus (32-bit) bus
178
179# Serial (COM) ports
180device		uart		# Generic UART driver
181
182# Parallel port
183device		ppc
184device		ppbus		# Parallel port bus (required)
185device		lpt		# Printer
186device		plip		# TCP/IP over parallel
187device		ppi		# Parallel port interface device
188#device		vpo		# Requires scbus and da
189
190device		puc		# Multi I/O cards and multi-channel UARTs
191
192# PCI Ethernet NICs.
193device		bxe		# Broadcom BCM57710/BCM57711/BCM57711E 10Gb Ethernet
194device		de		# DEC/Intel DC21x4x (``Tulip'')
195device		em		# Intel PRO/1000 Gigabit Ethernet Family
196device		igb		# Intel PRO/1000 PCIE Server Gigabit Family
197device		ixgbe		# Intel PRO/10GbE PCIE Ethernet Family
198device		le		# AMD Am7900 LANCE and Am79C9xx PCnet
199device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
200device		txp		# 3Com 3cR990 (``Typhoon'')
201device		vx		# 3Com 3c590, 3c595 (``Vortex'')
202
203# PCI Ethernet NICs that use the common MII bus controller code.
204# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
205device		miibus		# MII bus support
206device		ae		# Attansic/Atheros L2 FastEthernet
207device		age		# Attansic/Atheros L1 Gigabit Ethernet
208device		alc		# Atheros AR8131/AR8132 Ethernet
209device		ale		# Atheros AR8121/AR8113/AR8114 Ethernet
210device		bce		# Broadcom BCM5706/BCM5708 Gigabit Ethernet
211device		bfe		# Broadcom BCM440x 10/100 Ethernet
212device		bge		# Broadcom BCM570xx Gigabit Ethernet
213device		cas		# Sun Cassini/Cassini+ and NS DP83065 Saturn
214device		dc		# DEC/Intel 21143 and various workalikes
215device		et		# Agere ET1310 10/100/Gigabit Ethernet
216device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
217device		gem		# Sun GEM/Sun ERI/Apple GMAC
218device		hme		# Sun HME (Happy Meal Ethernet)
219device		jme		# JMicron JMC250 Gigabit/JMC260 Fast Ethernet
220device		lge		# Level 1 LXT1001 gigabit Ethernet
221device		msk		# Marvell/SysKonnect Yukon II Gigabit Ethernet
222device		nfe		# nVidia nForce MCP on-board Ethernet
223device		nge		# NatSemi DP83820 gigabit Ethernet
224#device		nve		# nVidia nForce MCP on-board Ethernet Networking
225device		pcn		# AMD Am79C97x PCI 10/100 (precedence over 'le')
226device		re		# RealTek 8139C+/8169/8169S/8110S
227device		rl		# RealTek 8129/8139
228device		sf		# Adaptec AIC-6915 (``Starfire'')
229device		sge		# Silicon Integrated Systems SiS190/191
230device		sis		# Silicon Integrated Systems SiS 900/SiS 7016
231device		sk		# SysKonnect SK-984x & SK-982x gigabit Ethernet
232device		ste		# Sundance ST201 (D-Link DFE-550TX)
233device		stge		# Sundance/Tamarack TC9021 gigabit Ethernet
234device		tl		# Texas Instruments ThunderLAN
235device		tx		# SMC EtherPower II (83c170 ``EPIC'')
236device		vge		# VIA VT612x gigabit Ethernet
237device		vr		# VIA Rhine, Rhine II
238device		wb		# Winbond W89C840F
239device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
240
241# ISA Ethernet NICs.  pccard NICs included.
242device		cs		# Crystal Semiconductor CS89x0 NIC
243# 'device ed' requires 'device miibus'
244device		ed		# NE[12]000, SMC Ultra, 3c503, DS8390 cards
245device		ex		# Intel EtherExpress Pro/10 and Pro/10+
246device		ep		# Etherlink III based cards
247device		fe		# Fujitsu MB8696x based cards
248device		sn		# SMC's 9000 series of Ethernet chips
249device		xe		# Xircom pccard Ethernet
250
251# Wireless NIC cards
252device		wlan		# 802.11 support
253options 	IEEE80211_DEBUG	# enable debug msgs
254options 	IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
255options 	IEEE80211_SUPPORT_MESH	# enable 802.11s draft support
256device		wlan_wep	# 802.11 WEP support
257device		wlan_ccmp	# 802.11 CCMP support
258device		wlan_tkip	# 802.11 TKIP support
259device		wlan_amrr	# AMRR transmit rate control algorithm
260device		an		# Aironet 4500/4800 802.11 wireless NICs.
261device		ath		# Atheros NICs
262device		ath_pci		# Atheros pci/cardbus glue
263device		ath_hal		# pci/cardbus chip support
264options 	AH_SUPPORT_AR5416	# enable AR5416 tx/rx descriptors
265device		ath_rate_sample	# SampleRate tx rate control for ath
266#device		bwi		# Broadcom BCM430x/BCM431x wireless NICs.
267#device		bwn		# Broadcom BCM43xx wireless NICs.
268device		ipw		# Intel 2100 wireless NICs.
269device		iwi		# Intel 2200BG/2225BG/2915ABG wireless NICs.
270device		iwn		# Intel 4965/1000/5000/6000 wireless NICs.
271device		malo		# Marvell Libertas wireless NICs.
272device		mwl		# Marvell 88W8363 802.11n wireless NICs.
273device		ral		# Ralink Technology RT2500 wireless NICs.
274device		wi		# WaveLAN/Intersil/Symbol 802.11 wireless NICs.
275device		wpi		# Intel 3945ABG wireless NICs.
276
277# Pseudo devices.
278device		loop		# Network loopback
279device		random		# Entropy device
280options 	PADLOCK_RNG	# VIA Padlock RNG
281options 	RDRAND_RNG	# Intel Bull Mountain RNG
282device		ether		# Ethernet support
283device		vlan		# 802.1Q VLAN support
284device		tun		# Packet tunnel.
285device		pty		# BSD-style compatibility pseudo ttys
286device		md		# Memory "disks"
287device		gif		# IPv6 and IPv4 tunneling
288device		faith		# IPv6-to-IPv4 relaying (translation)
289device		firmware	# firmware assist module
290
291# The `bpf' device enables the Berkeley Packet Filter.
292# Be aware of the administrative consequences of enabling this!
293# Note that 'bpf' is required for DHCP.
294device		bpf		# Berkeley packet filter
295
296# USB support
297options 	USB_DEBUG	# enable debug msgs
298device		uhci		# UHCI PCI->USB interface
299device		ohci		# OHCI PCI->USB interface
300device		ehci		# EHCI PCI->USB interface (USB 2.0)
301device		xhci		# XHCI PCI->USB interface (USB 3.0)
302device		usb		# USB Bus (required)
303#device		udbp		# USB Double Bulk Pipe devices (needs netgraph)
304device		uhid		# "Human Interface Devices"
305device		ukbd		# Keyboard
306device		ulpt		# Printer
307device		umass		# Disks/Mass storage - Requires scbus and da
308device		ums		# Mouse
309device		urio		# Diamond Rio 500 MP3 player
310# USB Serial devices
311device		u3g		# USB-based 3G modems (Option, Huawei, Sierra)
312device		uark		# Technologies ARK3116 based serial adapters
313device		ubsa		# Belkin F5U103 and compatible serial adapters
314device		uftdi		# For FTDI usb serial adapters
315device		uipaq		# Some WinCE based devices
316device		uplcom		# Prolific PL-2303 serial adapters
317device		uslcom		# SI Labs CP2101/CP2102 serial adapters
318device		uvisor		# Visor and Palm devices
319device		uvscom		# USB serial support for DDI pocket's PHS
320# USB Ethernet, requires miibus
321device		aue		# ADMtek USB Ethernet
322device		axe		# ASIX Electronics USB Ethernet
323device		cdce		# Generic USB over Ethernet
324device		cue		# CATC USB Ethernet
325device		kue		# Kawasaki LSI USB Ethernet
326device		rue		# RealTek RTL8150 USB Ethernet
327device		udav		# Davicom DM9601E USB
328# USB Wireless
329device		rum		# Ralink Technology RT2501USB wireless NICs
330device		run		# Ralink Technology RT2700/RT2800/RT3000 NICs.
331device		uath		# Atheros AR5523 wireless NICs
332device		upgt		# Conexant/Intersil PrismGT wireless NICs.
333device		ural		# Ralink Technology RT2500USB wireless NICs
334device		urtw		# Realtek RTL8187B/L wireless NICs
335device		zyd		# ZyDAS zd1211/zd1211b wireless NICs
336
337# Sound support
338device		sound		# Generic sound driver (required)
339device		snd_cmi		# CMedia CMI8338/CMI8738
340device		snd_csa		# Crystal Semiconductor CS461x/428x
341device		snd_emu10kx	# Creative SoundBlaster Live! and Audigy
342device		snd_es137x	# Ensoniq AudioPCI ES137x
343device		snd_hda		# Intel High Definition Audio
344device		snd_ich		# Intel, NVidia and other ICH AC'97 Audio
345device		snd_uaudio	# USB Audio
346device		snd_via8233	# VIA VT8233x Audio
347
348# VirtIO support
349device		virtio		# Generic VirtIO bus (required)
350device		virtio_pci	# VirtIO PCI Interface
351device		vtnet		# VirtIO Ethernet device
352device		virtio_blk	# VirtIO Block device
353device		virtio_scsi	# VirtIO SCSI device
354device		virtio_balloon	# VirtIO Memory Balloon device
355