ALL revision 1.27
1#
2#	ALL -- everything that's currently supported
3#
4#	$Id: ALL,v 1.27 1993/09/14 20:01:19 brezak Exp $
5#
6
7# architecture type and name of kernel; REQUIRED
8machine		"i386"
9ident		ALL
10
11# different CPU types; you must have at least the correct one; REQUIRED
12cpu		"I386_CPU"
13cpu		"I486_CPU"
14
15# floating point emulation
16options		MATH_EMULATE
17
18# make the kernel a little faster; will break on some machines
19#options		DUMMY_NOPS
20
21# temporary kluge while adding support for non-contiguous physical memory
22options		MACHINE_NONCONTIG
23
24# time zone RTC is expected to be set in; REQUIRED
25timezone	8 dst
26
27# estimated number of users; affects maximum number of file descriptors
28maxusers	32
29
30# paging of processes, and caching vnodes and devices; REQUIRED
31options		SWAPPAGER
32options		VNODEPAGER,DEVPAGER
33
34# system call tracing, a la ktrace(1)
35options		KTRACE
36
37# FIFOs; RECOMMENDED
38options		FIFO
39
40# System V-like memory sharing; BROKEN
41#options		SYSVSHM
42#options		SHMMAXPGS=1024
43
44# process accounting
45options		ACCOUNTING
46
47# generic SCSI system
48options		SCSI
49
50# quotas in UFS
51options		QUOTA
52
53# memory file system (shares memory and swap space)
54options		MFS
55
56# Sun's Network File System
57options		NFSSERVER
58options		NFSCLIENT
59
60# ISO 9660 file system, with Rock Ridge
61options		ISOFS
62
63# MS-DOS file system
64options		MSDOSFS
65
66# /dev/fd
67options		FDESC
68
69# kernel file system; RECOMMENDED
70options		KERNFS
71
72# various types of networks and protocols
73#options		IMP	 
74options		INET
75options		NS
76options		ISO
77options		TPIP
78options		EON
79options		CCITT
80
81# packet forwarding
82options		GATEWAY
83
84# kernel debugger
85options		DDB
86
87options		"COMPAT_NOMID"
88options		"COMPAT_43"
89options		"TCP_COMPAT_42"
90
91config		netbsd	root on wd0 swap on wd0 and sd0
92
93#buses
94controller	isa0
95
96#console
97device		pc0	at isa? port "IO_KBD" tty irq 1 vector pcrint
98
99#math co-processor
100device		npx0	at isa? port "IO_NPX" irq 13 vector npxintr
101
102#serial ports
103device		com0	at isa? port "IO_COM1" tty irq 4 vector comintr
104device		com1	at isa? port "IO_COM2" tty irq 3 vector comintr
105#device		com2	at isa? port "IO_COM3" tty irq 5 vector comintr
106#device		com3	at isa? port "IO_COM4" tty irq 9 vector comintr
107
108#parallel ports
109device		lpt0	at isa? port "IO_LPT1" tty irq 7 vector lptintr
110device		lpa0	at isa? port "IO_LPT2" tty
111device		lpa1	at isa? port "IO_LPT3" tty
112
113#bus mice
114# Microft InPort
115device		mms0	at isa? port "IO_BMS1" tty irq 5 vector mmsintr
116# Logitech
117device		lms0	at isa? port "IO_BMS1" tty irq 5 vector lmsintr
118# PS/2 auxiliary port; BROKEN
119#device		pms0	at isa? port "IO_KBD" tty irq 5 vector pmsintr
120
121#non-scsi disk controllers
122controller	wdc0	at isa? port "IO_WD1" bio irq 14 vector wdintr
123disk		wd0	at wdc0 drive 0
124disk		wd1	at wdc0 drive 1
125
126#non-scsi floppy controllers
127controller	fdc0	at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
128disk		fd0	at fdc0 drive 0
129disk		fd1	at fdc0 drive 1
130
131#non-scsi tape drives
132device		wt0	at isa? port 0x300 bio irq 5 drq 1 vector wtintr
133
134#scsi
135controller	aha0	at isa? port "IO_AHA0" bio irq 11 drq 5 vector ahaintr
136device		sd0	at aha0 flags 0 drive ?
137device		sd1	at aha0 flags 0 drive ?
138device		sd2	at aha0 flags 0 drive ?
139device		sd3	at aha0 flags 0 drive ?
140device		st0	at aha0 flags 1 drive ?
141device		st1	at aha0 flags 1 drive ?
142device		cd0	at aha0 flags 2 drive ?
143device		cd1	at aha0 flags 2 drive ?
144device	        ch0	at aha0 flags 3 drive ?
145device	        ch1	at aha0 flags 3 drive ?
146
147controller	ahb0	at isa? bio irq 11 drq 5 vector ahbintr
148device		sd0	at ahb0 flags 0 drive ?
149device		sd1	at ahb0 flags 0 drive ?
150device		sd2	at ahb0 flags 0 drive ?
151device		sd3	at ahb0 flags 0 drive ?
152device		st0	at ahb0 flags 1 drive ?
153device		st1	at ahb0 flags 1 drive ?
154device		cd0	at ahb0 flags 2 drive ?
155device		cd1	at ahb0 flags 2 drive ?
156device	        ch0	at ahb0 flags 3 drive ?
157device	        ch1	at ahb0 flags 3 drive ?
158
159controller	bt0	at isa? port "IO_BT0" bio irq 11  vector btintr
160device		sd0	at bt0 flags 0 drive ?
161device		sd1	at bt0 flags 0 drive ?
162device		sd2	at bt0 flags 0 drive ?
163device		sd3	at bt0 flags 0 drive ?
164device		st0	at bt0 flags 1 drive ?
165device		st1	at bt0 flags 1 drive ?
166device		cd0	at bt0 flags 2 drive ?
167device		cd1	at bt0 flags 2 drive ?
168device	        ch0	at bt0 flags 3 drive ?
169device	        ch1	at bt0 flags 3 drive ?
170
171controller	uha0	at isa? port "IO_UHA0" bio irq 11 drq 5 vector uhaintr
172device		sd0	at uha0 flags 0 drive ?
173device		sd1	at uha0 flags 0 drive ?
174device		sd2	at uha0 flags 0 drive ?
175device		sd3	at uha0 flags 0 drive ?
176device		st0	at uha0 flags 1 drive ?
177device		st1	at uha0 flags 1 drive ?
178device		cd0	at uha0 flags 2 drive ?
179device		cd1	at uha0 flags 2 drive ?
180device	        ch0	at uha0 flags 3 drive ?
181device	        ch1	at uha0 flags 3 drive ?
182
183#ethernet
184device ne0 at isa? port 0x300 net irq 9 vector neintr
185device ed0 at isa? port 0x300 net irq 10 iomem 0xcc000 vector edintr
186#device we0 at isa? port 0x300 net irq 10 iomem 0xd0000 iosiz 8192 vector weintr
187device ed1 at isa? port 0x250 net irq 9 iomem 0xd8000 vector edintr
188#device ec0 at isa? port 0x250 net irq 9 iomem 0xd8000 iosiz 8192 vector ecintr
189device hp0 at isa? port 0x300 net irq 5 vector hpintr
190device is0 at isa? port 0x280 net irq 10 drq 7 vector isintr
191
192# psuedo-terminals; REQUIRED for remote logins and many other things
193pseudo-device pty	64
194
195# loopback; RECOMMENDED
196pseudo-device loop
197
198# ethernet; REQUIRED if using any ethernet device
199pseudo-device ether #XXX
200
201# used by kernel for logging messages; gateway to syslogd
202pseudo-device log
203
204# packet filter
205pseudo-device bpfilter	4
206
207# compressed SLIP
208pseudo-device sl
209
210# point-to-point protocol
211pseudo-device ppp
212
213# speaker queue
214pseudo-device speaker
215
216#pseudo-device tb	2	was never ported to 4.4
217#pseudo-device tun	missing header files
218