INSTALL revision 1.33 1 1.33 cgd # $NetBSD: INSTALL,v 1.33 1997/03/13 04:15:26 cgd Exp $
2 1.2 tls #
3 1.29 jonathan # INSTALL -- an installation kernel config.
4 1.29 jonathan # adapters. This kernel should be GENERICOTHER with lines
5 1.2 tls # deleted, not commented out, so it is easy to maintain.
6 1.2 tls #
7 1.29 jonathan # Install kernels no longer support X,
8 1.29 jonathan # soundcards, or non-NetBSD emulation.
9 1.29 jonathan # These are commented out, comments above notwithstanding.
10 1.2 tls #
11 1.2 tls
12 1.25 fvdl include "arch/i386/conf/std.i386"
13 1.2 tls
14 1.2 tls options I386_CPU # CPU classes; at least one is REQUIRED
15 1.2 tls options I486_CPU
16 1.2 tls options I586_CPU
17 1.31 perry options I686_CPU
18 1.2 tls options MATH_EMULATE # floating point emulation
19 1.20 mycroft #options VM86 # Virtual 8086 emulation
20 1.7 thorpej
21 1.7 thorpej # Some BIOSes don't get the size of extended memory right. If you
22 1.7 thorpej # have a broken BIOS, uncomment the following and set the value
23 1.7 thorpej # properly for your system.
24 1.28 thorpej #options BIOSEXTMEM=... # size of extended memory
25 1.2 tls
26 1.2 tls #options DUMMY_NOPS # speed hack; recommended
27 1.20 mycroft #options XSERVER,UCONSOLE
28 1.20 mycroft #options INSECURE # insecure; allow /dev/mem writing for X
29 1.2 tls
30 1.2 tls maxusers 32 # estimated number of users
31 1.30 perry options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
32 1.24 mycroft #options NTP # NTP phase/frequency locked loop
33 1.2 tls
34 1.20 mycroft #options DDB # in-kernel debugger
35 1.2 tls #makeoptions DEBUG="-g" # compile full symbol table
36 1.20 mycroft #options DIAGNOSTIC # internal consistency checks
37 1.20 mycroft #options KTRACE # system call tracing, a la ktrace(1)
38 1.2 tls
39 1.20 mycroft #options SYSVMSG # System V-like message queues
40 1.20 mycroft #options SYSVSEM # System V-like semaphores
41 1.20 mycroft #options SYSVSHM # System V-like memory sharing
42 1.20 mycroft #options SHMMAXPGS=1024 # 1024 pages is the default
43 1.20 mycroft
44 1.20 mycroft #options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8,
45 1.20 mycroft #options COMPAT_09 # NetBSD 0.9,
46 1.2 tls options COMPAT_10 # NetBSD 1.0,
47 1.10 perry options COMPAT_11 # NetBSD 1.1,
48 1.20 mycroft options COMPAT_12 # NetBSD 1.2,
49 1.20 mycroft #options COMPAT_43 # and 4.3BSD
50 1.20 mycroft #options TCP_COMPAT_42 # TCP bug compatibility with 4.2BSD
51 1.20 mycroft
52 1.20 mycroft #options COMPAT_SVR4 # binary compatibility with SVR4
53 1.20 mycroft #options COMPAT_IBCS2 # binary compatibility with SCO and ISC
54 1.20 mycroft #options COMPAT_LINUX # binary compatibility with Linux
55 1.20 mycroft #options COMPAT_FREEBSD # binary compatibility with FreeBSD
56 1.23 mycroft
57 1.23 mycroft #options EXEC_ELF32 # 32-bit ELF executables (SVR4, Linux)
58 1.2 tls
59 1.20 mycroft #options USER_LDT # user-settable LDT; used by WINE
60 1.2 tls options LKM # loadable kernel modules
61 1.2 tls
62 1.32 thorpej file-system FFS # UFS
63 1.32 thorpej #file-system LFS # log-structured file system
64 1.32 thorpej file-system MFS # memory file system
65 1.32 thorpej file-system NFS # Network File System client
66 1.32 thorpej file-system CD9660 # ISO 9660 + Rock Ridge file system
67 1.32 thorpej file-system MSDOSFS # MS-DOS file system
68 1.32 thorpej file-system FDESC # /dev/fd
69 1.32 thorpej file-system KERNFS # /kern
70 1.32 thorpej #file-system NULLFS # loopback file system
71 1.32 thorpej #file-system PORTAL # portal filesystem (still experimental)
72 1.32 thorpej #file-system PROCFS # /proc
73 1.32 thorpej #file-system UMAPFS # NULLFS + uid and gid remapping
74 1.32 thorpej #file-system UNION # union file system
75 1.2 tls
76 1.20 mycroft #options NFSSERVER # Network File System server
77 1.32 thorpej #options QUOTA # UFS quotas
78 1.2 tls options FIFO # FIFOs; RECOMMENDED
79 1.2 tls
80 1.20 mycroft #options GATEWAY # packet forwarding
81 1.2 tls options INET # IP + ICMP + TCP + UDP
82 1.24 mycroft #options MROUTING # IP multicast routing
83 1.20 mycroft #options NS # XNS
84 1.20 mycroft #options NSIP # XNS tunneling over IP
85 1.20 mycroft #options ISO,TPIP # OSI
86 1.20 mycroft #options EON # OSI tunneling over IP
87 1.20 mycroft #options CCITT,LLC,HDLC # X.25
88 1.2 tls
89 1.32 thorpej config netbsd root on ? type ?
90 1.24 mycroft #options COMCONSOLE=0,CONADDR=0x3f8,CONUNIT=0,CONSPEED=9600
91 1.2 tls
92 1.6 cgd mainbus0 at root
93 1.6 cgd
94 1.27 thorpej pci0 at mainbus0 bus ?
95 1.6 cgd eisa0 at mainbus0
96 1.2 tls
97 1.5 cgd ppb* at pci? dev ? function ? # PCI-PCI bridges
98 1.5 cgd pci* at ppb? bus ?
99 1.27 thorpej pchb* at pci? dev ? function ? # PCI-Host bridges
100 1.27 thorpej pcib* at pci? dev ? function ? # PCI-ISA bridges
101 1.27 thorpej
102 1.27 thorpej isa* at pcib? # ISA on PCI-ISA bridge
103 1.27 thorpej isa* at mainbus0 # all other ISA
104 1.27 thorpej
105 1.27 thorpej #apm0 at mainbus0 # Advanced power management
106 1.5 cgd
107 1.2 tls npx0 at isa? port 0xf0 irq 13 # math coprocessor
108 1.2 tls
109 1.2 tls pc0 at isa? port 0x60 irq 1 # generic PC console device
110 1.2 tls #vt0 at isa? port 0x60 irq 1
111 1.2 tls
112 1.2 tls com0 at isa? port 0x3f8 irq 4 # standard PC serial ports
113 1.2 tls com1 at isa? port 0x2f8 irq 3
114 1.2 tls com2 at isa? port 0x3e8 irq 5
115 1.2 tls #com3 at isa? port 0x2e8 irq 9
116 1.2 tls #ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards
117 1.8 cgd #com* at ast? slave ?
118 1.2 tls #boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards
119 1.2 tls #com* at boca? slave ?
120 1.2 tls #rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards
121 1.2 tls #com* at rtfps? slave ?
122 1.2 tls
123 1.2 tls #cy0 at isa? ...
124 1.2 tls
125 1.2 tls lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
126 1.2 tls lpt1 at isa? port 0x278
127 1.2 tls lpt2 at isa? port 0x3bc
128 1.2 tls
129 1.20 mycroft #lms0 at isa? port 0x23c irq 5 # Logitech bus mouse
130 1.20 mycroft #lms1 at isa? port 0x238 irq 5
131 1.20 mycroft #mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse
132 1.20 mycroft #mms1 at isa? port 0x238 irq 5
133 1.20 mycroft #pms0 at pckbd? irq 12 # PS/2 auxiliary port mouse
134 1.20 mycroft
135 1.29 jonathan #
136 1.29 jonathan # HACK: Buslogics must, repeat MUST, be proved before Adaptec 1542
137 1.29 jonathan # or similar devices, or we may autoconfigure an BHA as an AHA.
138 1.29 jonathan #
139 1.29 jonathan
140 1.29 jonathan aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI controllers
141 1.29 jonathan aha1 at isa? port 0x334 irq ? drq ? # Adaptec 154[02] SCSI controllers
142 1.29 jonathan scsibus* at aha?
143 1.29 jonathan ahb* at eisa? slot ? # Adaptec 174[024] SCSI controllers
144 1.29 jonathan scsibus* at ahb?
145 1.29 jonathan ahc0 at isa? port ? irq ? # Adaptec 284x SCSI controllers
146 1.29 jonathan ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI controllers
147 1.29 jonathan ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI controllers
148 1.29 jonathan scsibus* at ahc?
149 1.29 jonathan aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI controllers
150 1.29 jonathan scsibus* at aic?
151 1.29 jonathan
152 1.17 mycroft bha0 at isa? port 0x330 irq ? drq ? # BusLogic [57]4X SCSI controllers
153 1.17 mycroft bha1 at isa? port 0x334 irq ? drq ? # BusLogic [57]4X SCSI controllers
154 1.17 mycroft bha* at eisa? slot ?
155 1.18 mycroft bha* at pci? dev ? function ?
156 1.17 mycroft scsibus* at bha?
157 1.5 cgd ncr* at pci? dev ? function ? # NCR 538XX SCSI controllers
158 1.2 tls scsibus* at ncr?
159 1.2 tls sea0 at isa? iomem 0xc8000 irq 5
160 1.2 tls scsibus* at sea?
161 1.2 tls uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI controllers
162 1.2 tls uha1 at isa? port 0x334 irq ? drq ? # UltraStor [13]4f SCSI controllers
163 1.17 mycroft uha* at eisa? slot ? # UltraStor 24f SCSI controllers
164 1.2 tls scsibus* at uha?
165 1.11 mycroft wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers
166 1.11 mycroft wds1 at isa? port 0x358 irq 11 drq 5
167 1.11 mycroft scsibus* at wds?
168 1.33 cgd isp* at pci? dev ? function ? # Qlogic ISP 10x0 SCSI controllers
169 1.33 cgd scsibus* at isp?
170 1.2 tls
171 1.2 tls sd* at scsibus? target ? lun ? # SCSI disk drives
172 1.2 tls st* at scsibus? target ? lun ? # SCSI tape drives
173 1.2 tls cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
174 1.2 tls ch* at scsibus? target ? lun ? # SCSI autochangers
175 1.20 mycroft #ss* at scsibus? target ? lun ? # SCSI scanners
176 1.20 mycroft #uk* at scsibus? target ? lun ? # SCSI unknown
177 1.2 tls
178 1.2 tls fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers
179 1.2 tls #fdc1 at isa? port 0x370 irq ? drq ?
180 1.2 tls fd* at fdc? drive ?
181 1.2 tls
182 1.20 mycroft #mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives
183 1.20 mycroft
184 1.2 tls wdc0 at isa? port 0x1f0 irq 14 # ST506, ESDI, and IDE controllers
185 1.2 tls #wdc1 at isa? port 0x170 irq ?
186 1.2 tls wd* at wdc? drive ?
187 1.2 tls
188 1.2 tls wt0 at isa? port 0x300 irq 5 drq 1 # Archive and Wangtek QIC tape drives
189 1.2 tls
190 1.2 tls ed0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC, 3C503, and NE[12]000
191 1.2 tls ed1 at isa? port 0x250 iomem 0xd8000 irq 9 # ethernet cards
192 1.2 tls ed2 at isa? port 0x300 iomem 0xcc000 irq 10
193 1.2 tls #eg0 at isa? ... # 3C505 ethernet cards
194 1.2 tls el0 at isa? port 0x300 irq 9 # 3C501 ethernet cards
195 1.2 tls ep0 at isa? port ? irq ? # 3C509 ethernet cards
196 1.13 scottr ie0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN and 3C507
197 1.13 scottr ie1 at isa? port 0x300 irq 10 # EtherExpress
198 1.2 tls #le0 at isa? port 0x320 irq 10 drq 7 # IsoLan, NE2100, and DEPCA
199 1.12 thorpej ep* at eisa? slot ? # 3C579 ethernet cards
200 1.20 mycroft fea* at eisa? slot ? # DEC DEFEA FDDI cards
201 1.5 cgd le* at pci? dev ? function ? # PCnet-PCI based ethernet cards
202 1.5 cgd de* at pci? dev ? function ? # DC21X4X-based ethernet cards
203 1.5 cgd ep* at pci? dev ? function ? # 3C590 ethernet cards
204 1.20 mycroft fpa* at pci? dev ? function ? # DEC DEFPA FDDI cards
205 1.20 mycroft
206 1.20 mycroft #pss0 at isa? port 0x220 irq 7 drq 6 # Personal Sound System
207 1.20 mycroft #sp0 at pss0 port 0x530 irq 10 drq 0 # sound port driver
208 1.20 mycroft
209 1.20 mycroft #sb0 at isa? port 0x220 irq 7 drq 1 # SoundBlaster
210 1.20 mycroft #wss0 at isa? port 0x530 irq 10 drq 0 # Windows Sound System
211 1.20 mycroft #pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum
212 1.20 mycroft #gus0 at isa? port 0x220 irq 7 drq 1 flags 6 # Gravis Ultra Sound (flags is record drq for full-duplex)
213 1.20 mycroft #spkr0 at pckbd? port 0x61
214 1.20 mycroft
215 1.20 mycroft # Joystick driver. Probe is a little strange; add only if you have one.
216 1.20 mycroft #joy0 at isa? port 0x201
217 1.21 mycroft
218 1.22 mycroft include "arch/i386/conf/GENERIC.local"
219 1.2 tls
220 1.2 tls pseudo-device loop 1 # network loopback
221 1.20 mycroft #pseudo-device bpfilter 8 # packet filter
222 1.2 tls pseudo-device sl 2 # CSLIP
223 1.20 mycroft #pseudo-device ppp 2 # PPP
224 1.20 mycroft #pseudo-device tun 2 # network tunneling over tty
225 1.2 tls
226 1.2 tls pseudo-device pty 64 # pseudo-terminals
227 1.20 mycroft #pseudo-device tb 1 # tablet line discipline
228 1.20 mycroft #pseudo-device vnd 4 # paging to files
229 1.20 mycroft #pseudo-device ccd 4 # concatenated disk devices
230