xref: /freebsd/sys/powerpc/conf/GENERIC (revision 8fc257994d0ce2396196d7a06d50d20c8015f4b7)
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/powerpc
3#
4# For more information on this file, please read the handbook section on
5# 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$
20
21cpu		AIM
22ident		GENERIC
23
24makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
25
26# Platform support
27options 	POWERMAC		#NewWorld Apple PowerMacs
28options 	PSIM			#GDB PSIM ppc simulator
29
30options 	SCHED_ULE		#ULE scheduler
31options 	INET			#InterNETworking
32options 	INET6			#IPv6 communications protocols
33options 	SCTP			#Stream Control Transmission Protocol
34options 	FFS			#Berkeley Fast Filesystem
35options 	SOFTUPDATES		#Enable FFS soft updates support
36options 	UFS_ACL			#Support for access control lists
37options 	UFS_DIRHASH		#Improve performance on big directories
38options 	UFS_GJOURNAL		#Enable gjournal-based UFS journaling
39options 	MD_ROOT			#MD is a potential root device
40options 	NFSCLIENT		#Network Filesystem Client
41options 	NFSSERVER		#Network Filesystem Server
42options 	NFSLOCKD		#Network Lock Manager
43options 	NFS_ROOT		#NFS usable as root device
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_LABEL		#Provides labelization
50options 	COMPAT_FREEBSD4		#Keep this for a while
51options 	COMPAT_FREEBSD5		#Compatible with FreeBSD5
52options 	COMPAT_FREEBSD6		#Compatible with FreeBSD6
53options 	COMPAT_FREEBSD7		#Compatible with FreeBSD7
54options 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI
55options 	KTRACE			#ktrace(1) syscall trace support
56options 	STACK			#stack(9) support
57options 	SYSVSHM			#SYSV-style shared memory
58options 	SYSVMSG			#SYSV-style message queues
59options 	SYSVSEM			#SYSV-style semaphores
60options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
61options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
62options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
63options 	AUDIT			# Security event auditing
64options 	MAC			# TrustedBSD MAC Framework
65options 	INCLUDE_CONFIG_FILE     # Include this file in kernel
66
67# Debugging for use in -current
68options 	KDB			#Enable the kernel debugger
69options 	DDB			#Support DDB
70#options 	DEADLKRES		#Enable the deadlock resolver
71options 	INVARIANTS		#Enable calls of extra sanity checking
72options 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
73options 	WITNESS			#Enable checks to detect deadlocks and cycles
74options 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
75
76# To make an SMP kernel, the next line is needed
77#options 	SMP			# Symmetric MultiProcessor Kernel
78
79# CPU frequency control
80device		cpufreq
81
82# Standard busses
83device		pci
84
85# ATA and ATAPI devices
86device		ata
87device		atadisk		# ATA disk drives
88device		atapicd		# ATAPI CDROM drives
89#device		atapifd		# ATAPI floppy drives
90#device		atapist		# ATAPI tape drives
91
92# SCSI Controllers
93device		ahc		# AHA2940 and onboard AIC7xxx devices
94options 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
95options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
96					# output.  Adds ~128k to driver.
97device		isp		# Qlogic family
98device		ispfw		# Firmware module for Qlogic host adapters
99device		mpt		# LSI-Logic MPT-Fusion
100device		sym		# NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
101
102# SCSI peripherals
103device		scbus		# SCSI bus (required for SCSI)
104device		da		# Direct Access (disks)
105device		sa		# Sequential Access (tape etc)
106device		cd		# CD
107device		pass		# Passthrough device (direct SCSI access)
108
109# syscons is the default console driver, resembling an SCO console
110device		sc
111device		kbdmux
112options 	SC_OFWFB	# OFW frame buffer
113options 	SC_DFLT_FONT	# compile font in
114makeoptions	SC_DFLT_FONT=cp437
115
116# Serial (COM) ports
117device		scc
118device		uart
119
120# PCI Ethernet NICs that use the common MII bus controller code.
121device		miibus		# MII bus support
122device		bge		# Broadcom BCM570xx Gigabit Ethernet
123device		bm		# Apple BMAC Ethernet
124device		gem		# Sun GEM/Sun ERI/Apple GMAC
125device		dc		# DEC/Intel 21143 and various workalikes
126device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
127
128# Pseudo devices.
129device		loop		# Network loopback
130device		random		# Entropy device
131device		ether		# Ethernet support
132device		vlan		# 802.1Q VLAN support
133device		tun		# Packet tunnel.
134device		pty		# BSD-style compatibility pseudo ttys
135device		md		# Memory "disks"
136device		ofwd		# Open Firmware disks
137device		gif		# IPv6 and IPv4 tunneling
138device		faith		# IPv6-to-IPv4 relaying/(translation)
139device		firmware	# firmware assist module
140
141# The `bpf' device enables the Berkeley Packet Filter.
142# Be aware of the administrative consequences of enabling this!
143# Note that 'bpf' is required for DHCP.
144device		bpf		#Berkeley packet filter
145
146# USB support
147options 	USB_DEBUG	# enable debug msgs
148device		uhci		# UHCI PCI->USB interface
149device		ohci		# OHCI PCI->USB interface
150device		ehci		# EHCI PCI->USB interface
151device		usb		# USB Bus (required)
152device		uhid		# "Human Interface Devices"
153device		ukbd		# Keyboard
154options 	KBD_INSTALL_CDEV # install a CDEV entry in /dev
155device		ulpt		# Printer
156device		umass		# Disks/Mass storage - Requires scbus and da0
157device		ums		# Mouse
158device		atp		# Apple USB touchpad
159device		urio		# Diamond Rio 500 MP3 player
160# USB Ethernet
161device		aue		# ADMtek USB Ethernet
162device		axe		# ASIX Electronics USB Ethernet
163device		cdce		# Generic USB over Ethernet
164device		cue		# CATC USB Ethernet
165device		kue		# Kawasaki LSI USB Ethernet
166
167# FireWire support
168device		firewire	# FireWire bus code
169device		sbp		# SCSI over FireWire (Requires scbus and da)
170device		fwe		# Ethernet over FireWire (non-standard!)
171
172# Misc
173device		powermac_nvram	# Open Firmware configuration NVRAM
174device		smu		# Apple System Management Unit
175
176# ADB support
177device		adb
178device		cuda
179device		pmu
180
181# Powermac I2C support
182device		iicbus		# I2C bus code
183device		kiic		# Keywest I2C
184
185