INSTALL revision 1.35 1 # $NetBSD: INSTALL,v 1.35 2003/12/13 23:13:41 thorpej Exp $
2 #
3 # CATSINST -- CHALTECH CATS Install kernel
4 #
5
6 include "arch/cats/conf/std.cats"
7
8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9
10 # estimated number of users
11
12 maxusers 8
13
14 # Standard system options
15
16 options INSECURE # disable kernel securelevel
17
18 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
19 #options NTP # NTP phase/frequency locked loop
20
21 # CPU options
22
23 # For StrongARM systems
24 options CPU_SA110 # Support the SA110 core
25 makeoptions COPTS="-Os -march=armv4 -mtune=strongarm" # optimise for space
26
27 # FPA options
28
29 #options ARMFPE # ARM Ltd FPE
30
31 # File systems
32
33 file-system FFS # UFS
34 #file-system LFS # log-structured file system
35 file-system MFS # memory file system
36 file-system NFS # Network file system
37 #file-system ADOSFS # AmigaDOS-compatible file system
38 #file-system EXT2FS # second extended file system (linux)
39 file-system CD9660 # ISO 9660 + Rock Ridge file system
40 file-system MSDOSFS # MS-DOS file system
41 #file-system FDESC # /dev/fd
42 file-system KERNFS # /kern
43 #file-system NULLFS # loopback file system
44 #file-system OVERLAY # overlay filesystem
45 #file-system PORTAL # portal filesystem (still experimental)
46 #file-system PROCFS # /proc
47 #file-system UMAPFS # NULLFS + uid and gid remapping
48 #file-system UNION # union file system
49 #file-system CODA # Coda File System; also needs vcode (below)
50
51 # File system options
52 #options QUOTA # UFS quotas
53 #options FFS_EI # FFS Endian Independant support
54 #options NFSSERVER
55 #options SOFTDEP # FFS soft updates support
56 options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
57
58 # Networking options
59
60 #options GATEWAY # packet forwarding
61 options INET # IP + ICMP + TCP + UDP
62 #options INET6 # IPV6
63 #options IPSEC # IP security
64 #options IPSEC_ESP # IP security (encryption part; define w/ IPSEC)
65 #options IPSEC_DEBUG # debug for IP security
66 #options MROUTING # IP multicast routing
67 #options NS # XNS
68 #options NSIP # XNS tunneling over IP
69 #options ISO,TPIP # OSI
70 #options EON # OSI tunneling over IP
71 #options CCITT,LLC,HDLC # X.25
72 #options NETATALK # AppleTalk networking
73 #options PFIL_HOOKS # pfil(9) packet filter hooks
74 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
75 #options PPP_DEFLATE # Deflate compression support for PPP
76 #options PPP_FILTER # Active filter support for PPP (requires bpf)
77 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
78
79 options NFS_BOOT_BOOTP
80 options NFS_BOOT_DHCP
81 #options NFS_BOOT_BOOTPARAM
82
83 # Compatibility options
84
85 #options COMPAT_43 # 4.3BSD compatibility.
86 options COMPAT_16 # NetBSD 1.6 compatibility.
87 options COMPAT_14 # NetBSD 1.4 compatibility.
88 options COMPAT_13 # NetBSD 1.3 compatibility.
89 #options COMPAT_12 # NetBSD 1.2 compatibility.
90 #options COMPAT_11 # NetBSD 1.1 compatibility.
91 #options COMPAT_10 # NetBSD 1.0 compatibility.
92 #options COMPAT_09 # NetBSD 0.9 compatibility.
93 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
94
95 # Shared memory options
96
97 #options SYSVMSG # System V-like message queues
98 #options SYSVSEM # System V-like semaphores
99 #options SYSVSHM # System V-like memory sharing
100 #options SHMMAXPGS=1024 # 1024 pages is the default
101
102 # Device options
103
104 options MEMORY_DISK_HOOKS # boottime setup of ramdisk
105 options MEMORY_DISK_ROOT_SIZE=4200 # Size in blocks
106 options MEMORY_DISK_IS_ROOT # use memory disk as root
107 options MEMORY_DISK_SERVER=0 # no userspace memory disk support
108
109 # Miscellaneous kernel options
110 #options KTRACE # system call tracing, a la ktrace(1)
111 #options IRQSTATS # manage IRQ statistics
112 #options LKM # loadable kernel modules
113 #options KMEMSTATS # kernel memory statistics
114 #options SCSIVERBOSE # Verbose SCSI errors
115 #options PCIVERBOSE # Verbose PCI descriptions
116 #options MIIVERBOSE # verbose PHY autoconfig messages
117 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
118 #options USBVERBOSE # verbose USB device autoconfig messages
119 #options DDB_KEYCODE=0x40
120 options PMAP_STATIC_L1S=128
121 options USERCONF # userconf(4) support
122 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
123 options MALLOC_NOINLINE # Not inlining MALLOC saves memory
124
125 # wscons options
126 #options WSEMUL_SUN # sun terminal emulation
127 options WSEMUL_VT100 # VT100 / VT220 emulation
128 # different kernel output - see dev/wscons/wsdisplayvar.h
129 options WS_KERNEL_FG=WSCOL_GREEN
130 options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
131 options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
132 options WSDISPLAY_COMPAT_USL # VT handling
133 options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
134 # see dev/wscons/wskbdmap_mfii.h for implemented layouts
135 #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
136
137 # Development and Debugging options
138
139 #options ARM700BUGTRACK # track the ARM700 swi bug
140 #options PORTMASTER # Enable PortMaster only options
141 #options DIAGNOSTIC # internally consistency checks
142 #options PMAP_DEBUG # Enable pmap_debug_level code
143 #options IPKDB # remote kernel debugging
144 options DDB # in-kernel debugger
145 options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
146 #makeoptions DEBUG="-g" # compile full symbol table
147
148 config netbsd root on ? type ?
149
150 # The main bus device
151 mainbus0 at root
152
153 # The boot cpu
154 cpu0 at mainbus?
155
156 # Core logic
157 footbridge0 at mainbus?
158
159 # footbridge uart
160 fcom0 at footbridge?
161
162 # system clock via footbridge
163 #clock* at footbridge?
164
165 # time-of-day device via footbridge or RTC
166 todclock0 at todservice?
167
168 # PCI bus support
169 # PCI bus via footbridge
170 pci0 at footbridge? # PCI bus
171
172 pci* at ppb? bus ?
173
174 # PCI bridges
175 ppb* at pci? dev ? function ? # PCI-PCI bridges
176 # XXX 'puc's aren't really bridges, but there's no better place for them here
177 #puc* at pci? dev ? function ? # PCI "universal" comm. cards
178
179 # PCI serial interfaces
180 #com* at puc? port ? # 16x50s on "universal" comm boards
181 #cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
182
183 # PCI parallel printer interfaces
184 #lpt* at puc? port ? # || ports on "universal" comm boards
185
186 # PCI SCSI Controllers and Buses
187 adv* at pci? dev ? function ? # AdvanSys 1200[A,B], ULTRA SCSI
188 scsibus* at adv?
189 #adw* at pci? dev ? function ? # AdvanSys 9xxUW SCSI
190 #scsibus* at adw?
191 ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI controllers
192 scsibus* at ahc?
193 #bha* at pci? dev ? function ? # BusLogic 9xx SCSI
194 #scsibus* at bha?
195 iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
196 scsibus* at iha?
197 isp* at pci? dev ? function ? # Qlogic ISP 10x0 SCSI controllers
198 scsibus* at isp?
199 pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
200 scsibus* at pcscp?
201 siop* at pci? dev ? function ? # NCR 53c8xx SCSI
202 scsibus* at siop?
203
204 # SCSI devices
205 sd* at scsibus? target ? lun ? # SCSI disk drives
206 st* at scsibus? target ? lun ? # SCSI tape drives
207 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
208 #ch* at scsibus? target ? lun ? # SCSI auto-changers
209 #uk* at scsibus? target ? lun ? # SCSI unknown device
210 #ss* at scsibus? target ? lun ? # SCSI scanner
211
212 # PCI IDE Controllers and Devices
213 # PCI IDE controllers - see pciide(4) for supported hardware.
214 # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
215 # how to set up DMA modes for this chip. This may work, or may cause
216 # a machine hang with some controllers.
217 pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
218 acardide* at pci? dev ? function ? # Acard IDE controllers
219 aceride* at pci? dev ? function ? # Acer Lab IDE controllers
220 cmdide* at pci? dev ? function ? # CMD tech IDE controllers
221 cypide* at pci? dev ? function ? # Cypress IDE controllers
222 hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
223 optiide* at pci? dev ? function ? # Opti IDE controllers
224 piixide* at pci? dev ? function ? # Intel IDE controllers
225 pdcide* at pci? dev ? function ? # Promise IDE controllers
226 satalink* at pci? dev ? function ? # SiI SATALink controllers
227 siside* at pci? dev ? function ? # SiS IDE controllers
228 slide* at pci? dev ? function ? # Symphony Labs IDE controllers
229 viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
230
231 # ATA (IDE) bus support
232 atabus* at ata?
233
234 # IDE drives
235 # Flags are used only with controllers that support DMA operations
236 # and mode settings (e.g. some pciide controllers)
237 # The lowest order four bits (rightmost digit) of the flags define the PIO
238 # mode to use, the next set of four bits the DMA mode and the third set the
239 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
240 # to use, and the last bit must be 1 for this setting to be used.
241 # For DMA and UDMA, 0xf (1111) means 'disable'.
242 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
243 # (0xc=1100, 0xa=1010, 0xf=1111)
244 # 0x0000 means "use whatever the drive claims to support".
245 wd* at atabus? drive ? flags 0x0000 # the drives themselves
246
247 # ATAPI bus support
248 atapibus* at atapi?
249
250 # ATAPI devices
251 cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
252 sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
253 #uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
254
255 # PCI network interfaces
256 #en* at pci? dev ? function ? # ENI/Adaptec ATM
257 ep* at pci? dev ? function ? # 3C590 ethernet cards
258 ex* at pci? dev ? function ? # 3Com 90x[B]
259 epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
260 #esh* at pci? dev ? function ? # Essential HIPPI card
261 #fpa* at pci? dev ? function ? # DEC DEFPA FDDI
262 fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
263 #le* at pci? dev ? function ? # PCnet-PCI Ethernet
264 ne* at pci? dev ? function ? # NE2000 compat ethernet
265 #ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial
266 sip* at pci? dev ? function ? # SiS 900 Ethernet
267 #tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
268 #de* at pci? dev ? function ? # DECchip 21x4x and clones
269 tlp* at pci? dev ? function ? # DECchip 21x4x and clones
270 vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
271 #lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3
272 rtk* at pci? dev ? function ? # Realtek 8129/8139
273
274 # MII/PHY support
275 exphy* at mii? phy ? # 3Com internal PHYs
276 #icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
277 inphy* at mii? phy ? # Intel 82555 PHYs
278 #iophy* at mii? phy ? # Intel 82553 PHYs
279 #lxtphy* at mii? phy ? # Level One LXT-970 PHYs
280 nsphy* at mii? phy ? # NS83840 PHYs
281 #nsphyter* at mii? phy ? # NS83843 PHYs
282 qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
283 #sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
284 #tlphy* at mii? phy ? # ThunderLAN PHYs
285 #tqphy* at mii? phy ? # TDK Semiconductor PHYs
286 ukphy* at mii? phy ? # generic unknown PHYs
287
288 # USB Controller and Devices
289
290 # PCI USB controllers
291 #uhci* at pci? # Universal Host Controller (Intel)
292 #ohci* at pci? # Open Host Controller
293
294 # USB bus support
295 #usb* at uhci?
296 #usb* at ohci?
297
298 # USB Hubs
299 #uhub* at usb?
300 #uhub* at uhub? port ? configuration ? interface ?
301
302 # USB HID device
303 #uhidev* at uhub? port ? configuration ? interface ?
304
305 # USB Mice
306 #ums* at uhidev? reportid ?
307 #wsmouse* at ums?
308
309 # USB Keyboards
310 #ukbd* at uhidev? reportid ?
311 #wskbd* at ukbd? console ?
312
313 # USB Generic HID devices
314 #uhid* at uhidev? reportid ?
315
316 # USB Printer
317 #ulpt* at uhub? port ? configuration ? interface ?
318
319 # USB Modem
320 #umodem* at uhub? port ? configuration ?
321 #ucom* at umodem?
322
323 # USB Mass Storage
324 #umass* at uhub? port ? configuration ? interface ?
325 #atapibus* at umass?
326 #scsibus* at umass? channel ?
327
328 # USB audio
329 #uaudio* at uhub? port ? configuration ?
330 #audio* at uaudio?
331
332 # USB Ethernet adapters
333 #aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
334 #cue* at uhub? port ? # CATC USB-EL1201A based adapters
335 #kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
336 #uax* at uhub? port ? # ASIX AX88172 based adapters
337 #url* at uhub? port ? # Realtek RTL8150L based adapters
338
339 # USB Generic driver
340 #ugen* at uhub? port ?
341
342 # Audio Devices
343
344 # PCI audio devices
345 #eap* at pci? dev ? function ? # Ensoniq AudioPCI
346 #sv* at pci? dev ? function ? # S3 SonicVibes
347
348 # Audio support
349 #audio* at eap?
350 #audio* at sv?
351
352 vga* at pci?
353 wsdisplay* at vga? console ?
354
355 # ISA bus bridging
356
357 pcib* at pci? dev ? function ? # PCI-ISA bridge
358 isa* at pcib? # ISA bus
359
360 # ISA Plug-and-Play bus support
361 isapnp0 at isa?
362
363 # wscons
364 pckbc0 at isa? # pc keyboard controller
365 pckbd* at pckbc? # PC keyboard
366 pms* at pckbc? # PS/2 mouse for wsmouse
367 wskbd* at pckbd? console ?
368 wsmouse* at pms?
369
370 pcppi0 at isa?
371 sysbeep0 at pcppi?
372
373 # ISA Plug-and-Play serial interfaces
374 com* at isapnp? # Modems and serial boards
375
376 # ISA Plug-and-Play network interfaces
377 ep* at isapnp? # 3Com 3c509 Ethernet
378 fmv* at isapnp? # Fujitsu FMV-183
379 ne* at isapnp? # NE2000 compat
380
381 # ISA serial interfaces
382 com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports
383 com1 at isa? port 0x2f8 irq 3
384 #com2 at isa? port 0x3e8 irq 9
385 #com3 at isa? port 0x2e8 irq 10
386
387 # ISA parallel printer interfaces
388 lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
389 lpt1 at isa? port 0x278 irq 5
390 #lpt2 at isa? port 0x3bc
391
392 # ISA floppy
393 #fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers
394 #fdc1 at isa? port 0x370 irq ? drq ?
395 #fd* at fdc? drive ? # the drives themselves
396
397 # ISA network interface
398 #ne0 at isa? port 0x280 irq 9
399 #ne1 at isa? port 0x300 irq 10
400 #ep* at isa? port ? irq ?
401
402 # The spkr driver provides a simple tone interface to the built in speaker.
403 #spkr0 at pcppi? # PC speaker
404
405 ds1687rtc0 at isa? port 0x72 # Dallas RTC
406
407 # ISA Plug-and-Play audio devices
408 #ess* at isapnp? # ESS Tech ES1887, ES1888, ES888 audio
409 #sb* at isapnp? # SoundBlaster-compatible audio
410 #wss* at isapnp? # Windows Sound System
411
412 # OPL[23] FM syntheziers
413 #opl* at ess?
414 #opl* at sb?
415
416 # Audio support
417 #audio* at ess?
418 #audio* at sb?
419 #audio* at wss?
420
421 # MPU 401 UARTs
422 #mpu* at sb?
423
424 # MIDI support
425 #midi* at pcppi? # MIDI interface to the PC speaker
426 #midi* at sb? # SB MPU401 port
427 #midi* at opl? # OPL FM synth
428 #midi* at mpu? # MPU 401
429
430 # Joysticks
431
432 # ISA Plug-and-Play joysticks
433 #joy* at isapnp? # Game ports (usually on audio cards)
434
435 # ISA joysticks. Probe is a little strange; add only if you have one.
436 #joy0 at isa? port 0x201
437
438 # Pseudo-Devices
439
440 # disk/mass storage pseudo-devices
441 pseudo-device ccd 2 # concatenated/striped disk devices
442 pseudo-device md 1 # memory disk device (ramdisk)
443 #pseudo-device vnd 4 # disk-like interface to files
444
445 # network pseudo-devices
446 pseudo-device bpfilter 4 # Berkeley packet filter
447 #pseudo-device ipfilter # IP filter (firewall) and NAT
448 pseudo-device loop # network loopback
449 #pseudo-device ppp 2 # Point-to-Point Protocol
450 #pseudo-device sl 2 # Serial Line IP
451 #pseudo-device strip 2 # Starmode Radio IP (Metricom)
452 #pseudo-device tun 2 # network tunneling over tty
453
454 # miscellaneous pseudo-devices
455 pseudo-device pty # pseudo-terminals
456 #pseudo-device tb 1 # tablet line discipline
457 #pseudo-device sequencer 1 # MIDI sequencer
458 pseudo-device rnd # /dev/random and in-kernel generator
459 #options RND_COM # use "com" randomness as well (BROKEN)
460 #pseudo-device vcoda 4 # coda minicache <-> venus comm.
461
462 # mouse & keyboard multiplexor pseudo-devices
463 pseudo-device wsmux
464 pseudo-device wsfont
465
466 # for IPv6
467 #pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
468 #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
469