GENERIC revision 40031
1#
2# GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks
3#
4# For more information read the handbook part System Administration -> 
5# Configuring the FreeBSD Kernel -> The Configuration File. 
6# The handbook is available in /usr/share/doc/handbook or online as
7# latest version from the FreeBSD World Wide Web server 
8# <URL:http://www.FreeBSD.ORG/>
9#
10# An exhaustive list of options and more detailed explanations of the 
11# device lines is present in the ./LINT configuration file. If you are 
12# in doubt as to the purpose or necessity of a line, check first in LINT.
13#
14#	$Id: GENERIC,v 1.121 1998/10/05 07:45:54 obrien Exp $
15
16machine		"i386"
17cpu		"I386_CPU"
18cpu		"I486_CPU"
19cpu		"I586_CPU"
20cpu		"I686_CPU"
21ident		GENERIC
22maxusers	32
23
24options		MATH_EMULATE		#Support for x87 emulation
25options		INET			#InterNETworking
26options		FFS			#Berkeley Fast Filesystem
27options		FFS_ROOT		#FFS usable as root device [keep this!]
28options		NFS			#Network Filesystem
29options		NFS_ROOT		#NFS usable as root device, "NFS" req'ed
30options		MSDOSFS			#MSDOS Filesystem
31options		CD9660			#ISO 9660 Filesystem
32options		CD9660_ROOT		#CD-ROM usable as root device, "CD9660" req'ed
33options		PROCFS			#Process filesystem
34options		"COMPAT_43"		#Compatible with BSD 4.3 [KEEP THIS!]
35options		SCSI_DELAY=15000	#Be pessimistic about Joe SCSI device
36options		UCONSOLE		#Allow users to grab the console
37options		FAILSAFE		#Be conservative
38options		USERCONFIG		#boot -c editor
39options		VISUAL_USERCONFIG	#visual boot -c editor
40
41config		kernel	root on wd0
42
43controller	isa0
44controller	eisa0
45controller	pci0
46
47controller	fdc0	at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
48disk		fd0	at fdc0 drive 0
49disk		fd1	at fdc0 drive 1
50# Unless you know very well what you're doing, leave ft0 at drive 2, or
51# remove the line entirely if you don't need it.  Trying to configure
52# it on another unit might cause surprises, see PR kern/7176.
53tape		ft0	at fdc0 drive 2
54
55options		"CMD640"	# work around CMD640 chip deficiency
56controller	wdc0	at isa? port "IO_WD1" bio irq 14 vector wdintr
57disk		wd0	at wdc0 drive 0
58disk		wd1	at wdc0 drive 1
59
60controller	wdc1	at isa? port "IO_WD2" bio irq 15 vector wdintr
61disk		wd2	at wdc1 drive 0
62disk		wd3	at wdc1 drive 1
63
64options		ATAPI		#Enable ATAPI support for IDE bus
65options		ATAPI_STATIC	#Don't do it as an LKM
66device		wcd0		#IDE CD-ROM
67device		wfd0		#IDE Floppy (e.g. LS-120)
68
69# A single entry for any of these controllers (ncr, ahb, ahc, amd) is
70# sufficient for any number of installed devices.
71controller	ncr0
72#controller	amd0
73controller	ahb0
74controller	ahc0
75controller	isp0
76
77# This controller offers a number of configuration options, too many to
78# document here  - see the LINT file in this directory and look up the
79# dpt0 entry there for much fuller documentation on this.
80controller      dpt0
81
82controller	adv0	at isa? port ? cam irq ?
83controller	adw0
84controller	bt0	at isa? port ? cam irq ?
85controller	aha0	at isa? port ? cam irq ?
86#controller	uha0	at isa? port "IO_UHA0" bio irq ? drq 5 vector uhaintr
87#controller	aic0	at isa? port 0x340 bio irq 11 vector aicintr
88#controller	nca0	at isa? port 0x1f88 bio irq 10 vector ncaintr
89#controller	nca1	at isa? port 0x350 bio irq 5 vector ncaintr
90#controller	sea0	at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector seaintr
91
92controller	scbus0
93
94device		da0
95
96device		sa0
97
98device		pass0
99
100device		cd0	#Only need one of these, the code dynamically grows
101
102device		wt0	at isa? port 0x300 bio irq 5 drq 1 vector wtintr
103device		mcd0	at isa? port 0x300 bio irq 10 vector mcdintr
104
105controller	matcd0	at isa? port 0x230 bio
106
107device		scd0	at isa? port 0x230 bio
108
109# syscons is the default console driver, resembling an SCO console
110device		sc0	at isa? port "IO_KBD" conflicts tty irq 1 vector scintr
111# Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver
112#device		vt0	at isa? port "IO_KBD" conflicts tty irq 1 vector pcrint
113#options		XSERVER			# support for X server
114#options		FAT_CURSOR		# start with block cursor
115# If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines
116#options		PCVT_SCANSET=2		# IBM keyboards are non-std
117
118device		npx0	at isa? port "IO_NPX" irq 13 vector npxintr
119
120#
121# Laptop support (see LINT for more options)
122#
123device		apm0    at isa?	disable	flags 0x31 # Advanced Power Management
124
125# PCCARD (PCMCIA) support
126#controller	card0
127#device		pcic0	at card?
128#device		pcic1	at card?
129
130device		sio0	at isa? port "IO_COM1" flags 0x10 tty irq 4 vector siointr
131device		sio1	at isa? port "IO_COM2" tty irq 3 vector siointr
132device		sio2	at isa? disable port "IO_COM3" tty irq 5 vector siointr
133device		sio3	at isa? disable port "IO_COM4" tty irq 9 vector siointr
134
135device		lpt0	at isa? port? tty irq 7 vector lptintr
136
137device		psm0	at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr
138
139# Order is important here due to intrusive probes, do *not* alphabetize
140# this list of network interfaces until the probes have been fixed.
141# Right now it appears that the ie0 must be probed before ep0. See
142# revision 1.20 of this file.
143device de0
144device fxp0
145device tl0
146device tx0
147device vx0
148device xl0
149
150device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000 vector edintr
151device ie0 at isa? port 0x300 net irq 10 iomem 0xd0000 vector ieintr
152device ep0 at isa? port 0x300 net irq 10 vector epintr
153device ex0 at isa? port? net irq? vector exintr
154device fe0 at isa? port 0x300 net irq ? vector feintr
155device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector le_intr
156device lnc0 at isa? port 0x280 net irq 10 drq 0 vector lncintr
157device ze0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zeintr
158device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zpintr
159device cs0 at isa? port 0x300 net irq ? vector csintr
160
161pseudo-device	loop
162pseudo-device	ether
163pseudo-device	sl	1
164pseudo-device	ppp	1
165pseudo-device	tun	1
166pseudo-device	pty	16
167pseudo-device	gzip		# Exec gzipped a.out's
168
169# KTRACE enables the system-call tracing facility ktrace(2).
170# This adds 4 KB bloat to your kernel, and slightly increases
171# the costs of each syscall.
172options		KTRACE		#kernel tracing
173
174# This provides support for System V shared memory.
175#
176options		SYSVSHM
177