GENERIC revision 152661
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 152661 2005-11-21 20:17:46Z jhb $
20
21machine		powerpc
22cpu		OEA
23ident		GENERIC
24
25#To statically compile in device wiring instead of /boot/device.hints
26#hints		"GENERIC.hints"
27
28makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
29makeoptions	WERROR=-Wno-error	#XXX: We don't want -Werror just now
30
31# Platform support
32options 	POWERMAC		#NewWorld Apple PowerMacs
33options 	PSIM			#GDB PSIM ppc simulator
34
35#options 	SCHED_ULE		#ULE scheduler
36options 	SCHED_4BSD		#4BSD scheduler
37options 	INET			#InterNETworking
38options 	INET6			#IPv6 communications protocols
39options 	FFS			#Berkeley Fast Filesystem
40options 	SOFTUPDATES		#Enable FFS soft updates support
41options 	UFS_ACL			#Support for access control lists
42options 	UFS_DIRHASH		#Improve performance on big directories
43options 	MD_ROOT			#MD is a potential root device
44options 	NFSCLIENT		#Network Filesystem Client
45options 	NFSSERVER		#Network Filesystem Server
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_GPT		#GUID Partition Tables.
52options 	COMPAT_43		#Compatible with BSD 4.3 [KEEP THIS!]
53options 	COMPAT_FREEBSD4		#Keep this for a while
54options 	COMPAT_FREEBSD5		#Keep this for a while
55options 	SCSI_DELAY=5000		#Delay (in ms) before probing SCSI 
56options 	KTRACE			#ktrace(1) syscall trace support
57options 	SYSVSHM			#SYSV-style shared memory
58options 	SYSVMSG			#SYSV-style message queues
59options 	SYSVSEM			#SYSV-style semaphores
60options 	_KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
61
62# Debugging for use in -current
63options 	KDB			#Enable the kernel debugger
64options 	DDB			#Support DDB
65options 	INVARIANTS		#Enable calls of extra sanity checking
66options 	INVARIANT_SUPPORT	#Extra sanity checks of internal structures, required by INVARIANTS
67options 	WITNESS			#Enable checks to detect deadlocks and cycles
68
69# To make an SMP kernel, the next line is needed
70#options 	SMP			# Symmetric MultiProcessor Kernel
71
72# Standard busses
73device		pci
74
75# ATA and ATAPI devices
76device		ata
77device		atadisk		# ATA disk drives
78device		atapicd		# ATAPI CDROM drives
79#device		atapifd		# ATAPI floppy drives
80#device		atapist		# ATAPI tape drives
81
82# SCSI peripherals
83device		scbus		# SCSI bus (required for SCSI)
84device		da		# Direct Access (disks)
85device		sa		# Sequential Access (tape etc)
86device		cd		# CD
87device		pass		# Passthrough device (direct SCSI access)
88
89# syscons is the default console driver, resembling an SCO console
90device		sc
91options		SC_OFWFB	# OFW frame buffer
92options		SC_DFLT_FONT	# compile font in
93makeoptions	SC_DFLT_FONT=cp437
94
95# Serial (COM) ports
96#device		sio		# 8250, 16[45]50 based serial ports
97device		zs		# Zilog 8350 based serial ports
98
99# PCI Ethernet NICs that use the common MII bus controller code.
100device		miibus		# MII bus support
101device		gem		# Sun GEM/Sun ERI/Apple GMAC
102device 		dc		# DEC/Intel 21143 and various workalikes
103device 		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
104
105# Pseudo devices.
106device		loop		# Network loopback
107device		random		# Entropy device
108device		ether		# Ethernet support
109device		sl		# Kernel SLIP
110device		ppp		# Kernel PPP
111device		tun		# Packet tunnel.
112device		pty		# Pseudo-ttys (telnet etc)
113device		md		# Memory "disks"
114device		ofwd		# Open Firmware disks
115device		gif		# IPv6 and IPv4 tunneling
116device		faith		# IPv6-to-IPv4 relaying/(translation)
117
118# The `bpf' device enables the Berkeley Packet Filter.
119# Be aware of the administrative consequences of enabling this!
120# Note that 'bpf' is required for DHCP.
121device		bpf		#Berkeley packet filter
122
123# USB support
124device		uhci		# UHCI PCI->USB interface
125device		ohci		# OHCI PCI->USB interface
126device		ehci		# EHCI PCI->USB interface
127device		usb		# USB Bus (required)
128device		ugen		# Generic
129device		uhid		# "Human Interface Devices"
130device		ukbd		# Keyboard
131options         KBD_INSTALL_CDEV # install a CDEV entry in /dev
132device		ulpt		# Printer
133device		umass		# Disks/Mass storage - Requires scbus and da0
134device		ums		# Mouse
135device		urio		# Diamond Rio 500 MP3 player
136device		uscanner	# Scanners
137# USB Ethernet
138device		aue		# ADMtek USB Ethernet
139device		axe		# ASIX Electronics USB Ethernet
140device		cdce		# Generic USB over Ethernet
141device		cue		# CATC USB Ethernet
142device		kue		# Kawasaki LSI USB Ethernet
143
144# FireWire support
145device		firewire	# FireWire bus code
146device		sbp		# SCSI over FireWire (Requires scbus and da)
147device		fwe		# Ethernet over FireWire (non-standard!)
148
149options 	KTR
150options 	KTR_COMPILE=0xffffffff
151#options 	KTR_MASK=KTR_SIG
152options 	KTR_VERBOSE
153