INSTALL revision 1.4.8.3 1 1.4.8.3 nathanw # $NetBSD: INSTALL,v 1.4.8.3 2002/02/28 04:12:20 nathanw Exp $
2 1.4.8.2 nathanw
3 1.4.8.2 nathanw # INSTALL Sun2 (2/120, 2/170, 2/50, ...)
4 1.4.8.2 nathanw
5 1.4.8.2 nathanw include "arch/sun2/conf/std.sun2"
6 1.4.8.2 nathanw
7 1.4.8.3 nathanw #ident "INSTALL-$Revision: 1.4.8.3 $"
8 1.4.8.2 nathanw
9 1.4.8.2 nathanw # Machines to be supported by this kernel
10 1.4.8.2 nathanw #options FPU_EMULATE
11 1.4.8.2 nathanw
12 1.4.8.2 nathanw # Needs to be set per system. i.e change these as you see fit
13 1.4.8.2 nathanw maxusers 2
14 1.4.8.2 nathanw
15 1.4.8.2 nathanw # Standard system options
16 1.4.8.2 nathanw #options KTRACE # system call tracing
17 1.4.8.2 nathanw #options SYSVMSG # System V message queues
18 1.4.8.2 nathanw #options SYSVSEM # System V semaphores
19 1.4.8.2 nathanw #options SYSVSHM # System V shared memory
20 1.4.8.2 nathanw #options SHMMAXPGS=1024 # 1024 pages is the default
21 1.4.8.2 nathanw #options LKM # loadable kernel modules
22 1.4.8.2 nathanw #options INSECURE # disable kernel security level
23 1.4.8.2 nathanw #options UCONSOLE # Allow non-root TIOCCONS
24 1.4.8.3 nathanw options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
25 1.4.8.2 nathanw
26 1.4.8.2 nathanw # Which kernel debugger? Uncomment either this:
27 1.4.8.2 nathanw #options DDB
28 1.4.8.2 nathanw # ... or these for KGDB (gdb remote target)
29 1.4.8.2 nathanw #makeoptions DEBUG="-g" # debugging symbols for gdb
30 1.4.8.2 nathanw #options KGDB
31 1.4.8.2 nathanw #options KGDB_DEV=0x0C00 # ttya=0C00 ttyb=0C01
32 1.4.8.2 nathanw
33 1.4.8.2 nathanw # Other debugging options
34 1.4.8.2 nathanw #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
35 1.4.8.2 nathanw #options DEBUG # kernel debugging code
36 1.4.8.2 nathanw #options DIAGNOSTIC # extra kernel sanity checking
37 1.4.8.2 nathanw #options KMEMSTATS # kernel memory statistics (vmstat -m)
38 1.4.8.2 nathanw #options PMAP_DEBUG
39 1.4.8.2 nathanw #options SCSIDEBUG
40 1.4.8.2 nathanw #options SCSIVERBOSE # Verbose SCSI errors
41 1.4.8.2 nathanw
42 1.4.8.2 nathanw # Compatibility options
43 1.4.8.2 nathanw #options COMPAT_SUNOS # can run SunOS 4.1.1 executables
44 1.4.8.2 nathanw #options COMPAT_43 # and 4.3BSD and ...
45 1.4.8.2 nathanw #options COMPAT_AOUT_M68K # support for NetBSD a.out executables
46 1.4.8.2 nathanw #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
47 1.4.8.2 nathanw options EXEC_AOUT # support for a.out executables
48 1.4.8.2 nathanw
49 1.4.8.2 nathanw # Filesystem options
50 1.4.8.2 nathanw file-system FFS # Berkeley Fast Filesystem
51 1.4.8.2 nathanw file-system NFS # Sun NFS client support
52 1.4.8.2 nathanw file-system CD9660 # ISO 9660 + Rock Ridge file system
53 1.4.8.2 nathanw #file-system FDESC # /dev/fd/*
54 1.4.8.2 nathanw file-system KERNFS # /kern
55 1.4.8.2 nathanw #file-system NULLFS # loopback file system
56 1.4.8.2 nathanw #file-system OVERLAY # overlay file system
57 1.4.8.2 nathanw #file-system PROCFS # /proc
58 1.4.8.2 nathanw #file-system UNION # union file system
59 1.4.8.2 nathanw #file-system MFS # memory-based filesystem
60 1.4.8.2 nathanw
61 1.4.8.2 nathanw #options NFSSERVER # nfs server support
62 1.4.8.2 nathanw #options QUOTA # FFS quotas
63 1.4.8.2 nathanw #options FFS_EI # FFS Endian Independant support
64 1.4.8.2 nathanw #options SOFTDEP # FFS soft updates support.
65 1.4.8.2 nathanw #options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
66 1.4.8.2 nathanw options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
67 1.4.8.2 nathanw
68 1.4.8.2 nathanw # Networking options
69 1.4.8.2 nathanw options INET # IP prototol stack support
70 1.4.8.2 nathanw #options INET6 # IPV6
71 1.4.8.2 nathanw #options IPSEC # IP security
72 1.4.8.2 nathanw #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
73 1.4.8.2 nathanw #options IPSEC_DEBUG # debug for IP security
74 1.4.8.2 nathanw #options GATEWAY # IP packet forwarding
75 1.4.8.2 nathanw #options ISO,TPIP # OSI networking
76 1.4.8.2 nathanw #options EON # OSI tunneling over IP
77 1.4.8.2 nathanw #options CCITT,LLC,HDLC # X.25
78 1.4.8.2 nathanw #options PFIL_HOOKS # pfil(9) packet filter hooks.
79 1.4.8.2 nathanw #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
80 1.4.8.2 nathanw
81 1.4.8.2 nathanw # Work-around for root on slow servers (insurance...)
82 1.4.8.2 nathanw options NFS_BOOT_RWSIZE=1024
83 1.4.8.2 nathanw options NFS_BOOT_BOOTPARAM
84 1.4.8.2 nathanw
85 1.4.8.2 nathanw config netbsd root on ? type ?
86 1.4.8.2 nathanw
87 1.4.8.2 nathanw #### Main bus.
88 1.4.8.2 nathanw mainbus0 at root
89 1.4.8.2 nathanw
90 1.4.8.2 nathanw #### Bus types.
91 1.4.8.2 nathanw
92 1.4.8.2 nathanw obio0 at mainbus? # all Sun-2
93 1.4.8.2 nathanw obmem0 at mainbus? # all Sun-2
94 1.4.8.2 nathanw mbmem0 at mainbus? # 2/120, 2/170
95 1.4.8.2 nathanw mbio0 at mainbus? # 2/120, 2/170
96 1.4.8.2 nathanw sun68kvme0 at mainbus? # 2/50, 2/130, 2/160
97 1.4.8.2 nathanw vme0 at sun68kvme0 # mi VME attachment
98 1.4.8.2 nathanw
99 1.4.8.2 nathanw #### Standard system devices.
100 1.4.8.2 nathanw
101 1.4.8.2 nathanw ## The AM9513 clock chip.
102 1.4.8.2 nathanw clock0 at obio0 addr 0x002800 # 2/120, 2/170
103 1.4.8.2 nathanw clock0 at obio0 addr 0x7f2800 # 2/50, 2/130, 2/160
104 1.4.8.2 nathanw
105 1.4.8.2 nathanw ## The MM58167 time-of-day chip.
106 1.4.8.2 nathanw tod0 at obio0 addr 0x003800 # 2/120, 2/170
107 1.4.8.2 nathanw tod0 at vme0 addr 0x200800 # 2/50, 2/130, 2/160
108 1.4.8.2 nathanw
109 1.4.8.2 nathanw #### Serial port configuration.
110 1.4.8.2 nathanw
111 1.4.8.2 nathanw ## Zilog 8530 serial chips. Each has two channels.
112 1.4.8.2 nathanw ## zs0 is ttya and ttyb. zs1 is the keyboard and mouse.
113 1.4.8.2 nathanw ## zs0 is REQUIRED to use KGDB.
114 1.4.8.2 nathanw zs0 at obio0 addr 0x002000 # 2/120, 2/170
115 1.4.8.2 nathanw zs0 at obio0 addr 0x7f2000 # 2/50
116 1.4.8.2 nathanw zs1 at obmem0 addr 0x780000 # 2/120, 2/170
117 1.4.8.2 nathanw zs1 at obio0 addr 0x7f1800 # 2/50
118 1.4.8.2 nathanw #zs2 at mbmem0 addr 0x080800 # 2/120, 2/170 (first sc SCSI)
119 1.4.8.2 nathanw #zs3 at mbmem0 addr 0x081000 # 2/120, 2/170 (first sc SCSI)
120 1.4.8.2 nathanw #zs4 at mbmem0 addr 0x084800 # 2/120, 2/170 (second sc SCSI)
121 1.4.8.2 nathanw #zs5 at mbmem0 addr 0x085000 # 2/120, 2/170 (second sc SCSI)
122 1.4.8.2 nathanw zstty* at zs? channel ? # ttya
123 1.4.8.2 nathanw kbd0 at zstty? # keyboard
124 1.4.8.2 nathanw #ms0 at zstty? # mouse
125 1.4.8.2 nathanw
126 1.4.8.2 nathanw #### Disk controllers and disks.
127 1.4.8.2 nathanw
128 1.4.8.2 nathanw ## PAL+logic-based "Sun SCSI 2" Multibus/VME SCSI controller.
129 1.4.8.2 nathanw ## This driver has several flags which may be enabled using
130 1.4.8.2 nathanw ## the "flags" directive. Valid flags are:
131 1.4.8.2 nathanw ##
132 1.4.8.2 nathanw ## 0x0ff Set (1<<target) to disable parity checking
133 1.4.8.2 nathanw ## 0x100 Set this bit to disable DMA interrupts (poll)
134 1.4.8.2 nathanw ## 0x200 Set this bit to disable DMA entirely (use PIO)
135 1.4.8.2 nathanw ##
136 1.4.8.2 nathanw ## For example: "flags 0x10f" would disable DMA interrupts,
137 1.4.8.2 nathanw ## and disable parity for targets 0-3
138 1.4.8.2 nathanw
139 1.4.8.2 nathanw sc0 at mbmem0 addr 0x80000 ipl 2 flags 0xff
140 1.4.8.2 nathanw sc0 at vme0 addr 0x200000 irq 2 vect 0x40 flags 0xff
141 1.4.8.2 nathanw sc1 at mbmem0 addr 0x84000 ipl 2 flags 0xff
142 1.4.8.2 nathanw
143 1.4.8.2 nathanw ## NCR5380-based "Sun SCSI 3" VME SCSI controller.
144 1.4.8.2 nathanw ## This driver has several flags which may be enabled by OR'ing
145 1.4.8.2 nathanw ## the values and using the "flags" directive.
146 1.4.8.2 nathanw ## Valid flags are:
147 1.4.8.2 nathanw ##
148 1.4.8.2 nathanw ## 0x01 Use DMA (may be polled)
149 1.4.8.2 nathanw ## 0x02 Use DMA completion interrupts
150 1.4.8.2 nathanw ## 0x04 Allow disconnect/reselect
151 1.4.8.2 nathanw ##
152 1.4.8.2 nathanw ## E.g. the following would enable DMA, interrupts, and reselect:
153 1.4.8.2 nathanw ## si0 at vme0 addr 0x200000 ipl 3 vect 0x40 flags 0x07
154 1.4.8.2 nathanw ##
155 1.4.8.2 nathanw ## By default, DMA is enabled in the driver.
156 1.4.8.2 nathanw
157 1.4.8.2 nathanw si0 at vme0 addr 0x200000 irq 2 vect 0x40
158 1.4.8.2 nathanw
159 1.4.8.2 nathanw ## These entries find devices on all SCSI busses and assign
160 1.4.8.2 nathanw ## unit numbers dynamically.
161 1.4.8.2 nathanw scsibus* at sc?
162 1.4.8.2 nathanw scsibus* at si?
163 1.4.8.2 nathanw sd* at scsibus? target ? lun ? # SCSI disks
164 1.4.8.2 nathanw st* at scsibus? target ? lun ? # SCSI tapes
165 1.4.8.2 nathanw cd* at scsibus? target ? lun ? # SCSI CD-ROMs
166 1.4.8.2 nathanw #ch* at scsibus? target ? lun ? # SCSI changer devices
167 1.4.8.2 nathanw #ss* at scsibus? target ? lun ? # SCSI scanners
168 1.4.8.2 nathanw #ses* at scsibus? target ? lun ? # SCSI SES/SAF-TE
169 1.4.8.2 nathanw #uk* at scsibus? target ? lun ? # unknown SCSI
170 1.4.8.2 nathanw
171 1.4.8.2 nathanw # support old SCSI devices that don't understand the INQUIRY command
172 1.4.8.2 nathanw options SCSI_OLD_NOINQUIRY
173 1.4.8.2 nathanw
174 1.4.8.2 nathanw ## Xylogics 450 or 451 Multibus/VME SMD disk controllers and disks.
175 1.4.8.2 nathanw #xyc0 at mbio0 addr 0xee40 ipl 2
176 1.4.8.2 nathanw xyc0 at vme0 addr 0xee40 irq 2 vect 0x48
177 1.4.8.2 nathanw #xyc1 at mbio0 addr 0xee48 ipl 2
178 1.4.8.2 nathanw xyc1 at vme0 addr 0xee48 irq 2 vect 0x49
179 1.4.8.2 nathanw xy* at xyc? drive ?
180 1.4.8.2 nathanw
181 1.4.8.2 nathanw ## Memory-disk device.
182 1.4.8.2 nathanw #pseudo-device md 2
183 1.4.8.2 nathanw
184 1.4.8.2 nathanw #### Network interfaces.
185 1.4.8.2 nathanw
186 1.4.8.2 nathanw ## Intel Ethernet (onboard, or Multibus/VME)
187 1.4.8.2 nathanw ie0 at obio0 addr 0x7f0800 ipl 3 # 2/50
188 1.4.8.2 nathanw ie0 at mbmem0 addr 0x88000 ipl 3
189 1.4.8.2 nathanw ie1 at mbmem0 addr 0x8c000 ipl 3
190 1.4.8.2 nathanw ## VME: the first [addr,len] pair specifies the device registers;
191 1.4.8.2 nathanw ## the second pair specifies the on-board memory buffer
192 1.4.8.2 nathanw ie1 at vme0 addr 0xe88000,0xe00000 len -1,0x40000 irq 3 vect 0x75
193 1.4.8.2 nathanw
194 1.4.8.2 nathanw ## 3Com Ethernet (Multibus only)
195 1.4.8.2 nathanw ec0 at mbmem0 addr 0xe0000 ipl 3
196 1.4.8.2 nathanw ec1 at mbmem0 addr 0xe2000 ipl 3
197 1.4.8.2 nathanw
198 1.4.8.2 nathanw ## Frame buffers.
199 1.4.8.2 nathanw
200 1.4.8.2 nathanw ## Sun "bwtwo" black and white framebuffer.
201 1.4.8.2 nathanw bwtwo0 at obmem0 addr 0x700000 # 2/120, 2/170
202 1.4.8.2 nathanw bwtwo0 at obio0 addr 0x0 # 2/50
203 1.4.8.2 nathanw
204 1.4.8.2 nathanw ## PROM console driver -- if all else fails
205 1.4.8.2 nathanw pcons0 at mainbus0 # PROM console
206 1.4.8.2 nathanw
207 1.4.8.2 nathanw #### Miscellaneous.
208 1.4.8.2 nathanw pseudo-device loop 1 # network loopback
209 1.4.8.2 nathanw #pseudo-device bpfilter 8 # packet filter
210 1.4.8.2 nathanw #pseudo-device sl 2 # CSLIP
211 1.4.8.2 nathanw #pseudo-device ppp 2 # PPP
212 1.4.8.2 nathanw #pseudo-device tun 2 # network tunneling over tty
213 1.4.8.2 nathanw #pseudo-device gre 2 # generic L3 over IP tunnel
214 1.4.8.2 nathanw #pseudo-device ipfilter # ip filter
215 1.4.8.2 nathanw #pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
216 1.4.8.2 nathanw #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
217 1.4.8.2 nathanw #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
218 1.4.8.2 nathanw # rnd is EXPERIMENTAL
219 1.4.8.2 nathanw #pseudo-device rnd # /dev/random and in-kernel generator
220 1.4.8.2 nathanw
221 1.4.8.2 nathanw pseudo-device pty 4 # pseudo-terminals
222 1.4.8.2 nathanw #pseudo-device vnd 4 # paging to files
223 1.4.8.2 nathanw #pseudo-device ccd 4 # concatenated disks
224 1.4.8.2 nathanw #pseudo-device raid 4 # RAIDframe disk driver
225 1.4.8.2 nathanw #options RAID_AUTOCONFIG # auto-configuration of RAID components
226