GENERIC revision 132287
1197948Srpaulo#
2197948Srpaulo# GENERIC -- Generic kernel configuration file for FreeBSD/pc98
3197948Srpaulo#
4197948Srpaulo# For more information on this file, please read the handbook section on
5197948Srpaulo# Kernel Configuration Files:
6197948Srpaulo#
7197948Srpaulo#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8197948Srpaulo#
9197948Srpaulo# The handbook is also available locally in /usr/share/doc/handbook
10197948Srpaulo# if you've installed the doc distribution, otherwise always see the
11197948Srpaulo# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12197948Srpaulo# latest information.
13197948Srpaulo#
14197948Srpaulo# An exhaustive list of options and more detailed explanations of the
15197948Srpaulo# device lines is also present in the ../../conf/NOTES and NOTES files.
16197948Srpaulo# If you are in doubt as to the purpose or necessity of a line, check first
17197948Srpaulo# in NOTES.
18197948Srpaulo#
19197948Srpaulo# $FreeBSD: head/sys/pc98/conf/GENERIC 132287 2004-07-17 10:22:42Z nyan $
20197948Srpaulo
21197948Srpaulomachine		pc98
22197948Srpaulo#cpu		I386_CPU		# Do not enable with other cpu types
23197948Srpaulocpu		I486_CPU
24197948Srpaulocpu		I586_CPU
25197948Srpaulocpu		I686_CPU
26217814Sadrianident		GENERIC
27217814Sadrian
28217814Sadrian# To statically compile in device wiring instead of /boot/device.hints
29217814Sadrian#hints		"GENERIC.hints"		# Default places to look for devices.
30208711Srpaulo
31208711Srpaulomakeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
32220946Sadrian
33220946Sadrianoptions 	PC98			# PC98
34197948Srpaulooptions 	SCHED_ULE		# ULE scheduler
35197948Srpaulooptions 	INET			# InterNETworking
36197948Srpaulooptions 	INET6			# IPv6 communications protocols
37197948Srpaulooptions 	FFS			# Berkeley Fast Filesystem
38197948Srpaulooptions 	SOFTUPDATES		# Enable FFS soft updates support
39197948Srpaulooptions 	UFS_ACL			# Support for access control lists
40197948Srpaulooptions 	UFS_DIRHASH		# Improve performance on big directories
41197948Srpaulooptions 	MD_ROOT			# MD is a potential root device
42197948Srpaulooptions 	NFSCLIENT		# Network Filesystem Client
43197948Srpaulooptions 	NFSSERVER		# Network Filesystem Server
44197948Srpaulooptions 	NFS_ROOT		# NFS usable as /, requires NFSCLIENT
45197948Srpaulooptions 	MSDOSFS			# MSDOS Filesystem
46197948Srpaulooptions 	CD9660			# ISO 9660 Filesystem
47197948Srpaulooptions 	PROCFS			# Process filesystem (requires PSEUDOFS)
48197948Srpaulooptions 	PSEUDOFS		# Pseudo-filesystem framework
49197948Srpaulooptions 	GEOM_GPT		# GUID Partition Tables.
50197948Srpaulooptions 	COMPAT_43		# Compatible with BSD 4.3 [KEEP THIS!]
51197948Srpaulooptions 	COMPAT_FREEBSD4		# Compatible with FreeBSD4
52197948Srpaulooptions 	SCSI_DELAY=15000	# Delay (in ms) before probing SCSI
53197948Srpaulooptions 	EPSON_BOUNCEDMA		# use bounce buffer for 15-16M
54197948Srpaulo#options 	EPSON_MEMWIN		# EPSON memory window support
55197948Srpaulo#options 	LINE30
56197948Srpaulooptions 	KTRACE			# ktrace(1) support
57197948Srpaulooptions 	SYSVSHM			# SYSV-style shared memory
58197948Srpaulooptions 	SYSVMSG			# SYSV-style message queues
59197948Srpaulooptions 	SYSVSEM			# SYSV-style semaphores
60197948Srpaulooptions 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
61197948Srpaulooptions 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
62197948Srpaulooptions 	PFIL_HOOKS		# pfil(9) framework
63197948Srpaulo
64197948Srpaulo# Debugging for use in -current
65197948Srpaulooptions 	KDB			# Enable kernel debugger support.
66197948Srpaulooptions 	DDB			# Support DDB.
67197948Srpaulooptions 	GDB			# Support remote GDB.
68197948Srpaulooptions 	INVARIANTS		# Enable calls of extra sanity checking
69197948Srpaulooptions 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
70197948Srpaulooptions 	WITNESS			# Enable checks to detect deadlocks and cycles
71197948Srpaulooptions 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
72197948Srpaulo
73197948Srpaulo# To make an SMP kernel, the next two are needed
74197948Srpaulo#options 	SMP			# Symmetric MultiProcessor Kernel
75197948Srpaulo#device		apic			# I/O APIC
76197948Srpaulo
77197948Srpaulodevice		isa
78197948Srpaulodevice		pci
79217814Sadrian#options 	COMPAT_OLDISA		# Old ISA driver shims
80197948Srpaulo
81197948Srpaulo# Floppy drives
82197948Srpaulodevice		fdc
83217814Sadrian
84197948Srpaulo# ATA and ATAPI devices
85197948Srpaulodevice		ata
86197948Srpaulodevice		atadisk		# ATA disk drives
87217814Sadriandevice		atapicd		# ATAPI CDROM drives
88197948Srpaulodevice		atapifd		# ATAPI floppy drives
89197948Srpaulodevice		atapist		# ATAPI tape drives
90197948Srpaulooptions 	ATA_STATIC_ID	# Static device numbering
91197948Srpaulo
92197948Srpaulo# IDE controller and disks
93197948Srpaulo#device		wdc	1	# Needs COMPAT_OLDISA
94197948Srpaulo
95197948Srpaulo# ATAPI devices on wdc
96197948Srpaulo#device		wcd	1	# IDE CD-ROM
97217809Sadrian
98197948Srpaulo# SCSI Controllers
99217809Sadriandevice		adv		# Advansys SCSI adapters
100217814Sadriandevice		ahc		# AHA2940 and onboard AIC7xxx devices
101217814Sadriandevice		amd		# AMD 53C974 (Tekram DC-390(T))
102217814Sadriandevice		isp		# Qlogic family
103217809Sadrian#device		ncr		# NCR/Symbios Logic
104217809Sadriandevice		sym		# NCR/Symbios Logic (newer chipsets + those of `ncr')
105217809Sadrian
106217809Sadriandevice		aic		# PC-9801-100
107217809Sadriandevice		ct		# host adapter using WD33C93[ABC] chip (C bus)
108197948Srpaulo
109197948Srpaulodevice		ncv		# NCR 53C500
110197948Srpaulodevice		nsp		# Workbit Ninja SCSI-3
111197948Srpaulodevice		stg		# TMC 18C30/18C50
112197948Srpaulo
113197948Srpaulo# SCSI peripherals
114197948Srpaulodevice		scbus		# SCSI bus (required for SCSI)
115197948Srpaulodevice		ch		# SCSI media changers
116197948Srpaulodevice		da		# Direct Access (disks)
117197948Srpaulodevice		sa		# Sequential Access (tape etc)
118217814Sadriandevice		cd		# CD
119217814Sadriandevice		pass		# Passthrough device (direct SCSI access)
120217809Sadriandevice		ses		# SCSI Environmental Services (and SAF-TE)
121217814Sadrian
122217809Sadrian# keyboard driver
123217809Sadriandevice		pckbd		# PC98 keyboard
124217814Sadrian
125217809Sadriandevice		gdc		# GDC screen
126217814Sadrian
127217814Sadriandevice		splash		# Splash screen and screen saver support
128217814Sadrian
129217814Sadrian# syscons is the default console driver, resembling an SCO console
130217814Sadriandevice		sc
131217814Sadrian
132217814Sadrian#device		agp		# support several AGP chipsets
133217809Sadrian
134217814Sadrian# Floating point support - do not disable.
135217814Sadriandevice		npx
136217814Sadrian
137217814Sadrian# Power management support (see NOTES for more options)
138217814Sadrian#device		apm
139217814Sadrian#device		pmc
140217809Sadrian#device		canbus
141220589Sadrian#device		canbepm
142220589Sadrian# Add suspend/resume support for the i8254.
143220589Sadrian#device		pmtimer
144220589Sadrian
145220589Sadrian# Audio support
146217809Sadrian#device		sound		# Generic sound driver
147197948Srpaulo#device		snd_mss		# Microsoft Sound System
148217814Sadrian#device		"snd_sb16"	# Sound Blaster 16
149197948Srpaulo#device		snd_sbc		# Sound Blaster
150197948Srpaulo
151197948Srpaulo# PCMCIA support
152197948Srpaulodevice		card		# pccard bus
153197948Srpaulodevice		pcic		# PCMCIA bridge
154197948Srpaulo
155203159Srpaulo# Serial (COM) ports
156203159Srpaulooptions 	COM_MULTIPORT
157197948Srpaulo#options 	COM_ESP		# ESP98
158197948Srpaulodevice		sio		# 8250, 16[45]50, 8251 based serial ports
159197948Srpaulo
160197948Srpaulodevice		mse
161197948Srpaulo#device		joy
162197948Srpaulo
163197948Srpaulo# NEW Parallel port
164197948Srpaulodevice		ppc
165197948Srpaulodevice		ppbus		# Parallel port bus (required)
166197948Srpaulodevice		lpt		# Printer
167197948Srpaulodevice		plip		# TCP/IP over parallel
168197948Srpaulodevice		ppi		# Parallel port interface device
169197948Srpaulo#device		vpo		# Requires scbus and da
170197948Srpaulo# OLD Parallel port
171197948Srpaulo# Please stay olpt driver after ppc driver
172197948Srpaulo#device		olpt
173197948Srpaulo
174197948Srpaulo# PCI Ethernet NICs.
175197948Srpaulodevice		de		# DEC/Intel DC21x4x (``Tulip'')
176197948Srpaulodevice		em		# Intel PRO/1000 adapter Gigabit Ethernet Card
177197948Srpaulodevice		txp		# 3Com 3cR990 (``Typhoon'')
178197948Srpaulodevice		vx		# 3Com 3c590, 3c595 (``Vortex'')
179197948Srpaulo
180208711Srpaulo# PCI Ethernet NICs that use the common MII bus controller code.
181197948Srpaulo# NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
182197948Srpaulodevice		miibus		# MII bus support
183device		bfe		# Broadcom BCM440x 10/100 Ethernet
184device		bge		# Broadcom BCM570xx Gigabit Ethernet
185device		dc		# DEC/Intel 21143 and various workalikes
186device		fxp		# Intel EtherExpress PRO/100B (82557, 82558)
187device		pcn		# AMD Am79C97x PCI 10/100 (precedence over 'lnc')
188device		re		# RealTek 8139C+/8169/8169S/8110S
189device		rl		# RealTek 8129/8139
190device		sf		# Adaptec AIC-6915 (``Starfire'')
191device		sis		# Silicon Integrated Systems SiS 900/SiS 7016
192device		sk		# SysKonnect SK-984x & SK-982x gigabit Ethernet
193device		ste		# Sundance ST201 (D-Link DFE-550TX)
194device		ti		# Alteon Networks Tigon I/II gigabit Ethernet
195device		tl		# Texas Instruments ThunderLAN
196device		tx		# SMC EtherPower II (83c170 ``EPIC'')
197device		vr		# VIA Rhine, Rhine II
198device		wb		# Winbond W89C840F
199device		xl		# 3Com 3c90x (``Boomerang'', ``Cyclone'')
200
201# ISA Ethernet NICs.  pccard NICs included.
202# 'device ed' requires 'device miibus'
203device		ed		# NE[12]000, SMC Ultra, 3c503, DS8390 cards
204device		ep		# Etherlink III based cards
205device		fe		# Fujitsu MB8696x based cards
206device		lnc		# C-NET(98)S
207device		sn		# SMC's 9000 series of Ethernet chips
208device		snc
209device		xe		# Xircom pccard Ethernet
210
211# Wireless NIC cards
212device		wlan		# 802.11 support
213device		an		# Aironet 4500/4800 802.11 wireless NICs.
214device		awi		# BayStack 660 and others
215device		wi		# WaveLAN/Intersil/Symbol 802.11 wireless NICs.
216#device		wl		# Older non 802.11 Wavelan wireless NIC.
217
218# Pseudo devices - the number indicates how many units to allocate.
219device		random		# Entropy device
220device		loop		# Network loopback
221device		ether		# Ethernet support
222device		sl		# Kernel SLIP
223device		ppp		# Kernel PPP
224device		tun		# Packet tunnel.
225device		pty		# Pseudo-ttys (telnet etc)
226device		md		# Memory "disks"
227device		gif		# IPv6 and IPv4 tunneling
228device		faith		# IPv6-to-IPv4 relaying (translation)
229
230# The `bpf' device enables the Berkeley Packet Filter.
231# Be aware of the administrative consequences of enabling this!
232device		bpf		# Berkeley packet filter
233
234# USB support
235#device		uhci		# UHCI PCI->USB interface
236#device		ohci		# OHCI PCI->USB interface
237#device		usb		# USB Bus (required)
238#device		udbp		# USB Double Bulk Pipe devices
239#device		ugen		# Generic
240#device		uhid		# "Human Interface Devices"
241#device		ukbd		# Keyboard
242#device		ulpt		# Printer
243#device		umass		# Disks/Mass storage - Requires scbus and da
244#device		ums		# Mouse
245#device		urio		# Diamond Rio 500 MP3 player
246#device		uscanner	# Scanners
247# USB Ethernet, requires mii
248#device		aue		# ADMtek USB Ethernet
249#device		axe		# ASIX Electronics USB Ethernet
250#device		cue		# CATC USB Ethernet
251#device		kue		# Kawasaki LSI USB Ethernet
252#device		rue		# RealTek RTL8150 USB Ethernet
253
254# FireWire support
255#device		firewire	# FireWire bus code
256#device		sbp		# SCSI over FireWire (Requires scbus and da)
257#device		fwe		# Ethernet over FireWire (non-standard!)
258