GENERIC revision 170061
1240116Smarcel#
2240116Smarcel# GENERIC -- Generic kernel configuration file for FreeBSD/amd64
3240116Smarcel#
4240116Smarcel# For more information on this file, please read the handbook section on
5240116Smarcel# Kernel Configuration Files:
6240116Smarcel#
7240116Smarcel#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8240116Smarcel#
9240116Smarcel# The handbook is also available locally in /usr/share/doc/handbook
10240116Smarcel# if you've installed the doc distribution, otherwise always see the
11240116Smarcel# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12240116Smarcel# latest information.
13240116Smarcel#
14240116Smarcel# An exhaustive list of options and more detailed explanations of the
15240116Smarcel# device lines is also present in the ../../conf/NOTES and NOTES files.
16240116Smarcel# If you are in doubt as to the purpose or necessity of a line, check first
17240116Smarcel# in NOTES.
18240116Smarcel#
19240116Smarcel# $FreeBSD: head/sys/amd64/conf/GENERIC 170061 2007-05-28 14:38:43Z simokawa $
20240116Smarcel
21240116Smarcelcpu		HAMMER
22240116Smarcelident		GENERIC
23240116Smarcel
24240116Smarcel# To statically compile in device wiring instead of /boot/device.hints
25240116Smarcel#hints		"GENERIC.hints"		# Default places to look for devices.
26240116Smarcel
27240116Smarcelmakeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
28240116Smarcel
29240116Smarceloptions 	SCHED_4BSD		# 4BSD scheduler
30240116Smarceloptions 	PREEMPTION		# Enable kernel thread preemption
31240116Smarceloptions 	INET			# InterNETworking
32240116Smarceloptions 	INET6			# IPv6 communications protocols
33240116Smarceloptions 	FFS			# Berkeley Fast Filesystem
34240116Smarceloptions 	SOFTUPDATES		# Enable FFS soft updates support
35240116Smarceloptions 	UFS_ACL			# Support for access control lists
36240116Smarceloptions 	UFS_DIRHASH		# Improve performance on big directories
37240116Smarceloptions 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
38240116Smarceloptions 	MD_ROOT			# MD is a potential root device
39240116Smarceloptions 	NFSCLIENT		# Network Filesystem Client
40240116Smarceloptions 	NFSSERVER		# Network Filesystem Server
41240116Smarceloptions 	NFS_ROOT		# NFS usable as /, requires NFSCLIENT
42240116Smarceloptions 	NTFS			# NT File System
43240116Smarceloptions 	MSDOSFS			# MSDOS Filesystem
44240116Smarceloptions 	CD9660			# ISO 9660 Filesystem
45240116Smarceloptions 	PROCFS			# Process filesystem (requires PSEUDOFS)
46240116Smarceloptions 	PSEUDOFS		# Pseudo-filesystem framework
47240116Smarceloptions 	GEOM_PART_GPT		# GUID Partition Tables.
48240116Smarceloptions 	GEOM_LABEL		# Provides labelization
49240116Smarceloptions 	COMPAT_43TTY		# BSD 4.3 TTY compat [KEEP THIS!]
50240116Smarceloptions 	COMPAT_IA32		# Compatible with i386 binaries
51240116Smarceloptions 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
52240116Smarceloptions 	COMPAT_FREEBSD5		# Compatible with FreeBSD5
53240116Smarceloptions 	COMPAT_FREEBSD6		# Compatible with FreeBSD6
54240116Smarceloptions 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
55240116Smarceloptions 	KTRACE			# ktrace(1) support
56240116Smarceloptions 	SYSVSHM			# SYSV-style shared memory
57240116Smarceloptions 	SYSVMSG			# SYSV-style message queues
58240116Smarceloptions 	SYSVSEM			# SYSV-style semaphores
59240116Smarceloptions 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
60240116Smarceloptions 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
61240116Smarceloptions 	ADAPTIVE_GIANT		# Giant mutex is adaptive.
62240116Smarceloptions 	STOP_NMI		# Stop CPUS using NMI instead of IPI
63240116Smarcel
64240116Smarcel# Debugging for use in -current
65240116Smarceloptions 	KDB			# Enable kernel debugger support.
66240116Smarceloptions 	DDB			# Support DDB.
67240116Smarceloptions 	GDB			# Support remote GDB.
68240116Smarceloptions 	INVARIANTS		# Enable calls of extra sanity checking
69240116Smarceloptions 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
70240116Smarceloptions 	WITNESS			# Enable checks to detect deadlocks and cycles
71240116Smarceloptions 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
72240116Smarcel
73240116Smarcel# Make an SMP-capable kernel by default
74240116Smarceloptions 	SMP			# Symmetric MultiProcessor Kernel
75240116Smarcel
76240116Smarcel# Bus support.
77240116Smarceldevice		acpi
78240116Smarceldevice		pci
79240116Smarcel
80240116Smarcel# Floppy drives
81240116Smarceldevice		fdc
82240116Smarcel
83240116Smarcel# ATA and ATAPI devices
84240116Smarceldevice		ata
85240116Smarceldevice		atadisk		# ATA disk drives
86240116Smarceldevice		ataraid		# ATA RAID drives
87240116Smarceldevice		atapicd		# ATAPI CDROM drives
88240116Smarceldevice		atapifd		# ATAPI floppy drives
89240116Smarceldevice		atapist		# ATAPI tape drives
90240116Smarceloptions 	ATA_STATIC_ID	# Static device numbering
91240116Smarcel
92240116Smarcel# SCSI Controllers
93240116Smarceldevice		ahc		# AHA2940 and onboard AIC7xxx devices
94240116Smarceloptions 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
95240116Smarcel					# output.  Adds ~128k to driver.
96240116Smarceldevice		ahd		# AHA39320/29320 and onboard AIC79xx devices
97240116Smarceloptions 	AHD_REG_PRETTY_PRINT	# Print register bitfields in debug
98240116Smarcel					# output.  Adds ~215k to driver.
99240116Smarceldevice		amd		# AMD 53C974 (Tekram DC-390(T))
100240116Smarceldevice		hptiop		# Highpoint RocketRaid 3xxx series
101240116Smarceldevice		isp		# Qlogic family
102240116Smarcel#device 	ispfw		# Firmware for QLogic HBAs- normally a module
103240116Smarceldevice		mpt		# LSI-Logic MPT-Fusion
104240116Smarcel#device		ncr		# NCR/Symbios Logic
105240116Smarceldevice		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
106240116Smarceldevice		trm		# Tekram DC395U/UW/F DC315U adapters
107240116Smarcel
108240116Smarceldevice		adv		# Advansys SCSI adapters
109240116Smarceldevice		adw		# Advansys wide SCSI adapters
110240116Smarceldevice		aic		# Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
111240116Smarceldevice		bt		# Buslogic/Mylex MultiMaster SCSI adapters
112240116Smarcel
113240116Smarcel
114240116Smarcel# SCSI peripherals
115240116Smarceldevice		scbus		# SCSI bus (required for SCSI)
116240116Smarceldevice		ch		# SCSI media changers
117240116Smarceldevice		da		# Direct Access (disks)
118240116Smarceldevice		sa		# Sequential Access (tape etc)
119240116Smarceldevice		cd		# CD
120240116Smarceldevice		pass		# Passthrough device (direct SCSI access)
121240116Smarceldevice		ses		# SCSI Environmental Services (and SAF-TE)
122240116Smarcel
123240116Smarcel# RAID controllers interfaced to the SCSI subsystem
124240116Smarceldevice		amr		# AMI MegaRAID
125240116Smarceldevice		arcmsr		# Areca SATA II RAID
126240116Smarceldevice		ciss		# Compaq Smart RAID 5*
127240116Smarceldevice		dpt		# DPT Smartcache III, IV - See NOTES for options
128240116Smarceldevice		hptmv		# Highpoint RocketRAID 182x
129240116Smarceldevice		rr232x		# Highpoint RocketRAID 232x
130240116Smarceldevice		iir		# Intel Integrated RAID
131240116Smarceldevice		ips		# IBM (Adaptec) ServeRAID
132240116Smarceldevice		mly		# Mylex AcceleRAID/eXtremeRAID
133240116Smarceldevice		twa		# 3ware 9000 series PATA/SATA RAID
134240116Smarcel
135240116Smarcel# RAID controllers
136240116Smarceldevice		aac		# Adaptec FSA RAID
137240116Smarceldevice		aacp		# SCSI passthrough for aac (requires CAM)
138240116Smarceldevice		ida		# Compaq Smart RAID
139240116Smarceldevice		mfi		# LSI MegaRAID SAS
140240116Smarceldevice		mlx		# Mylex DAC960 family
141240116Smarcel#XXX pointer/int warnings
142240116Smarcel#device		pst		# Promise Supertrak SX6000
143240116Smarceldevice		twe		# 3ware ATA RAID
144240116Smarcel
145240116Smarcel# atkbdc0 controls both the keyboard and the PS/2 mouse
146240116Smarceldevice		atkbdc		# AT keyboard controller
147240116Smarceldevice		atkbd		# AT keyboard
148240116Smarceldevice		psm		# PS/2 mouse
149240116Smarcel
150device		kbdmux		# keyboard multiplexer
151
152device		vga		# VGA video card driver
153
154device		splash		# Splash screen and screen saver support
155
156# syscons is the default console driver, resembling an SCO console
157device		sc
158
159device		agp		# support several AGP chipsets
160
161# PCCARD (PCMCIA) support
162# PCMCIA and cardbus bridge support
163device		cbb		# cardbus (yenta) bridge
164device		pccard		# PC Card (16-bit) bus
165device		cardbus		# CardBus (32-bit) bus
166
167# Serial (COM) ports
168device		sio		# 8250, 16[45]50 based serial ports
169device		uart		# Generic UART driver
170
171# Parallel port
172device		ppc
173device		ppbus		# Parallel port bus (required)
174device		lpt		# Printer
175device		plip		# TCP/IP over parallel
176device		ppi		# Parallel port interface device
177#device		vpo		# Requires scbus and da
178
179# If you've got a "dumb" serial or parallel PCI card that is
180# supported by the puc(4) glue driver, uncomment the following
181# line to enable it (connects to sio, uart and/or ppc drivers):
182#device		puc
183
184# PCI Ethernet NICs.
185device		de		# DEC/Intel DC21x4x (``Tulip'')
186device		em		# Intel PRO/1000 adapter Gigabit Ethernet Card
187device		ixgb		# Intel PRO/10GbE Ethernet Card
188device		le		# AMD Am7900 LANCE and Am79C9xx PCnet
189device		txp		# 3Com 3cR990 (``Typhoon'')
190device		vx		# 3Com 3c590, 3c595 (``Vortex'')
191
192# PCI Ethernet NICs that use the common MII bus controller code.
193# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
194device		miibus		# MII bus support
195device		bce		# Broadcom BCM5706/BCM5708 Gigabit Ethernet
196device		bfe		# Broadcom BCM440x 10/100 Ethernet
197device		bge		# Broadcom BCM570xx Gigabit Ethernet
198device		dc		# DEC/Intel 21143 and various workalikes
199device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
200device		lge		# Level 1 LXT1001 gigabit Ethernet
201device		msk		# Marvell/SysKonnect Yukon II Gigabit Ethernet
202device		nge		# NatSemi DP83820 gigabit Ethernet
203device		nve		# nVidia nForce MCP on-board Ethernet Networking
204device		pcn		# AMD Am79C97x PCI 10/100 (precedence over 'le')
205device		re		# RealTek 8139C+/8169/8169S/8110S
206device		rl		# RealTek 8129/8139
207device		sf		# Adaptec AIC-6915 (``Starfire'')
208device		sis		# Silicon Integrated Systems SiS 900/SiS 7016
209device		sk		# SysKonnect SK-984x & SK-982x gigabit Ethernet
210device		ste		# Sundance ST201 (D-Link DFE-550TX)
211device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
212device		tl		# Texas Instruments ThunderLAN
213device		tx		# SMC EtherPower II (83c170 ``EPIC'')
214device		vge		# VIA VT612x gigabit Ethernet
215device		vr		# VIA Rhine, Rhine II
216device		wb		# Winbond W89C840F
217device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
218
219# ISA Ethernet NICs.  pccard NICs included.
220device		cs		# Crystal Semiconductor CS89x0 NIC
221# 'device ed' requires 'device miibus'
222device		ed		# NE[12]000, SMC Ultra, 3c503, DS8390 cards
223device		ex		# Intel EtherExpress Pro/10 and Pro/10+
224device		ep		# Etherlink III based cards
225device		fe		# Fujitsu MB8696x based cards
226device		sn		# SMC's 9000 series of Ethernet chips
227device		xe		# Xircom pccard Ethernet
228
229# Wireless NIC cards
230device		wlan		# 802.11 support
231device		wlan_wep	# 802.11 WEP support
232device		wlan_ccmp	# 802.11 CCMP support
233device		wlan_tkip	# 802.11 TKIP support
234device		wlan_amrr	# AMRR transmit rate control algorithm
235device		an		# Aironet 4500/4800 802.11 wireless NICs.
236device		ath		# Atheros pci/cardbus NIC's
237device		ath_hal		# Atheros HAL (Hardware Access Layer)
238device		ath_rate_sample	# SampleRate tx rate control for ath
239device		awi		# BayStack 660 and others
240device		ral		# Ralink Technology RT2500 wireless NICs.
241device		wi		# WaveLAN/Intersil/Symbol 802.11 wireless NICs.
242
243# Pseudo devices.
244device		loop		# Network loopback
245device		random		# Entropy device
246device		ether		# Ethernet support
247device		sl		# Kernel SLIP
248device		ppp		# Kernel PPP
249device		tun		# Packet tunnel.
250device		pty		# Pseudo-ttys (telnet etc)
251device		md		# Memory "disks"
252device		gif		# IPv6 and IPv4 tunneling
253device		faith		# IPv6-to-IPv4 relaying (translation)
254device		firmware	# firmware assist module
255
256# The `bpf' device enables the Berkeley Packet Filter.
257# Be aware of the administrative consequences of enabling this!
258# Note that 'bpf' is required for DHCP.
259device		bpf		# Berkeley packet filter
260
261# USB support
262device		uhci		# UHCI PCI->USB interface
263device		ohci		# OHCI PCI->USB interface
264device		ehci		# EHCI PCI->USB interface (USB 2.0)
265device		usb		# USB Bus (required)
266#device		udbp		# USB Double Bulk Pipe devices
267device		ugen		# Generic
268device		uhid		# "Human Interface Devices"
269device		ukbd		# Keyboard
270device		ulpt		# Printer
271device		umass		# Disks/Mass storage - Requires scbus and da
272device		ums		# Mouse
273device		ural		# Ralink Technology RT2500USB wireless NICs
274device		urio		# Diamond Rio 500 MP3 player
275device		uscanner	# Scanners
276# USB Ethernet, requires miibus
277device		aue		# ADMtek USB Ethernet
278device		axe		# ASIX Electronics USB Ethernet
279device		cdce		# Generic USB over Ethernet
280device		cue		# CATC USB Ethernet
281device		kue		# Kawasaki LSI USB Ethernet
282device		rue		# RealTek RTL8150 USB Ethernet
283
284# FireWire support
285device		firewire	# FireWire bus code
286device		sbp		# SCSI over FireWire (Requires scbus and da)
287device		fwe		# Ethernet over FireWire (non-standard!)
288device		fwip		# IP over FireWire (RFC 2734,3146)
289device		dcons		# Dumb console driver
290device		dcons_crom	# Configuration ROM for dcons
291