GENERIC revision 193334
1#
2# GENERIC -- Generic kernel configuration file for FreeBSD/pc98
3#
4# For more information on this file, please read the config(5) manual page,
5# and/or the handbook section on 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/pc98/conf/GENERIC 193334 2009-06-02 18:31:08Z rwatson $
20
21cpu		I486_CPU
22cpu		I586_CPU
23cpu		I686_CPU
24ident		GENERIC
25
26# To statically compile in device wiring instead of /boot/device.hints
27#hints		"GENERIC.hints"		# Default places to look for devices.
28
29# Use the following to compile in values accessible to the kernel
30# through getenv() (or kenv(1) in userland). The format of the file
31# is 'variable=value', see kenv(1)
32#
33# env		"GENERIC.env"
34
35makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
36
37options 	SCHED_4BSD		# 4BSD scheduler
38#options 	PREEMPTION		# Enable kernel thread preemption
39options 	INET			# InterNETworking
40options 	INET6			# IPv6 communications protocols
41#options 	SCTP			# Stream Control Transmission Protocol
42options 	FFS			# Berkeley Fast Filesystem
43options 	SOFTUPDATES		# Enable FFS soft updates support
44options 	UFS_ACL			# Support for access control lists
45options 	UFS_DIRHASH		# Improve performance on big directories
46options 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
47options 	MD_ROOT			# MD is a potential root device
48options 	NFSCLIENT		# Network Filesystem Client
49#options 	NFSSERVER		# Network Filesystem Server
50#options 	NFSLOCKD		# Network Lock Manager
51options 	NFS_ROOT		# NFS usable as /, requires NFSCLIENT
52options 	MSDOSFS			# MSDOS Filesystem
53options 	CD9660			# ISO 9660 Filesystem
54#options 	PROCFS			# Process filesystem (requires PSEUDOFS)
55#options 	PSEUDOFS		# Pseudo-filesystem framework
56options 	GEOM_PART_GPT		# GUID Partition Tables.
57options 	GEOM_LABEL		# Provides labelization
58options 	COMPAT_43TTY		# BSD 4.3 TTY compat (sgtty)
59options 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
60options 	COMPAT_FREEBSD5		# Compatible with FreeBSD5
61options 	COMPAT_FREEBSD6		# Compatible with FreeBSD6
62options 	COMPAT_FREEBSD7		# Compatible with FreeBSD7
63options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
64options 	EPSON_BOUNCEDMA		# use bounce buffer for 15-16M
65#options 	EPSON_MEMWIN		# EPSON memory window support
66#options 	LINE30
67options 	KTRACE			# ktrace(1) support
68options 	STACK			# stack(9) support
69#options 	SYSVSHM			# SYSV-style shared memory
70#options 	SYSVMSG			# SYSV-style message queues
71#options 	SYSVSEM			# SYSV-style semaphores
72options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
73options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
74options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
75options 	AUDIT			# Security event auditing
76options 	MAC			# TrustedBSD MAC Framework
77
78# Debugging for use in -current
79options 	KDB			# Enable kernel debugger support.
80options 	DDB			# Support DDB.
81options 	GDB			# Support remote GDB.
82options 	INVARIANTS		# Enable calls of extra sanity checking
83options 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
84options 	WITNESS			# Enable checks to detect deadlocks and cycles
85options 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
86
87# To make an SMP kernel, the next two lines are needed
88#options 	SMP			# Symmetric MultiProcessor Kernel
89#device		apic			# I/O APIC
90
91# Bus support.
92device		pci
93
94# Floppy drives
95device		fdc
96
97# ATA and ATAPI devices
98device		ata
99device		atadisk		# ATA disk drives
100device		atapicd		# ATAPI CDROM drives
101device		atapifd		# ATAPI floppy drives
102device		atapist		# ATAPI tape drives
103options 	ATA_STATIC_ID	# Static device numbering
104
105# SCSI Controllers
106device		adv		# Advansys SCSI adapters
107device		ahc		# AHA2940 and onboard AIC7xxx devices
108device		amd		# AMD 53C974 (Tekram DC-390(T))
109device		isp		# Qlogic family
110#device		ncr		# NCR/Symbios Logic
111device		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
112
113device		aic		# PC-9801-100
114device		ct		# host adapter using WD33C93[ABC] chip (C bus)
115
116#device		ncv		# NCR 53C500
117#device		nsp		# Workbit Ninja SCSI-3
118#device		stg		# TMC 18C30/18C50
119
120# SCSI peripherals
121device		scbus		# SCSI bus (required for SCSI)
122device		ch		# SCSI media changers
123device		da		# Direct Access (disks)
124device		sa		# Sequential Access (tape etc)
125device		cd		# CD
126device		pass		# Passthrough device (direct SCSI access)
127device		ses		# SCSI Environmental Services (and SAF-TE)
128
129# keyboard driver
130device		pckbd		# PC98 keyboard
131
132device		gdc		# GDC screen
133
134device		splash		# Splash screen and screen saver support
135
136# syscons is the default console driver, resembling an SCO console
137device		sc
138
139#device		agp		# support several AGP chipsets
140
141# Power management support (see NOTES for more options)
142#device		apm
143#device		pmc
144#device		canbus
145#device		canbepm
146# Add suspend/resume support for the i8254.
147#device		pmtimer
148
149# Audio support
150#device		sound		# Generic sound driver
151#device		snd_mss		# Microsoft Sound System
152#device		"snd_sb16"	# Sound Blaster 16
153#device		snd_sbc		# Sound Blaster
154
155# PCCARD (PCMCIA) support
156# PCMCIA and cardbus bridge support
157#device		cbb		# cardbus (yenta) bridge
158#device		pccard		# PC Card (16-bit) bus
159#device		cardbus		# CardBus (32-bit) bus
160
161# Serial (COM) ports
162#options 	COM_MULTIPORT
163#options 	COM_ESP		# ESP98
164#device		sio		# 8250, 16[45]50, 8251 based serial ports
165device		uart		# Generic UART driver
166
167device		mse
168#device		joy
169
170# NEW Parallel port
171#device		ppc
172#device		ppbus		# Parallel port bus (required)
173#device		lpt		# Printer
174#device		plip		# TCP/IP over parallel
175#device		ppi		# Parallel port interface device
176#device		vpo		# Requires scbus and da
177# OLD Parallel port
178# Please stay olpt driver after ppc driver
179#device		olpt
180
181# PCI Ethernet NICs.
182device		de		# DEC/Intel DC21x4x (``Tulip'')
183#device		em		# Intel PRO/1000 adapter Gigabit Ethernet Card
184device		le		# AMD Am7900 LANCE and Am79C9xx PCnet
185#device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
186device		txp		# 3Com 3cR990 (``Typhoon'')
187device		vx		# 3Com 3c590, 3c595 (``Vortex'')
188
189# PCI Ethernet NICs that use the common MII bus controller code.
190# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
191device		miibus		# MII bus support
192device		bfe		# Broadcom BCM440x 10/100 Ethernet
193#device		bge		# Broadcom BCM570xx Gigabit Ethernet
194device		dc		# DEC/Intel 21143 and various workalikes
195device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
196#device		lge		# Level 1 LXT1001 gigabit Ethernet
197#device		nge		# NatSemi DP83820 gigabit Ethernet
198device		pcn		# AMD Am79C97x PCI 10/100 (precedence over 'le')
199device		re		# RealTek 8139C+/8169/8169S/8110S
200device		rl		# RealTek 8129/8139
201device		sf		# Adaptec AIC-6915 (``Starfire'')
202device		sis		# Silicon Integrated Systems SiS 900/SiS 7016
203#device		sk		# SysKonnect SK-984x & SK-982x gigabit Ethernet
204device		ste		# Sundance ST201 (D-Link DFE-550TX)
205device		tl		# Texas Instruments ThunderLAN
206device		tx		# SMC EtherPower II (83c170 ``EPIC'')
207#device		vge		# VIA VT612x gigabit Ethernet
208device		vr		# VIA Rhine, Rhine II
209device		wb		# Winbond W89C840F
210device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
211
212# ISA Ethernet NICs.  pccard NICs included.
213# 'device ed' requires 'device miibus'
214device		ed		# NE[12]000, SMC Ultra, 3c503, DS8390 cards
215device		ep		# Etherlink III based cards
216device		fe		# Fujitsu MB8696x based cards
217device		sn		# SMC's 9000 series of Ethernet chips
218device		snc
219device		xe		# Xircom pccard Ethernet
220
221# Wireless NIC cards
222#device		wlan		# 802.11 support
223#options 	IEEE80211_DEBUG	# enable debug msgs
224#options 	IEEE80211_AMPDU_AGE	# age frames in AMPDU reorder q's
225#device		wlan_wep	# 802.11 WEP support
226#device		wlan_ccmp	# 802.11 CCMP support
227#device		wlan_tkip	# 802.11 TKIP support
228#device		wlan_amrr	# AMRR transmit rate control algorithm
229#device		an		# Aironet 4500/4800 802.11 wireless NICs.
230#device		ath		# Atheros pci/cardbus NIC's
231#device		ath_hal		# pci/cardbus chip support
232#options 	AH_SUPPORT_AR5416	# enable AR5416 tx/rx descriptors
233#device		ath_rate_sample	# SampleRate tx rate control for ath
234#device		ral		# Ralink Technology RT2500 wireless NICs.
235#device		wi		# WaveLAN/Intersil/Symbol 802.11 wireless NICs.
236#device		wl		# Older non 802.11 Wavelan wireless NIC.
237
238# Pseudo devices.
239device		loop		# Network loopback
240device		random		# Entropy device
241device		ether		# Ethernet support
242device		tun		# Packet tunnel.
243device		pty		# BSD-style compatibility pseudo ttys
244device		md		# Memory "disks"
245device		gif		# IPv6 and IPv4 tunneling
246device		faith		# IPv6-to-IPv4 relaying (translation)
247device		firmware	# firmware assist module
248
249# The `bpf' device enables the Berkeley Packet Filter.
250# Be aware of the administrative consequences of enabling this!
251# Note that 'bpf' is required for DHCP.
252device		bpf		# Berkeley packet filter
253
254# USB support
255#device		uhci		# UHCI PCI->USB interface
256#device		ohci		# OHCI PCI->USB interface
257#device		ehci		# EHCI PCI->USB interface (USB 2.0)
258#device		usb		# USB Bus (required)
259#device		udbp		# USB Double Bulk Pipe devices
260#device		uhid		# "Human Interface Devices"
261#device		ukbd		# Keyboard
262#device		ulpt		# Printer
263#device		umass		# Disks/Mass storage - Requires scbus and da
264#device		ums		# Mouse
265#device		rum		# Ralink Technology RT2501USB wireless NICs
266#device		uath		# Atheros AR5523 wireless NICs
267#device		ural		# Ralink Technology RT2500USB wireless NICs
268#device		zyd		# ZyDAS zb1211/zb1211b wireless NICs
269#device		urio		# Diamond Rio 500 MP3 player
270# USB Serial devices
271#device		uark		# Technologies ARK3116 based serial adapters
272#device		ubsa		# Belkin F5U103 and compatible serial adapters
273#device		ubser		# BWCT console serial adapters
274#device		uftdi		# For FTDI usb serial adapters
275#device		uipaq		# Some WinCE based devices
276#device		uplcom		# Prolific PL-2303 serial adapters
277#device		uslcom		# SI Labs CP2101/CP2102 serial adapters
278#device		uvisor		# Visor and Palm devices
279#device		uvscom		# USB serial support for DDI pocket's PHS
280# USB Ethernet, requires miibus
281#device		aue		# ADMtek USB Ethernet
282#device		axe		# ASIX Electronics USB Ethernet
283#device		cdce		# Generic USB over Ethernet
284#device		cue		# CATC USB Ethernet
285#device		kue		# Kawasaki LSI USB Ethernet
286#device		rue		# RealTek RTL8150 USB Ethernet
287#device		udav		# Davicom DM9601E USB
288
289# FireWire support
290#device		firewire	# FireWire bus code
291#device		sbp		# SCSI over FireWire (Requires scbus and da)
292#device		fwe		# Ethernet over FireWire (non-standard!)
293