xref: /freebsd/sys/powerpc/conf/GENERIC (revision 7d0d268b8a67f28ccefdd0b8ce6fb38acac78d80)
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
24#To statically compile in device wiring instead of /boot/device.hints
25#hints		"GENERIC.hints"
26
27makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
28
29# Platform support
30options 	POWERMAC		#NewWorld Apple PowerMacs
31options 	PSIM			#GDB PSIM ppc 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_43TTY		#BSD 4.3 TTY compat (sgtty)
54options 	COMPAT_FREEBSD4		#Keep this for a while
55options 	COMPAT_FREEBSD5		#Compatible with FreeBSD5
56options 	COMPAT_FREEBSD6		#Compatible with FreeBSD6
57options 	COMPAT_FREEBSD7		#Compatible with FreeBSD7
58options 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI
59options 	KTRACE			#ktrace(1) syscall trace support
60options 	STACK			#stack(9) support
61options 	SYSVSHM			#SYSV-style shared memory
62options 	SYSVMSG			#SYSV-style message queues
63options 	SYSVSEM			#SYSV-style semaphores
64options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
65options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
66options 	AUDIT			# Security event auditing
67
68# Debugging for use in -current
69options 	KDB			#Enable the kernel debugger
70options 	DDB			#Support DDB
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# Standard busses
80device		pci
81
82# ATA and ATAPI devices
83device		ata
84device		atadisk		# ATA disk drives
85device		atapicd		# ATAPI CDROM drives
86#device		atapifd		# ATAPI floppy drives
87#device		atapist		# ATAPI tape drives
88
89# SCSI peripherals
90device		scbus		# SCSI bus (required for SCSI)
91device		da		# Direct Access (disks)
92device		sa		# Sequential Access (tape etc)
93device		cd		# CD
94device		pass		# Passthrough device (direct SCSI access)
95
96# syscons is the default console driver, resembling an SCO console
97device		sc
98device		kbdmux
99options 	SC_OFWFB	# OFW frame buffer
100options 	SC_DFLT_FONT	# compile font in
101makeoptions	SC_DFLT_FONT=cp437
102
103# Serial (COM) ports
104device		scc
105device		uart
106
107# PCI Ethernet NICs that use the common MII bus controller code.
108device		miibus		# MII bus support
109device		bge		# Broadcom BCM570xx Gigabit Ethernet
110device		bm		# Apple BMAC Ethernet
111device		gem		# Sun GEM/Sun ERI/Apple GMAC
112device		dc		# DEC/Intel 21143 and various workalikes
113device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
114
115# Pseudo devices.
116device		loop		# Network loopback
117device		random		# Entropy device
118device		ether		# Ethernet support
119device		tun		# Packet tunnel.
120device		pty		# BSD-style compatibility pseudo ttys
121device		md		# Memory "disks"
122device		ofwd		# Open Firmware disks
123device		gif		# IPv6 and IPv4 tunneling
124device		faith		# IPv6-to-IPv4 relaying/(translation)
125
126# The `bpf' device enables the Berkeley Packet Filter.
127# Be aware of the administrative consequences of enabling this!
128# Note that 'bpf' is required for DHCP.
129device		bpf		#Berkeley packet filter
130
131# USB core support
132device          usb2_core
133# USB controller support
134device		usb2_controller
135device		usb2_controller_ehci
136device		usb2_controller_ohci
137device		usb2_controller_uhci
138# USB mass storage support
139device		usb2_storage
140device		usb2_storage_mass
141# USB ethernet support, requires miibus
142device		usb2_ethernet
143device		usb2_ethernet_aue
144device		usb2_ethernet_axe
145device		usb2_ethernet_cdce
146device		usb2_ethernet_cue
147device		usb2_ethernet_kue
148device		usb2_ethernet_rue
149device		usb2_ethernet_dav
150# USB serial device support
151device		usb2_serial
152device		usb2_serial_ark
153device		usb2_serial_bsa
154device		usb2_serial_bser
155device		usb2_serial_chcom
156device		usb2_serial_cycom
157device		usb2_serial_foma
158device		usb2_serial_ftdi
159device		usb2_serial_gensa
160device		usb2_serial_ipaq
161device		usb2_serial_lpt
162device		usb2_serial_mct
163device		usb2_serial_modem
164device		usb2_serial_moscom
165device		usb2_serial_plcom
166device		usb2_serial_slcom
167device		usb2_serial_visor
168device		usb2_serial_vscom
169# USB bluetooth support
170#device		usb2_bluetooth
171#device		usb2_bluetooth_ng
172# USB input device support
173device		usb2_input
174device		usb2_input_hid
175device		usb2_input_kbd
176device		usb2_input_ms
177# USB sound and MIDI device support
178#device		usb2_sound
179# USB scanner support
180device		usb2_image
181device		usb2_scanner
182
183# USB support (deprecated)
184#device		uhci		# UHCI PCI->USB interface
185#device		ohci		# OHCI PCI->USB interface
186#device		ehci		# EHCI PCI->USB interface
187#device		usb		# USB Bus (required)
188#device		ugen		# Generic
189#device		uhid		# "Human Interface Devices"
190#device		ukbd		# Keyboard
191#options         KBD_INSTALL_CDEV # install a CDEV entry in /dev
192#device		ulpt		# Printer
193#device		umass		# Disks/Mass storage - Requires scbus and da0
194#device		ums		# Mouse
195#device		urio		# Diamond Rio 500 MP3 player
196#device		uscanner	# Scanners
197# USB Ethernet
198#device		aue		# ADMtek USB Ethernet
199#device		axe		# ASIX Electronics USB Ethernet
200#device		cdce		# Generic USB over Ethernet
201#device		cue		# CATC USB Ethernet
202#device		kue		# Kawasaki LSI USB Ethernet
203
204# FireWire support
205device		firewire	# FireWire bus code
206device		sbp		# SCSI over FireWire (Requires scbus and da)
207device		fwe		# Ethernet over FireWire (non-standard!)
208
209# Misc
210device		powermac_nvram	# Open Firmware configuration NVRAM
211
212# ADB support
213device		adb
214device		cuda
215device		pmu
216
217# Powermac I2C support
218device		iicbus		# I2C bus code
219device		kiic		# Keywest I2C
220
221options 	KTR
222options 	KTR_COMPILE=0xffffffff
223#options 	KTR_MASK=KTR_SIG
224options 	KTR_VERBOSE
225