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