xref: /freebsd/sys/powerpc/conf/GENERIC64 (revision b2db760808f74bb53c232900091c9da801ebbfcc)
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
24machine		powerpc	powerpc64
25
26makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
27
28# Platform support
29options 	POWERMAC		#NewWorld Apple PowerMacs
30options		MAMBO			#IBM Mambo Full System Simulator
31
32options 	SCHED_ULE		#ULE scheduler
33options 	INET			#InterNETworking
34options 	INET6			#IPv6 communications protocols
35options 	SCTP			#Stream Control Transmission Protocol
36options 	FFS			#Berkeley Fast Filesystem
37options 	SOFTUPDATES		#Enable FFS soft updates support
38options 	UFS_ACL			#Support for access control lists
39options 	UFS_DIRHASH		#Improve performance on big directories
40options 	UFS_GJOURNAL		#Enable gjournal-based UFS journaling
41options 	MD_ROOT			#MD is a potential root device
42options 	NFSCLIENT		#Network Filesystem Client
43options 	NFSSERVER		#Network Filesystem Server
44options 	NFSLOCKD		#Network Lock Manager
45options 	NFS_ROOT		#NFS usable as root device
46options 	MSDOSFS			#MSDOS Filesystem
47options 	CD9660			#ISO 9660 Filesystem
48options 	PROCFS			#Process filesystem (requires PSEUDOFS)
49options 	PSEUDOFS		#Pseudo-filesystem framework
50options 	GEOM_PART_GPT		#GUID Partition Tables.
51options 	GEOM_LABEL		#Provides labelization
52options 	COMPAT_FREEBSD32	#Compatible with FreeBSD/powerpc binaries
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) syscall trace support
58options 	STACK			#stack(9) support
59options 	SYSVSHM			#SYSV-style shared memory
60options 	SYSVMSG			#SYSV-style message queues
61options 	SYSVSEM			#SYSV-style semaphores
62options 	P1003_1B_SEMAPHORES	# POSIX-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		gem		# Sun GEM/Sun ERI/Apple GMAC
127device		dc		# DEC/Intel 21143 and various workalikes
128device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
129
130# Pseudo devices.
131device		loop		# Network loopback
132device		random		# Entropy device
133device		ether		# Ethernet support
134device		vlan		# 802.1Q VLAN support
135device		tun		# Packet tunnel.
136device		pty		# BSD-style compatibility pseudo ttys
137device		md		# Memory "disks"
138device		ofwd		# Open Firmware disks
139device		gif		# IPv6 and IPv4 tunneling
140device		faith		# IPv6-to-IPv4 relaying/(translation)
141device		firmware	# firmware assist module
142
143# The `bpf' device enables the Berkeley Packet Filter.
144# Be aware of the administrative consequences of enabling this!
145# Note that 'bpf' is required for DHCP.
146device		bpf		#Berkeley packet filter
147
148# USB support
149options 	USB_DEBUG	# enable debug msgs
150device		uhci		# UHCI PCI->USB interface
151device		ohci		# OHCI PCI->USB interface
152device		ehci		# EHCI PCI->USB interface
153device		usb		# USB Bus (required)
154device		uhid		# "Human Interface Devices"
155device		ukbd		# Keyboard
156options 	KBD_INSTALL_CDEV # install a CDEV entry in /dev
157device		ulpt		# Printer
158device		umass		# Disks/Mass storage - Requires scbus and da0
159device		ums		# Mouse
160device		urio		# Diamond Rio 500 MP3 player
161# USB Ethernet
162device		aue		# ADMtek USB Ethernet
163device		axe		# ASIX Electronics USB Ethernet
164device		cdce		# Generic USB over Ethernet
165device		cue		# CATC USB Ethernet
166device		kue		# Kawasaki LSI USB Ethernet
167
168# FireWire support
169device		firewire	# FireWire bus code
170device		sbp		# SCSI over FireWire (Requires scbus and da)
171device		fwe		# Ethernet over FireWire (non-standard!)
172
173# Misc
174device		powermac_nvram	# Open Firmware configuration NVRAM
175device		smu		# Apple System Management Unit
176
177# ADB support
178device		adb
179device		pmu
180
181# Powermac I2C support
182device		iicbus		# I2C bus code
183device		kiic		# Keywest I2C
184
185