INSTALL revision 1.56.2.6 1 1.56.2.6 nathanw # $NetBSD: INSTALL,v 1.56.2.6 2002/06/20 03:37:35 nathanw Exp $
2 1.56.2.2 nathanw #
3 1.56.2.2 nathanw # Alpha INSTALL kernel.
4 1.56.2.2 nathanw
5 1.56.2.2 nathanw include "arch/alpha/conf/std.alpha"
6 1.56.2.2 nathanw
7 1.56.2.6 nathanw #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
8 1.56.2.6 nathanw
9 1.56.2.2 nathanw makeoptions COPTS="-Os" # Optimise for space. Implies -O2
10 1.56.2.2 nathanw
11 1.56.2.2 nathanw maxusers 8
12 1.56.2.2 nathanw
13 1.56.2.2 nathanw options DDB
14 1.56.2.2 nathanw #makeoptions DEBUG="-g"
15 1.56.2.2 nathanw
16 1.56.2.2 nathanw # Enable the hooks used for initializing the ram-disk.
17 1.56.2.2 nathanw options MEMORY_DISK_HOOKS
18 1.56.2.2 nathanw options MEMORY_DISK_IS_ROOT # Force root on ram-disk
19 1.56.2.5 nathanw options MEMORY_DISK_ROOT_SIZE=9300 # 4 Megabytes
20 1.56.2.2 nathanw
21 1.56.2.2 nathanw # CPU Support
22 1.56.2.2 nathanw options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150)
23 1.56.2.2 nathanw options DEC_2100_A50 # Avanti etc: AlphaStation 400, 200, etc.
24 1.56.2.2 nathanw options DEC_2100_A500 # Sable: AlphaServer 2100
25 1.56.2.2 nathanw options DEC_2100A_A500 # Lynx: AlphaServer 2100A
26 1.56.2.2 nathanw options DEC_3000_500 # Flamingo etc: 3000/[4-9]00*
27 1.56.2.2 nathanw options DEC_3000_300 # Pelican etc: 3000/300*
28 1.56.2.2 nathanw options DEC_AXPPCI_33 # NoName: AXPpci33, Multia, etc.
29 1.56.2.2 nathanw options DEC_EB164 # EB164: AlphaPC 164
30 1.56.2.2 nathanw options DEC_EB64PLUS # EB64+: AlphaPC 64, etc.
31 1.56.2.2 nathanw options DEC_KN20AA # KN20AA: AlphaStation 500 and 600
32 1.56.2.2 nathanw options DEC_KN8AE # KN8AE: AlphaServer 8200 and 8400
33 1.56.2.2 nathanw options DEC_KN300 # KN300: AlphaServer 4100 and 1200
34 1.56.2.2 nathanw options DEC_550 # Miata: Digital Personal Workstation
35 1.56.2.2 nathanw options DEC_1000 # Mikasa etc: Digital AlphaServer 1000
36 1.56.2.2 nathanw options DEC_1000A # Corelle etc: Digital AlphaServer 800/1000A
37 1.56.2.2 nathanw options DEC_ALPHABOOK1 # AlphaBook1: Tadpole/DEC AlphaBook
38 1.56.2.2 nathanw options DEC_EB66 # EB66: 21066 Evaluation Board
39 1.56.2.2 nathanw options DEC_6600 # EV6: 264DP OEM Board
40 1.56.2.2 nathanw options API_UP1000 # EV6: Alpha Processor, Inc. UP1000
41 1.56.2.2 nathanw
42 1.56.2.2 nathanw # File systems
43 1.56.2.2 nathanw file-system FFS # Fast file system
44 1.56.2.2 nathanw file-system CD9660 # ISO-9660 CD-ROM FS (w/RockRidge extensions)
45 1.56.2.2 nathanw file-system MSDOSFS # MS-DOS-compatible file system
46 1.56.2.2 nathanw file-system NFS # Sun NFS-compatible file system client
47 1.56.2.2 nathanw file-system KERNFS # Kernel variable file system (/kern)
48 1.56.2.2 nathanw
49 1.56.2.2 nathanw # Filesystem options
50 1.56.2.2 nathanw #options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
51 1.56.2.2 nathanw #options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
52 1.56.2.2 nathanw
53 1.56.2.2 nathanw # Networking options
54 1.56.2.2 nathanw options INET # Internet protocol suite
55 1.56.2.2 nathanw
56 1.56.2.2 nathanw # 4.3BSD compatibility. Should be optional, but necessary for now.
57 1.56.2.2 nathanw options COMPAT_43
58 1.56.2.2 nathanw
59 1.56.2.2 nathanw # Binary compatibility with previous versions of NetBSD.
60 1.56.2.2 nathanw #options COMPAT_09
61 1.56.2.2 nathanw options COMPAT_10
62 1.56.2.2 nathanw options COMPAT_11
63 1.56.2.2 nathanw options COMPAT_12
64 1.56.2.2 nathanw options COMPAT_13
65 1.56.2.2 nathanw options COMPAT_14
66 1.56.2.2 nathanw
67 1.56.2.2 nathanw # Misc. options
68 1.56.2.2 nathanw #options EISAVERBOSE # recognize "unknown" EISA devices
69 1.56.2.2 nathanw #options PCIVERBOSE # recognize "unknown" PCI devices
70 1.56.2.2 nathanw #options MIIVERBOSE # verbose PHY autoconfig messages
71 1.56.2.2 nathanw #options PCI_CONFIG_DUMP # verbosely dump PCI config space
72 1.56.2.2 nathanw #options SCSIVERBOSE # Verbose SCSI errors
73 1.56.2.2 nathanw #options TCVERBOSE # recognize "unknown" TC devices
74 1.56.2.2 nathanw options UCONSOLE # users can use TIOCCONS (for xconsole)
75 1.56.2.2 nathanw options INSECURE # disable `kernel security level'
76 1.56.2.5 nathanw #options USERCONF # userconf(4) support
77 1.56.2.3 nathanw options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
78 1.56.2.2 nathanw
79 1.56.2.2 nathanw # The Alpha console firmware network boots using the BOOTP
80 1.56.2.2 nathanw # protocol, so we ask the NFS code to use BOOTP/DHCP as well,
81 1.56.2.2 nathanw # in case we have NFS root.
82 1.56.2.2 nathanw options NFS_BOOT_DHCP # superset of BOOTP
83 1.56.2.2 nathanw
84 1.56.2.2 nathanw # WS console uses SUN or VT100 terminal emulation
85 1.56.2.2 nathanw options WSEMUL_VT100
86 1.56.2.2 nathanw
87 1.56.2.2 nathanw config netbsd root on ? type ?
88 1.56.2.2 nathanw
89 1.56.2.2 nathanw mainbus0 at root
90 1.56.2.2 nathanw cpu* at mainbus0
91 1.56.2.2 nathanw
92 1.56.2.2 nathanw # TurboLaser bus support and devices
93 1.56.2.2 nathanw tlsb* at mainbus0
94 1.56.2.2 nathanw gbus* at tlsb? node ? offset ?
95 1.56.2.2 nathanw tlsbmem* at tlsb? node ? offset ?
96 1.56.2.2 nathanw kft* at tlsb? node ? offset ?
97 1.56.2.2 nathanw
98 1.56.2.2 nathanw # Gbus Devices
99 1.56.2.2 nathanw mcclock* at gbus? offset ?
100 1.56.2.2 nathanw
101 1.56.2.2 nathanw # MCBUS bus support
102 1.56.2.2 nathanw mcbus* at mainbus0
103 1.56.2.2 nathanw mcmem* at mcbus? mid ?
104 1.56.2.2 nathanw
105 1.56.2.2 nathanw #EV6 Tsunami Core Logic
106 1.56.2.2 nathanw
107 1.56.2.2 nathanw tsc* at mainbus0
108 1.56.2.2 nathanw
109 1.56.2.2 nathanw # DECpc AXP150 (Jensen) internal bus support
110 1.56.2.2 nathanw jensenio* at mainbus0
111 1.56.2.2 nathanw
112 1.56.2.2 nathanw com* at jensenio? port ?
113 1.56.2.2 nathanw lpt* at jensenio? port ?
114 1.56.2.2 nathanw mcclock* at jensenio? port ?
115 1.56.2.2 nathanw pckbc* at jensenio? port ?
116 1.56.2.2 nathanw
117 1.56.2.2 nathanw # TurboChannel host bus adapter support
118 1.56.2.2 nathanw tcasic* at mainbus0
119 1.56.2.2 nathanw
120 1.56.2.2 nathanw # TurboChannel bus support
121 1.56.2.2 nathanw tc* at tcasic?
122 1.56.2.2 nathanw
123 1.56.2.2 nathanw # TurboChannel devices
124 1.56.2.2 nathanw ioasic* at tc? slot ? offset ?
125 1.56.2.2 nathanw mcclock* at ioasic? offset ?
126 1.56.2.2 nathanw le* at ioasic? offset ?
127 1.56.2.2 nathanw scc0 at ioasic? offset ?
128 1.56.2.2 nathanw scc1 at ioasic? offset ?
129 1.56.2.2 nathanw tcds* at tc? slot ? offset ?
130 1.56.2.2 nathanw asc* at tcds? chip ?
131 1.56.2.2 nathanw le* at tc? slot ? offset ?
132 1.56.2.2 nathanw fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards
133 1.56.2.2 nathanw
134 1.56.2.2 nathanw # PCI host bus adapter support
135 1.56.2.2 nathanw apecs* at mainbus?
136 1.56.2.2 nathanw cia* at mainbus?
137 1.56.2.2 nathanw irongate* at mainbus?
138 1.56.2.2 nathanw lca* at mainbus?
139 1.56.2.2 nathanw dwlpx* at kft?
140 1.56.2.2 nathanw mcpcia* at mcbus? mid ?
141 1.56.2.2 nathanw tsp* at tsc?
142 1.56.2.2 nathanw ttwoga* at mainbus?
143 1.56.2.2 nathanw
144 1.56.2.2 nathanw # Sable PCI and STDIO bus and devices
145 1.56.2.2 nathanw ttwopci* at ttwoga? hose ?
146 1.56.2.2 nathanw sableio* at ttwopci? bus ?
147 1.56.2.2 nathanw com* at sableio? port ?
148 1.56.2.2 nathanw lpt* at sableio? port ?
149 1.56.2.2 nathanw pckbc* at sableio? port ?
150 1.56.2.2 nathanw fdc* at sableio? port ?
151 1.56.2.2 nathanw
152 1.56.2.2 nathanw # PCI bus support
153 1.56.2.2 nathanw pci* at apecs?
154 1.56.2.2 nathanw pci* at cia?
155 1.56.2.2 nathanw pci* at irongate?
156 1.56.2.2 nathanw pci* at lca?
157 1.56.2.2 nathanw pci* at ppb?
158 1.56.2.2 nathanw pci* at dwlpx?
159 1.56.2.2 nathanw pci* at mcpcia?
160 1.56.2.2 nathanw pci* at tsp?
161 1.56.2.2 nathanw pci* at ttwopci?
162 1.56.2.2 nathanw
163 1.56.2.2 nathanw # PCI devices
164 1.56.2.2 nathanw adv* at pci? dev ? function ? # AdvanSys SCSI
165 1.56.2.2 nathanw adw* at pci? dev ? function ? # AdvanSys Wide SCSI
166 1.56.2.2 nathanw #options ADW_WDTR_DISABLE # disable WDTR
167 1.56.2.2 nathanw #options ADW_SDTR_DISABLE # disable SDTR
168 1.56.2.2 nathanw #options ADW_TAGQ_DISABLE # disable Tag Queuing
169 1.56.2.2 nathanw ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
170 1.56.2.2 nathanw bha* at pci? dev ? function ? # BusLogic 9xx SCSI (untested)
171 1.56.2.2 nathanw cac* at pci? dev ? function ? # Compaq array controller (untested)
172 1.56.2.2 nathanw dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
173 1.56.2.2 nathanw en* at pci? dev ? function ? # ENI PCI ATM (untested)
174 1.56.2.2 nathanw ep* at pci? dev ? function ? # 3COM 3c59x/3c90x Ethernet
175 1.56.2.2 nathanw epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
176 1.56.2.2 nathanw ex* at pci? dev ? function ? # 3COM 3c90x[BC] Ethernet
177 1.56.2.2 nathanw fpa* at pci? dev ? function ? # DEC DEFPA FDDI
178 1.56.2.2 nathanw fxp* at pci? dev ? function ? # Intel EEPRO 10+/100B
179 1.56.2.2 nathanw gsip* at pci? dev ? function ? # NS DP83820 Gigabit Ethernet
180 1.56.2.2 nathanw iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
181 1.56.2.2 nathanw isp* at pci? dev ? function ? # Qlogic ISP 10x0 SCSI
182 1.56.2.2 nathanw le* at pci? dev ? function ? # PCI LANCE Ethernet (untested)
183 1.56.2.2 nathanw sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet
184 1.56.2.2 nathanw siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
185 1.56.2.2 nathanw mlx* at pci? dev ? function ? # Mylex DAC960 / DEC SWXCR (untested)
186 1.56.2.2 nathanw ne* at pci? dev ? function ? # NE2000-compatible Ethernet
187 1.56.2.2 nathanw pceb* at pci? dev ? function ? # Intel PCI-EISA Bridges
188 1.56.2.2 nathanw pciide* at pci? dev ? function ? # PCI IDE controllers
189 1.56.2.2 nathanw pcscp* at pci? dev ? function ? # AMD Am53c974 PCscsi-PCI
190 1.56.2.2 nathanw ppb* at pci? dev ? function ? # PCI-PCI Bridges
191 1.56.2.2 nathanw rtk* at pci? dev ? function ? # RealTek 8129/8139 Ethernet
192 1.56.2.2 nathanw sio* at pci? dev ? function ? # Intel PCI-ISA Bridges
193 1.56.2.2 nathanw sip* at pci? dev ? function ? # SiS 900 Ethernet
194 1.56.2.2 nathanw tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics
195 1.56.2.2 nathanw tl* at pci? dev ? function ? # TI ThunderLAN Ethernet
196 1.56.2.2 nathanw tlp* at pci? dev ? function ? # DECchip 21x4x and clones
197 1.56.2.2 nathanw vga* at pci? dev ? function ? # PCI VGA Graphics
198 1.56.2.2 nathanw vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
199 1.56.2.2 nathanw
200 1.56.2.2 nathanw # MII/PHY support
201 1.56.2.2 nathanw exphy* at mii? phy ? # 3Com internal PHYs
202 1.56.2.3 nathanw icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
203 1.56.2.2 nathanw inphy* at mii? phy ? # Intel 82555 PHYs
204 1.56.2.2 nathanw lxtphy* at mii? phy ? # Level One LXT-970 PHYs
205 1.56.2.2 nathanw gphyter* at mii? phy ? # NS83861 Gig-E PHY
206 1.56.2.2 nathanw nsphy* at mii? phy ? # NS83840 PHYs
207 1.56.2.2 nathanw nsphyter* at mii? phy ? # NS83843 PHYs
208 1.56.2.2 nathanw qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
209 1.56.2.2 nathanw sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
210 1.56.2.2 nathanw tlphy* at mii? phy ? # ThunderLAN PHYs
211 1.56.2.2 nathanw ukphy* at mii? phy ? # generic unknown PHYs
212 1.56.2.2 nathanw
213 1.56.2.2 nathanw # ISA/EISA bus support
214 1.56.2.2 nathanw isa* at jensenio?
215 1.56.2.2 nathanw eisa* at jensenio?
216 1.56.2.2 nathanw isa* at pceb?
217 1.56.2.2 nathanw eisa* at pceb?
218 1.56.2.2 nathanw isa* at sio?
219 1.56.2.2 nathanw
220 1.56.2.2 nathanw # ISA devices
221 1.56.2.2 nathanw mcclock* at isa? port 0x70
222 1.56.2.2 nathanw pckbc* at isa? # PC keyboard controller
223 1.56.2.2 nathanw pckbd* at pckbc? # PC keyboard (kbd port)
224 1.56.2.2 nathanw pms* at pckbc? # PS/2-style mouse (aux port)
225 1.56.2.2 nathanw com* at isa? port 0x3f8 irq 4 # standard serial ports
226 1.56.2.2 nathanw com* at isa? port 0x2f8 irq 3
227 1.56.2.2 nathanw ep* at isa? port ? irq ? # 3COM 3c509 Ethernet
228 1.56.2.2 nathanw fdc0 at isa? port 0x3f0 irq 6 drq 2 # floppy controller
229 1.56.2.2 nathanw lc* at isa? port ? iomem ? irq ? # DEC EtherWORKS III (LEMAC)
230 1.56.2.2 nathanw #le* at isa? port 0x320 irq 10 drq 7 # IsoLan, NE2100, DEPCA (unt.)
231 1.56.2.2 nathanw we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet
232 1.56.2.2 nathanw we1 at isa? port 0x300 iomem 0xcc000 irq 10
233 1.56.2.2 nathanw lpt* at isa? port 0x3bc irq 7 # standard parallel port
234 1.56.2.2 nathanw vga* at isa? # ISA (EISA: XXX) VGA
235 1.56.2.2 nathanw wdc0 at isa? port 0x1f0 irq 14 # ST506/ESDI/IDE controllers
236 1.56.2.2 nathanw wdc1 at isa? port 0x170 irq 15
237 1.56.2.2 nathanw
238 1.56.2.2 nathanw # EISA devices
239 1.56.2.2 nathanw ahb* at eisa? slot ? # Adaptec 174[024] SCSI (unt.)
240 1.56.2.2 nathanw ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
241 1.56.2.2 nathanw bha* at eisa? slot ? # BusLogic 7xx SCSI
242 1.56.2.2 nathanw ep* at eisa? slot ? # 3COM 3c579 Ethernet (untested)
243 1.56.2.2 nathanw fea* at eisa? slot ? # DEC DEFEA FDDI
244 1.56.2.2 nathanw mlx* at eisa? slot ? # Mylex DAC960 / DEC SWXCR (untested)
245 1.56.2.2 nathanw tlp* at eisa? slot ? # DEC DE-425 Ethernet
246 1.56.2.2 nathanw depca* at eisa? slot ? # DEC DE-422 Ethernet
247 1.56.2.2 nathanw le* at depca?
248 1.56.2.2 nathanw uha* at eisa? slot ? # UltraStor 24f SCSI (unt.)
249 1.56.2.2 nathanw
250 1.56.2.2 nathanw # SCSI bus support
251 1.56.2.2 nathanw scsibus* at adv?
252 1.56.2.2 nathanw #scsibus* at aic?
253 1.56.2.2 nathanw scsibus* at adw?
254 1.56.2.2 nathanw #scsibus* at aha?
255 1.56.2.2 nathanw scsibus* at ahb?
256 1.56.2.2 nathanw scsibus* at ahc?
257 1.56.2.2 nathanw scsibus* at asc?
258 1.56.2.2 nathanw scsibus* at bha?
259 1.56.2.2 nathanw scsibus* at dpt?
260 1.56.2.2 nathanw scsibus* at iha?
261 1.56.2.2 nathanw scsibus* at isp?
262 1.56.2.2 nathanw scsibus* at siop?
263 1.56.2.2 nathanw scsibus* at pcscp?
264 1.56.2.2 nathanw scsibus* at uha?
265 1.56.2.2 nathanw
266 1.56.2.2 nathanw # SCSI devices
267 1.56.2.2 nathanw cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
268 1.56.2.2 nathanw sd* at scsibus? target ? lun ? # SCSI disk drives
269 1.56.2.2 nathanw st* at scsibus? target ? lun ? # SCSI tape drives
270 1.56.2.2 nathanw
271 1.56.2.2 nathanw # ST506/ESDI/IDE devices
272 1.56.2.2 nathanw wd* at pciide? channel ?
273 1.56.2.2 nathanw wd* at wdc? drive ?
274 1.56.2.2 nathanw
275 1.56.2.2 nathanw # ATAPI bus support
276 1.56.2.2 nathanw atapibus* at pciide? channel ?
277 1.56.2.2 nathanw atapibus* at wdc?
278 1.56.2.2 nathanw
279 1.56.2.2 nathanw # ATAPI devices
280 1.56.2.2 nathanw sd* at atapibus? drive ? # ATAPI disk devices
281 1.56.2.2 nathanw cd* at atapibus? drive ? # ATAPI CD-ROM devices
282 1.56.2.2 nathanw
283 1.56.2.2 nathanw # Floppy drives
284 1.56.2.2 nathanw fd* at fdc? drive ?
285 1.56.2.2 nathanw
286 1.56.2.2 nathanw # Hardware RAID devices
287 1.56.2.2 nathanw ld* at cac? unit ?
288 1.56.2.2 nathanw ld* at mlx? unit ?
289 1.56.2.2 nathanw
290 1.56.2.2 nathanw # Workstation Console attachments
291 1.56.2.2 nathanw wsdisplay* at vga?
292 1.56.2.2 nathanw wsdisplay* at tga?
293 1.56.2.2 nathanw wskbd* at pckbd?
294 1.56.2.2 nathanw wsmouse* at pms?
295 1.56.2.2 nathanw
296 1.56.2.2 nathanw pseudo-device loop 1
297 1.56.2.2 nathanw pseudo-device md 1
298 1.56.2.2 nathanw pseudo-device ppp 1
299 1.56.2.2 nathanw pseudo-device pty 2 # pseudo-terminals (Sysinst needs two)
300 1.56.2.2 nathanw pseudo-device sl 1
301