INSTALL revision 1.12.8.2 1 1.12.8.2 nathanw # $NetBSD: INSTALL,v 1.12.8.2 2002/01/08 00:28:16 nathanw Exp $
2 1.12.8.2 nathanw #
3 1.12.8.2 nathanw # INSTALL - Installation kernel for the Sun3
4 1.12.8.2 nathanw #
5 1.12.8.2 nathanw # This kernel is derived from GENERIC with some features commented out.
6 1.12.8.2 nathanw #
7 1.12.8.2 nathanw # This kernel does NOT support X, mice, non-NetBSD emulation, etc.
8 1.12.8.2 nathanw #
9 1.12.8.2 nathanw
10 1.12.8.2 nathanw include "arch/sun3/conf/std.sun3"
11 1.12.8.2 nathanw
12 1.12.8.2 nathanw makeoptions COPTS="-Os" # Optimise for space. Implies -O2
13 1.12.8.2 nathanw
14 1.12.8.2 nathanw # Machines to be supported by this kernel
15 1.12.8.2 nathanw options FPU_EMULATE
16 1.12.8.2 nathanw options HAVECACHE # Sun3/260 VAC
17 1.12.8.2 nathanw
18 1.12.8.2 nathanw # Needs to be set per system. i.e change these as you see fit
19 1.12.8.2 nathanw maxusers 2
20 1.12.8.2 nathanw
21 1.12.8.2 nathanw # Standard system options
22 1.12.8.2 nathanw #options KTRACE # system call tracing
23 1.12.8.2 nathanw #options SYSVMSG # System V message queues
24 1.12.8.2 nathanw #options SYSVSEM # System V semaphores
25 1.12.8.2 nathanw #options SYSVSHM # System V shared memory
26 1.12.8.2 nathanw #options SHMMAXPGS=1024 # 1024 pages is the default
27 1.12.8.2 nathanw #options LKM # loadable kernel modules
28 1.12.8.2 nathanw #options INSECURE # disable kernel security level
29 1.12.8.2 nathanw #options UCONSOLE # Allow non-root TIOCCONS
30 1.12.8.2 nathanw
31 1.12.8.2 nathanw # Which kernel debugger? Uncomment either this:
32 1.12.8.2 nathanw #options DDB
33 1.12.8.2 nathanw # ... or these for KGDB (gdb remote target)
34 1.12.8.2 nathanw #makeoptions DEBUG="-g" # debugging symbols for gdb
35 1.12.8.2 nathanw #options KGDB
36 1.12.8.2 nathanw #options KGDB_DEV=0x0C01 # ttya=0C00 ttyb=0C01
37 1.12.8.2 nathanw
38 1.12.8.2 nathanw # Other debugging options
39 1.12.8.2 nathanw #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
40 1.12.8.2 nathanw #options DEBUG # kernel debugging code
41 1.12.8.2 nathanw #options DIAGNOSTIC # extra kernel sanity checking
42 1.12.8.2 nathanw #options KMEMSTATS # kernel memory statistics (vmstat -m)
43 1.12.8.2 nathanw #options PMAP_DEBUG
44 1.12.8.2 nathanw #options SCSIDEBUG
45 1.12.8.2 nathanw #options SCSIVERBOSE # Verbose SCSI errors
46 1.12.8.2 nathanw
47 1.12.8.2 nathanw # Compatibility options
48 1.12.8.2 nathanw #options COMPAT_SUNOS # can run SunOS 4.1.1 executables
49 1.12.8.2 nathanw #options COMPAT_43 # and 4.3BSD and ...
50 1.12.8.2 nathanw #options COMPAT_10 # NetBSD 1.0
51 1.12.8.2 nathanw #options COMPAT_11 # NetBSD 1.1
52 1.12.8.2 nathanw #options COMPAT_12 # NetBSD 1.2
53 1.12.8.2 nathanw options COMPAT_13 # NetBSD 1.3
54 1.12.8.2 nathanw options COMPAT_14 # NetBSD 1.4
55 1.12.8.2 nathanw #options COMPAT_LINUX # can run Linux/m68k executables
56 1.12.8.2 nathanw #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
57 1.12.8.2 nathanw
58 1.12.8.2 nathanw # File systems
59 1.12.8.2 nathanw file-system FFS # Berkeley Fast Filesystem
60 1.12.8.2 nathanw file-system NFS # Sun NFS client support
61 1.12.8.2 nathanw file-system CD9660 # ISO 9660 + Rock Ridge file system
62 1.12.8.2 nathanw #file-system FDESC # /dev/fd/*
63 1.12.8.2 nathanw file-system KERNFS # /kern
64 1.12.8.2 nathanw #file-system NULLFS # loopback file system
65 1.12.8.2 nathanw #file-system PROCFS # /proc
66 1.12.8.2 nathanw #file-system UNION # union file system
67 1.12.8.2 nathanw #file-system MFS # memory-based filesystem
68 1.12.8.2 nathanw
69 1.12.8.2 nathanw # Filesystem options
70 1.12.8.2 nathanw #options NFSSERVER # nfs server support
71 1.12.8.2 nathanw #options QUOTA # FFS quotas
72 1.12.8.2 nathanw #options FFS_EI # FFS Endian Independant support
73 1.12.8.2 nathanw #options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
74 1.12.8.2 nathanw #options VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
75 1.12.8.2 nathanw
76 1.12.8.2 nathanw # Networking options
77 1.12.8.2 nathanw options INET # IP prototol stack support
78 1.12.8.2 nathanw #options GATEWAY # IP packet forwarding
79 1.12.8.2 nathanw #options ISO,TPIP # OSI networking
80 1.12.8.2 nathanw #options EON # OSI tunneling over IP
81 1.12.8.2 nathanw #options CCITT,LLC,HDLC # X.25
82 1.12.8.2 nathanw #options PFIL_HOOKS # pfil(9) packet filter hooks.
83 1.12.8.2 nathanw #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
84 1.12.8.2 nathanw
85 1.12.8.2 nathanw # Work-around for root on slow servers (insurance...)
86 1.12.8.2 nathanw options NFS_BOOT_RWSIZE=1024
87 1.12.8.2 nathanw options NFS_BOOT_BOOTPARAM
88 1.12.8.2 nathanw
89 1.12.8.2 nathanw config netbsd root on ? type ?
90 1.12.8.2 nathanw
91 1.12.8.2 nathanw # On-board I/O space (required)
92 1.12.8.2 nathanw include "arch/sun3/conf/obio.sun3"
93 1.12.8.2 nathanw
94 1.12.8.2 nathanw # On-board memory (optional)
95 1.12.8.2 nathanw # See frame-buffers
96 1.12.8.2 nathanw # obmem0 at mainbus?
97 1.12.8.2 nathanw
98 1.12.8.2 nathanw # VME bus support (optional)
99 1.12.8.2 nathanw # One unit for each address space
100 1.12.8.2 nathanw vme0 at mainbus? # A16/D16
101 1.12.8.2 nathanw vme1 at mainbus? # A16/D32
102 1.12.8.2 nathanw vme2 at mainbus? # A24/D16
103 1.12.8.2 nathanw vme3 at mainbus? # A24/D32
104 1.12.8.2 nathanw vme4 at mainbus? # A32/D16
105 1.12.8.2 nathanw vme5 at mainbus? # A32/D32
106 1.12.8.2 nathanw
107 1.12.8.2 nathanw #
108 1.12.8.2 nathanw # Serial ports
109 1.12.8.2 nathanw #
110 1.12.8.2 nathanw zstty0 at zsc1 channel 0 # ttya
111 1.12.8.2 nathanw zstty1 at zsc1 channel 1 # ttyb
112 1.12.8.2 nathanw
113 1.12.8.2 nathanw kbd0 at zsc0 channel 0 # keyboard
114 1.12.8.2 nathanw #ms0 at zsc0 channel 1 # mouse
115 1.12.8.2 nathanw
116 1.12.8.2 nathanw #
117 1.12.8.2 nathanw # Network devices
118 1.12.8.2 nathanw #
119 1.12.8.2 nathanw
120 1.12.8.2 nathanw # Intel Ethernet (onboard, or VME)
121 1.12.8.2 nathanw ie0 at obio0 addr 0x0C0000 ipl 3
122 1.12.8.2 nathanw ie1 at vme2 addr 0xe88000 ipl 3 vect 0x75
123 1.12.8.2 nathanw
124 1.12.8.2 nathanw # Lance Ethernet (only onboard)
125 1.12.8.2 nathanw le0 at obio0 addr 0x120000 ipl 3
126 1.12.8.2 nathanw
127 1.12.8.2 nathanw # All Sun3 machines with an "le" (3/50, 3/60) should be
128 1.12.8.2 nathanw # presumed to have the old, buggy LANCE chip. (Rev. C)
129 1.12.8.2 nathanw options LANCE_REVC_BUG
130 1.12.8.2 nathanw
131 1.12.8.2 nathanw #
132 1.12.8.2 nathanw # Disk and tape devices
133 1.12.8.2 nathanw #
134 1.12.8.2 nathanw
135 1.12.8.2 nathanw # Sun3 "si" SCSI controller (NCR 5380)
136 1.12.8.2 nathanw # See GENERIC for the flags description.
137 1.12.8.2 nathanw si0 at obio0 addr 0x140000 ipl 2
138 1.12.8.2 nathanw si0 at vme2 addr 0x200000 ipl 2 vect 0x40
139 1.12.8.2 nathanw si1 at vme2 addr 0x204000 ipl 2 vect 0x41
140 1.12.8.2 nathanw
141 1.12.8.2 nathanw # Xylogics 450/451 controllers (VME A16/D16)
142 1.12.8.2 nathanw xyc0 at vme0 addr 0xee40 ipl 2 vect 0x48
143 1.12.8.2 nathanw xyc1 at vme0 addr 0xee48 ipl 2 vect 0x49
144 1.12.8.2 nathanw xy* at xyc? drive ?
145 1.12.8.2 nathanw
146 1.12.8.2 nathanw # Xylogics 7053 controllers (VME A16/D32)
147 1.12.8.2 nathanw xdc0 at vme1 addr 0xee80 ipl 2 vect 0x44
148 1.12.8.2 nathanw xdc1 at vme1 addr 0xee90 ipl 2 vect 0x45
149 1.12.8.2 nathanw xd* at xdc? drive ?
150 1.12.8.2 nathanw
151 1.12.8.2 nathanw # Xylogics 472 tape controllers?
152 1.12.8.2 nathanw
153 1.12.8.2 nathanw # Sun3/E SCSI+Ethernet board (VME A24/D16)
154 1.12.8.2 nathanw # Note: the board uses vect and vect+1
155 1.12.8.2 nathanw sebuf0 at vme2 addr 0x300000 ipl 2 vect 0x74 # and 0x75
156 1.12.8.2 nathanw sebuf1 at vme2 addr 0x340000 ipl 2 vect 0x76 # and 0x77
157 1.12.8.2 nathanw si* at sebuf?
158 1.12.8.2 nathanw ie* at sebuf?
159 1.12.8.2 nathanw
160 1.12.8.2 nathanw #
161 1.12.8.2 nathanw # Frame buffer devices
162 1.12.8.2 nathanw # (Not needed for installation kernels.)
163 1.12.8.2 nathanw
164 1.12.8.2 nathanw #
165 1.12.8.2 nathanw # SCSI infrastructure
166 1.12.8.2 nathanw #
167 1.12.8.2 nathanw scsibus* at scsi?
168 1.12.8.2 nathanw
169 1.12.8.2 nathanw sd* at scsibus? target ? lun ? # SCSI disks
170 1.12.8.2 nathanw st* at scsibus? target ? lun ? # SCSI tapes
171 1.12.8.2 nathanw cd* at scsibus? target ? lun ? # SCSI CD-ROMs
172 1.12.8.2 nathanw #ch* at scsibus? target ? lun ? # SCSI changer devices
173 1.12.8.2 nathanw #ss* at scsibus? target ? lun ? # SCSI scanners
174 1.12.8.2 nathanw #uk* at scsibus? target ? lun ? # unknown SCSI devices
175 1.12.8.2 nathanw
176 1.12.8.2 nathanw # Memory-disk drivers
177 1.12.8.2 nathanw #pseudo-device md 2
178 1.12.8.2 nathanw
179 1.12.8.2 nathanw # Misc.
180 1.12.8.2 nathanw pseudo-device loop 1 # network loopback
181 1.12.8.2 nathanw #pseudo-device bpfilter 8 # packet filter
182 1.12.8.2 nathanw pseudo-device sl 2 # CSLIP
183 1.12.8.2 nathanw pseudo-device ppp 2 # PPP
184 1.12.8.2 nathanw pseudo-device tun 2 # network tunneling over tty
185 1.12.8.2 nathanw #pseudo-device gre 2 # generic L3 over IP tunnel
186 1.12.8.2 nathanw #pseudo-device ipfilter # ip filter
187 1.12.8.2 nathanw #pseudo-device rnd # /dev/random and in-kernel generator
188 1.12.8.2 nathanw
189 1.12.8.2 nathanw pseudo-device pty 2 # pseudo-terminals (Sysinst needs two)
190 1.12.8.2 nathanw #pseudo-device vnd 4 # paging to files
191 1.12.8.2 nathanw #pseudo-device ccd 4 # concatenated disks
192