INSTALL revision 1.47
1#	$NetBSD: INSTALL,v 1.47 1997/08/28 08:00:15 mikel Exp $
2#
3#	INSTALL -- an installation kernel config.
4#	This kernel should be derived from GENERIC with ramdisk
5#	support added and some features commented out.
6#
7#	Install kernels no longer support X, soundcards, or non-NetBSD
8#	emulation.
9
10include "arch/i386/conf/std.i386"
11
12options 	I386_CPU	# CPU classes; at least one is REQUIRED
13options 	I486_CPU
14options 	I586_CPU
15options 	I686_CPU
16options 	MATH_EMULATE	# floating point emulation
17#options 	VM86		# Virtual 8086 emulation
18
19# Some BIOSes don't get the size of extended memory right.  If you
20# have a broken BIOS, uncomment the following and set the value
21# properly for your system.
22#options 	BIOSEXTMEM=...	# size of extended memory
23
24#options 	DUMMY_NOPS	# speed hack; recommended
25#options 	XSERVER,UCONSOLE
26#options 	INSECURE	# insecure; allow /dev/mem writing for X
27
28maxusers	32		# estimated number of users
29options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
30#options 	NTP		# NTP phase/frequency locked loop
31
32# Enable the hooks used for initializing the memory-disk.
33options 	MEMORY_DISK_HOOKS
34options 	MEMORY_DISK_IS_ROOT     # Force root on memory-disk
35options 	MEMORY_DISK_SERVER=0	# No user space hooks
36options 	MINIROOTSIZE=3074
37#options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
38
39#options 	DDB		# in-kernel debugger
40#options 	KGDB		# remote debugger
41#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
42#makeoptions	DEBUG="-g"	# compile full symbol table
43#options 	DIAGNOSTIC	# internal consistency checks
44#options 	KTRACE		# system call tracing via ktrace(1)
45#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
46
47#options 	SYSVMSG		# System V-like message queues
48#options 	SYSVSEM		# System V-like semaphores
49#options 	SYSVSHM		# System V-like memory sharing
50#options 	SHMMAXPGS=1024	# 1024 pages is the default
51
52#options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
53#options 	COMPAT_09	# NetBSD 0.9,
54options 	COMPAT_10	# NetBSD 1.0,
55options 	COMPAT_11	# NetBSD 1.1,
56options 	COMPAT_12	# NetBSD 1.2,
57#options 	COMPAT_43	# and 4.3BSD
58#options 	TCP_COMPAT_42	# TCP bug compatibility with 4.2BSD
59
60#options 	COMPAT_SVR4	# binary compatibility with SVR4
61#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
62#options 	COMPAT_LINUX	# binary compatibility with Linux
63#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
64
65#options 	EXEC_ELF32	# 32-bit ELF executables (SVR4, Linux)
66
67#options 	USER_LDT	# user-settable LDT; used by WINE
68options 	LKM		# loadable kernel modules
69
70file-system 	FFS		# UFS
71#file-system 	EXT2FS		# second extended file system (linux)
72#file-system 	LFS		# log-structured file system
73file-system 	MFS		# memory file system
74file-system 	NFS		# Network File System client
75file-system 	CD9660		# ISO 9660 + Rock Ridge file system
76file-system 	MSDOSFS		# MS-DOS file system
77file-system 	FDESC		# /dev/fd
78file-system 	KERNFS		# /kern
79#file-system 	NULLFS		# loopback file system
80#file-system 	PORTAL		# portal filesystem (still experimental)
81#file-system 	PROCFS		# /proc
82#file-system 	UMAPFS		# NULLFS + uid and gid remapping
83#file-system 	UNION		# union file system
84
85#options 	QUOTA		# UFS quotas
86#options 	NFSSERVER	# Network File System server
87options 	FIFO		# FIFOs; RECOMMENDED
88#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
89				# immutable) behave as system flags.
90
91#options 	GATEWAY		# packet forwarding
92options 	INET		# IP + ICMP + TCP + UDP
93#options 	MROUTING	# IP multicast routing
94#options 	NS		# XNS
95#options 	NSIP		# XNS tunneling over IP
96#options 	ISO,TPIP	# OSI
97#options 	EON		# OSI tunneling over IP
98#options 	CCITT,LLC,HDLC	# X.25
99#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
100
101config		netbsd	root on ? type ?
102#options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
103
104#options 	EISAVERBOSE	# verbose EISA device messages
105#options 	PCIVERBOSE	# verbose PCI device messages
106#options	SCSIVERBOSE	# verbose SCSI error messages
107
108mainbus0 at root
109
110pci0	at mainbus0 bus ?
111eisa0	at mainbus0
112
113ppb*	at pci? dev ? function ?	# PCI-PCI bridges
114pci*	at ppb? bus ?
115pchb*	at pci? dev ? function ?	# PCI-Host bridges
116pci*	at pchb?
117pcib*	at pci? dev ? function ?	# PCI-ISA bridges
118
119isa*	at pcib?			# ISA on PCI-ISA bridge
120isa*	at mainbus0			# all other ISA
121#isapnp0	at isa?				# ISA Plug-and-Play
122
123#apm0	at mainbus0			# Advanced power management
124
125npx0	at isa? port 0xf0 irq 13	# math coprocessor
126
127pc0	at isa? port 0x60 irq 1		# generic PC console device
128#vt0	at isa? port 0x60 irq 1
129
130#options 	COM_HAYESP		# adds Hayes ESP serial board support
131com0	at isa? port 0x3f8 irq 4	# standard PC serial ports
132com1	at isa? port 0x2f8 irq 3
133com2	at isa? port 0x3e8 irq 5
134#com3	at isa? port 0x2e8 irq 9
135#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
136#com*	at ast? slave ?
137#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
138#com*	at boca? slave ?
139#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
140#com*	at rtfps? slave ?
141#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
142#cy*	at pci? dev ? function ?	# Cyclades serial cards
143
144lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
145lpt1	at isa? port 0x278
146lpt2	at isa? port 0x3bc
147
148#lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
149#lms1	at isa? port 0x238 irq 5
150#mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
151#mms1	at isa? port 0x238 irq 5
152#pms0	at pckbd? irq 12		# PS/2 auxiliary port mouse
153
154aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI controllers
155aha1	at isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI controllers
156scsibus* at aha?
157ahb*	at eisa? slot ?			# Adaptec 174[024] SCSI controllers
158scsibus* at ahb?
159ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI controllers
160ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI controllers
161ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI controllers
162scsibus* at ahc?
163aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI controllers
164scsibus* at aic?
165bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI controllers
166bha1	at isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI controllers
167bha*	at eisa? slot ?
168bha*	at pci? dev ? function ?
169scsibus* at bha?
170ncr*	at pci? dev ? function ?	# NCR 538XX SCSI controllers
171scsibus* at ncr?
172sea0	at isa? iomem 0xc8000 irq 5
173scsibus* at sea?
174uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI controllers
175uha1	at isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI controllers
176uha*	at eisa? slot ?			# UltraStor 24f SCSI controllers
177scsibus* at uha?
178# temporarily commented out, pending bus_dma fixes for this driver.
179#wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
180#wds1	at isa? port 0x358 irq 11 drq 5
181#scsibus* at wds?
182isp*	at pci? dev ? function ?	# Qlogic ISP 10x0 SCSI controllers
183scsibus* at isp?
184
185sd*	at scsibus? target ? lun ?	# SCSI disk drives
186st*	at scsibus? target ? lun ?	# SCSI tape drives
187cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
188ch*	at scsibus? target ? lun ?	# SCSI autochangers
189#ss*	at scsibus? target ? lun ?	# SCSI scanners
190#uk*	at scsibus? target ? lun ?	# SCSI unknown
191
192fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
193#fdc1	at isa? port 0x370 irq ? drq ?
194fd*	at fdc? drive ?
195
196#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
197
198wdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
199wdc1	at isa? port 0x170 irq 15
200wd*	at wdc? drive ?
201atapibus* at wdc?
202cd* at atapibus? drive ?
203
204# note: the wt driver conflicts unpleasantly with ed devices at the
205# same I/O address. The probe reprograms their eeproms. Don't
206# uncomment it unless you are actually using it.
207#wt0	at isa? port 0x300 irq 5 drq 1	# Archive and Wangtek QIC tape drives
208
209ed0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC, 3C503, and NE[12]000
210ed1	at isa? port 0x250 iomem 0xd8000 irq 9	#   ethernet cards
211ed2	at isa? port 0x300 iomem 0xcc000 irq 10
212#eg0	at isa? ...				# 3C505 ethernet cards
213el0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
214ep0	at isa? port ? irq ?			# 3C509 ethernet cards
215#ep*	at isapnp?
216ie0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN and 3C507
217ie1	at isa? port 0x300 irq 10		# EtherExpress
218#le0	at isa? port 0x320 irq 10 drq 7		# IsoLan, NE2100, and DEPCA
219lc0	at isa? port ? iomem ? irq ?		# DEC EtherWORKS III (LEMAC)
220ep*	at eisa? slot ?				# 3C579 ethernet cards
221fea*	at eisa? slot ?				# DEC DEFEA FDDI cards
222le*	at pci? dev ? function ?		# PCnet-PCI based ethernet cards
223de*	at pci? dev ? function ?		# DC21X4X-based ethernet cards
224ep*	at pci? dev ? function ?		# 3C59x/3C90x ethernet cards
225fpa*	at pci? dev ? function ?		# DEC DEFPA FDDI cards
226fxp*	at pci? dev ? function ?		# Intel EEPRO 10/100B
227
228#pss0	at isa? port 0x220 irq 7 drq 6  # Personal Sound System
229#sp0	at pss0 port 0x530 irq 10 drq 0	# 	sound port driver
230#audio*	at sp0
231
232#sb0	at isa? port 0x220 irq 7 drq 1	# SoundBlaster
233#sb*	at isapnp?
234#audio*	at sb?
235#wss0	at isa? port 0x530 irq 10 drq 0	# Windows Sound System
236#audio*	at wss0
237#pas0	at isa? port 0x220 irq 7 drq 1	# ProAudio Spectrum
238#audio*	at pas0
239#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound
240#audio*	at gus0
241#spkr0	at pckbd? port 0x61
242
243# Joystick driver. Probe is a little strange; add only if you have one.
244#joy0	at isa? port 0x201
245#joy*	at isapnp?
246
247# Planetconnect Satellite receiver driver.
248#satlink0 at isa? port 0x300 drq 1
249
250include	"arch/i386/conf/GENERIC.local"
251
252# memory-disk (root for install floppy)
253pseudo-device	md	1		# memory-disk
254
255pseudo-device	loop	1		# network loopback
256#pseudo-device	bpfilter 8		# packet filter
257pseudo-device	sl	2		# CSLIP
258#pseudo-device	ppp	2		# PPP
259#pseudo-device	tun	2		# network tunneling over tty
260#pseudo-device	ipfilter		# IP filter
261
262pseudo-device	pty	64		# pseudo-terminals
263#pseudo-device	tb	1		# tablet line discipline
264#pseudo-device	vnd	4		# paging to files
265#pseudo-device	ccd	4		# concatenated disk devices
266