xref: /freebsd/sys/powerpc/conf/GENERIC64 (revision 7aa383846770374466b1dcb2cefd71bde9acf463)
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
30
31options 	SCHED_ULE		#ULE scheduler
32options 	INET			#InterNETworking
33options 	INET6			#IPv6 communications protocols
34options 	SCTP			#Stream Control Transmission Protocol
35options 	FFS			#Berkeley Fast Filesystem
36options 	SOFTUPDATES		#Enable FFS soft updates support
37options 	UFS_ACL			#Support for access control lists
38options 	UFS_DIRHASH		#Improve performance on big directories
39options 	UFS_GJOURNAL		#Enable gjournal-based UFS journaling
40options 	MD_ROOT			#MD is a potential root device
41options 	NFSCLIENT		#Network Filesystem Client
42options 	NFSSERVER		#Network Filesystem Server
43options 	NFSLOCKD		#Network Lock Manager
44options 	NFS_ROOT		#NFS usable as root device
45options 	MSDOSFS			#MSDOS Filesystem
46options 	CD9660			#ISO 9660 Filesystem
47options 	PROCFS			#Process filesystem (requires PSEUDOFS)
48options 	PSEUDOFS		#Pseudo-filesystem framework
49options 	GEOM_PART_GPT		#GUID Partition Tables.
50options 	GEOM_LABEL		#Provides labelization
51options 	COMPAT_FREEBSD32	#Compatible with FreeBSD/powerpc binaries
52options 	COMPAT_FREEBSD5		#Compatible with FreeBSD5
53options 	COMPAT_FREEBSD6		#Compatible with FreeBSD6
54options 	COMPAT_FREEBSD7		#Compatible with FreeBSD7
55options 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI
56options 	KTRACE			#ktrace(1) syscall trace support
57options 	STACK			#stack(9) support
58options 	SYSVSHM			#SYSV-style shared memory
59options 	SYSVMSG			#SYSV-style message queues
60options 	SYSVSEM			#SYSV-style semaphores
61options 	P1003_1B_SEMAPHORES	# POSIX-style semaphores
62options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
63options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
64options 	AUDIT			# Security event auditing
65options 	MAC			# TrustedBSD MAC Framework
66options 	INCLUDE_CONFIG_FILE     # Include this file in kernel
67
68# Debugging for use in -current
69options 	KDB			#Enable the kernel debugger
70options 	DDB			#Support DDB
71#options 	DEADLKRES		#Enable the deadlock resolver
72options 	INVARIANTS		#Enable calls of extra sanity checking
73options 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
74options 	WITNESS			#Enable checks to detect deadlocks and cycles
75options 	WITNESS_SKIPSPIN	#Don't run witness on spinlocks for speed
76
77# To make an SMP kernel, the next line is needed
78#options 	SMP			# Symmetric MultiProcessor Kernel
79
80# CPU frequency control
81device		cpufreq
82
83# Standard busses
84device		pci
85
86# ATA and ATAPI devices
87device		ata
88device		atadisk		# ATA disk drives
89device		atapicd		# ATAPI CDROM drives
90#device		atapifd		# ATAPI floppy drives
91#device		atapist		# ATAPI tape drives
92
93# SCSI Controllers
94device		ahc		# AHA2940 and onboard AIC7xxx devices
95options 	AHC_ALLOW_MEMIO	# Attempt to use memory mapped I/O
96options 	AHC_REG_PRETTY_PRINT	# Print register bitfields in debug
97					# output.  Adds ~128k to driver.
98device		isp		# Qlogic family
99device		ispfw		# Firmware module for Qlogic host adapters
100device		mpt		# LSI-Logic MPT-Fusion
101device		sym		# NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
102
103# SCSI peripherals
104device		scbus		# SCSI bus (required for SCSI)
105device		da		# Direct Access (disks)
106device		sa		# Sequential Access (tape etc)
107device		cd		# CD
108device		pass		# Passthrough device (direct SCSI access)
109
110# syscons is the default console driver, resembling an SCO console
111device		sc
112device		kbdmux
113options 	SC_OFWFB	# OFW frame buffer
114options 	SC_DFLT_FONT	# compile font in
115makeoptions	SC_DFLT_FONT=cp437
116
117# Serial (COM) ports
118device		scc
119device		uart
120
121# PCI Ethernet NICs that use the common MII bus controller code.
122device		miibus		# MII bus support
123device		bge		# Broadcom BCM570xx Gigabit 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		urio		# Diamond Rio 500 MP3 player
159# USB Ethernet
160device		aue		# ADMtek USB Ethernet
161device		axe		# ASIX Electronics USB Ethernet
162device		cdce		# Generic USB over Ethernet
163device		cue		# CATC USB Ethernet
164device		kue		# Kawasaki LSI USB Ethernet
165
166# FireWire support
167device		firewire	# FireWire bus code
168device		sbp		# SCSI over FireWire (Requires scbus and da)
169device		fwe		# Ethernet over FireWire (non-standard!)
170
171# Misc
172device		powermac_nvram	# Open Firmware configuration NVRAM
173device		smu		# Apple System Management Unit
174
175# ADB support
176device		adb
177device		pmu
178
179# Powermac I2C support
180device		iicbus		# I2C bus code
181device		kiic		# Keywest I2C
182
183