xref: /netbsd/sys/arch/prep/conf/INSTALL (revision bf9ec67e)
1#	$NetBSD: INSTALL,v 1.19 2002/05/02 15:17:57 nonaka Exp $
2#
3#	INSTALL -- Installation kernel
4#
5
6include "arch/prep/conf/std.prep"
7
8#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
9
10makeoptions	COPTS="-Os -mmultiple"	# -Os -mmultiple to reduce size.
11
12# Enable the hooks used for initializing the ram-disk.
13options 	MEMORY_DISK_HOOKS
14options 	MEMORY_DISK_IS_ROOT	# Force root on ram-disk
15options 	MEMORY_DISK_ROOT_SIZE=4096	# 2 Megabytes
16
17maxusers	8
18
19# Platform support
20options 	PLATFORM_IBM_6050		# IBM Personal Power Series 830
21options 	PLATFORM_IBM_7248		# IBM RS/6000 7248-100/120/133
22options 	PLATFORM_MOTOROLA_ULMB60XA	# Motorola ULMB60xA (?)
23
24# Compatibility options
25#options 	COMPAT_13	# NetBSD 1.3,
26options 	COMPAT_14	# NetBSD 1.4,
27options 	COMPAT_43	# and 4.3BSD
28
29# File systems
30file-system 	FFS		# UFS
31file-system	EXT2FS		# second extended file system (linux)
32file-system 	MFS		# memory file system
33file-system 	NFS		# Network File System client
34file-system 	CD9660		# ISO 9660 + Rock Ridge file system
35file-system 	MSDOSFS		# MS-DOS file system
36
37# File system options
38options 	VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
39#options 	FFS_EI		# FFS Endian Independant support
40#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
41 				# immutable) behave as system flags.
42
43#options 	USERCONF	# userconf(4) support
44#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
45
46# Networking options
47options 	INET		# IP + ICMP + TCP + UDP
48options 	NFS_BOOT_BOOTPARAM
49options 	NFS_BOOT_DHCP
50
51#
52# wscons options
53#
54# builtin terminal emulations
55options 	WSEMUL_VT100		# VT100 / VT220 emulation
56# different kernel output - see dev/wscons/wsdisplayvar.h
57options 	WS_KERNEL_FG=WSCOL_GREEN
58#options 	WS_KERNEL_BG=WSCOL_BLACK
59# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
60#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
61# allocate a number of virtual screens at autoconfiguration time
62#options 	WSDISPLAY_DEFAULTSCREENS=4
63# use a large software cursor that doesn't blink
64options 	PCDISPLAY_SOFTCURSOR
65
66# Kernel root file system and dump configuration.
67config	netbsd	root on ? type ?
68
69
70#
71# Device configuration
72#
73
74mainbus0 at root
75cpu0	at mainbus0
76
77
78# Basic Bus Support
79
80# PCI bus support
81pci0	at mainbus0 bus ?
82pci*	at pchb? bus ?
83
84options 	PCI_NETBSD_CONFIGURE
85
86# PCI bridges
87pchb*	at pci? dev ? function ?	# PCI-Host bridges
88pcib*	at pci? dev ? function ?	# PCI-ISA bridges
89
90# ISA bus support
91isa*	at pcib?			# ISA on PCI-ISA bridge
92
93# PCMCIA bus support
94pcmcia* at pcic? controller ? socket ?
95
96# ISA PCMCIA controllers
97pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
98
99#options 	PCIC_ISA_INTR_ALLOC_MASK=0x4a00 # free irq 9,11,14
100#options 	PCIC_ISA_ALLOC_IOBASE=0x0400
101#options 	PCIC_ISA_ALLOC_IOSIZE=0x0100
102
103# ISA Plug-and-Play bus support
104isapnp0 at isa?
105
106# on-board I/O for IBM Personal Power Series 830 IDE controller
107obio0	at mainbus0
108
109
110# Console Devices
111
112# wscons
113pckbc0		at isa?			# pc keyboard controller
114pckbd*		at pckbc?		# PC keyboard
115pms*		at pckbc?		# PS/2 mouse for wsmouse
116vga*		at pci?
117wsdisplay*	at vga? console ?
118wskbd*		at pckbd? console ?
119wsmouse*	at pms? mux 0
120
121pcppi0	at isa?				# PC prog. periph. interface
122isabeep0 at pcppi?			# "keyboard" beep
123
124mcclock0 at isa? port 0x70		# mc146818 and compatible
125
126
127# Serial Devices
128
129# ISA serial interfaces
130com0	at isa? port 0x3f8 irq 4	# standard PC serial ports
131com1	at isa? port 0x2f8 irq 3
132
133# Parallel Printer Interfaces
134
135# ISA parallel printer interfaces
136lpt0	at isa? port 0x3bc irq 7	# standard PC parallel ports
137
138
139# SCSI Controllers and Devices
140
141# PCI SCSI controllers
142adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
143ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
144iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
145pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
146siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
147
148# PCMCIA SCSI controllers
149aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
150
151# SCSI bus support
152scsibus* at adw?
153scsibus* at ahc?
154scsibus* at aic?
155scsibus* at iha?
156scsibus* at pcscp?
157scsibus* at siop?
158
159# SCSI devices
160sd*	at scsibus? target ? lun ?	# SCSI disk drives
161st*	at scsibus? target ? lun ?	# SCSI tape drives
162cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
163
164
165# IDE and related devices
166
167# IBM Personal Power Series 830 IDE controller
168wdc0	at obio? port 0x1f0 irq 13
169wdc1	at obio? port 0x170 irq 13
170
171# ISA Plug-and-Play IDE controllers
172wdc*	at isapnp?
173
174# PCMCIA IDE controllers
175wdc*	at pcmcia? function ?
176
177# IDE drives
178# Flags are used only with controllers that support DMA operations
179# and mode settings (e.g. some pciide controllers)
180# The lowest order four bits (rightmost digit) of the flags define the PIO
181# mode to use, the next set of four bits the DMA mode and the third set the
182# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
183# to use, and the last bit must be 1 for this setting to be used.
184# For DMA and UDMA, 0xf (1111) means 'disable'.
185# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
186# (0xc=1100, 0xa=1010, 0xf=1111)
187# 0x0000 means "use whatever the drive claims to support".
188wd*	at wdc? channel ? drive ? flags 0x0000
189
190# ATAPI bus support
191atapibus* at wdc? channel ?
192
193# ATAPI devices
194# flags have the same meaning as for IDE drives.
195cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
196sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
197
198# Miscellaneous mass storage devices
199
200# ISA floppy
201fdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
202fd*	at fdc? drive ?
203
204# Network Interfaces
205
206# PCI network interfaces
207ep*	at pci? dev ? function ?	# 3Com 3c59x
208ex*	at pci? dev ? function ?	# 3Com 3c90x[BC]
209fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
210ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
211pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
212rtk*	at pci? dev ? function ?	# Realtek 8129/8139
213sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
214tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
215vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
216
217# ISA network interfaces
218ep*	at isa? port ? irq ?		# 3Com 3c509 Ethernet
219
220# ISA Plug-and-Play network intefaces
221ep*	at isapnp?			# 3Com 3c509 Ethernet
222ne*	at isapnp?			# NE2000-compatible Ethernet
223
224# PCMCIA network interfaces
225ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
226ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
227
228# MII/PHY support
229exphy*	at mii? phy ?			# 3Com internal PHYs
230inphy*	at mii? phy ?			# Intel 82555 PHYs
231nsphy*	at mii? phy ?			# NS83840 PHYs
232qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
233sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
234ukphy*	at mii? phy ?			# generic unknown PHYs
235
236
237# Pseudo-Devices
238
239# disk/mass storage pseudo-devices
240pseudo-device	md		1	# memory disk device (ramdisk)
241
242# network pseudo-devices
243pseudo-device	loop			# network loopback
244
245# miscellaneous pseudo-devices
246pseudo-device	pty			# pseudo-terminals
247pseudo-device	rnd			# /dev/random and in-kernel generator
248#options 	RND_COM			# use "com" randomness as well
249