INSTALL_FLOPPY revision 1.57 1 1.57 abs # $NetBSD: INSTALL_FLOPPY,v 1.57 2023/02/09 14:09:48 abs Exp $
2 1.1 ad #
3 1.1 ad # INSTALL - Installation kernel.
4 1.1 ad #
5 1.1 ad # This kernel should be derived from GENERIC with some features
6 1.1 ad # commented out.
7 1.1 ad #
8 1.1 ad # This kernel does NOT support X, mice, audio devices, non-NetBSD
9 1.1 ad # emulation.
10 1.1 ad #
11 1.1 ad
12 1.1 ad include "arch/i386/conf/std.i386"
13 1.1 ad
14 1.1 ad #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
15 1.1 ad
16 1.13 ryo makeoptions CPUFLAGS="-march=i486 -mtune=i486" # i486 is densest code
17 1.13 ryo makeoptions COPTS="-Os"
18 1.13 ryo makeoptions USE_SSP="no"
19 1.1 ad
20 1.1 ad # Enable the hooks used for initializing the root memory-disk.
21 1.1 ad options MEMORY_DISK_HOOKS
22 1.1 ad options MEMORY_DISK_IS_ROOT # force root on memory disk
23 1.1 ad options MEMORY_DISK_SERVER=0 # no userspace memory disk support
24 1.1 ad options MEMORY_DISK_ROOT_SIZE=10000 # size of memory disk, in blocks
25 1.4 jym options MEMORY_DISK_RBFLAGS=RB_SINGLE # boot in single-user mode
26 1.1 ad
27 1.1 ad maxusers 2 # estimated number of users
28 1.1 ad
29 1.1 ad # CPU-related options.
30 1.1 ad #options USER_LDT # user-settable LDT; used by WINE
31 1.1 ad
32 1.1 ad # This option allows you to force a serial console at the specified
33 1.1 ad # I/O address.
34 1.1 ad #options CONSDEVNAME="\"com\"",CONADDR=0x3f8,CONSPEED=9600
35 1.1 ad
36 1.1 ad # The following options override the memory sizes passed in from the boot
37 1.1 ad # block. Use them *only* if the boot block is unable to determine the correct
38 1.1 ad # values. Note that the BIOS may *correctly* report less than 640k of base
39 1.1 ad # memory if the extended BIOS data area is located at the top of base memory
40 1.1 ad # (as is the case on most recent systems).
41 1.1 ad #options REALBASEMEM=... # size of base memory
42 1.1 ad #options REALEXTMEM=... # size of extended memory
43 1.1 ad
44 1.1 ad # Avoid irq 5 and 7, the most likely cause of problems on modern laptops.
45 1.1 ad options PCIC_ISA_INTR_ALLOC_MASK=0xff5f
46 1.1 ad
47 1.1 ad # Standard system options
48 1.1 ad
49 1.1 ad options INSECURE # disable kernel security levels
50 1.1 ad
51 1.1 ad options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
52 1.1 ad #options NTP # NTP phase/frequency locked loop
53 1.1 ad
54 1.1 ad #options KTRACE # system call tracing via ktrace(1)
55 1.1 ad
56 1.1 ad #options SYSVMSG # System V-like message queues
57 1.1 ad #options SYSVSEM # System V-like semaphores
58 1.1 ad #options SYSVSHM # System V-like memory sharing
59 1.1 ad
60 1.1 ad options USERCONF # userconf(4) support
61 1.1 ad options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
62 1.1 ad #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
63 1.1 ad no options EXEC_AOUT
64 1.1 ad
65 1.1 ad no options RFC2292 # Previous version of Adv. Sockets API for IPv6
66 1.30 pgoyette no options PTRACE_HOOKS
67 1.1 ad no options PTRACE # Include ptrace(2)
68 1.1 ad
69 1.1 ad # Diagnostic/debugging support options
70 1.24 dholland #options DIAGNOSTIC # inexpensive kernel consistency checks
71 1.1 ad #options DEBUG # expensive debugging checks/support
72 1.1 ad options DDB # in-kernel debugger
73 1.28 uebayasi pseudo-device ksyms
74 1.23 szptvlfn #options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
75 1.1 ad #options DDB_HISTORY_SIZE=512 # enable history editing in DDB
76 1.1 ad #options KGDB # remote debugger
77 1.1 ad #options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
78 1.13 ryo #makeoptions DEBUG="-g" # compile full symbol table
79 1.1 ad
80 1.1 ad # Compatibility options
81 1.42 mrg #include "conf/compat_netbsd09.config"
82 1.1 ad #options COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI
83 1.1 ad #options COMPAT_386BSD_MBRPART # recognize old partition ID
84 1.1 ad
85 1.1 ad #options COMPAT_LINUX # binary compatibility with Linux
86 1.56 nia #options COMPAT_OSSAUDIO # binary compatibility with Linux
87 1.1 ad options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
88 1.1 ad
89 1.1 ad # File systems
90 1.35 ryo file-system FFS # UFS
91 1.35 ryo file-system EXT2FS # second extended file system (linux)
92 1.35 ryo #file-system LFS # log-structured file system
93 1.35 ryo file-system MFS # memory file system
94 1.35 ryo file-system NFS # Network File System client
95 1.35 ryo file-system NTFS # Windows/NT Filesystem
96 1.35 ryo file-system CD9660 # ISO 9660 + Rock Ridge file system
97 1.35 ryo file-system MSDOSFS # MS-DOS file system
98 1.35 ryo #file-system FDESC # /dev/fd
99 1.35 ryo #file-system KERNFS # /kern
100 1.35 ryo #file-system NULLFS # loopback file system
101 1.35 ryo #file-system PROCFS # /proc
102 1.35 ryo #file-system UMAPFS # NULLFS + uid and gid remapping
103 1.35 ryo #file-system UNION # union file system
104 1.35 ryo #file-system PTYFS # /dev/pts/N support
105 1.35 ryo file-system TMPFS # Efficient memory file-system
106 1.1 ad
107 1.1 ad # Filesystem options
108 1.12 bouyer #options QUOTA # legacy UFS quotas
109 1.12 bouyer #options QUOTA2 # new, in-filesystem UFS quotas
110 1.43 rin #options DISKLABEL_EI # disklabel Endian Independent support
111 1.36 rin #options FFS_EI # FFS Endian Independent support
112 1.1 ad #options NFSSERVER # Network File System server
113 1.1 ad options NFS_V2_ONLY # Exclude NFS3 code to save space
114 1.1 ad options FFS_NO_SNAPSHOT # No FFS snapshot support
115 1.1 ad #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
116 1.1 ad # immutable) behave as system flags.
117 1.1 ad
118 1.1 ad # Networking options
119 1.1 ad #options GATEWAY # packet forwarding
120 1.1 ad options INET # IP + ICMP + TCP + UDP
121 1.1 ad options INET6 # IPv6
122 1.1 ad #options MROUTING # IP multicast routing
123 1.1 ad #options PIM # Protocol Independent Multicast
124 1.1 ad #options NETATALK # AppleTalk networking protocols
125 1.1 ad #options PPP_BSDCOMP # BSD-Compress compression support for PPP
126 1.1 ad #options PPP_DEFLATE # Deflate compression support for PPP
127 1.1 ad #options PPP_FILTER # Active filter support for PPP (requires bpf)
128 1.1 ad #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
129 1.1 ad
130 1.1 ad # These options enable verbose messages for several subsystems.
131 1.1 ad # Warning, these may compile large string tables into the kernel!
132 1.1 ad #options EISAVERBOSE # verbose EISA device autoconfig messages
133 1.1 ad #options MIIVERBOSE # verbose PHY autoconfig messages
134 1.1 ad #options PCIVERBOSE # verbose PCI device autoconfig messages
135 1.1 ad #options PCI_CONFIG_DUMP # verbosely dump PCI config space
136 1.1 ad #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
137 1.1 ad #options SCSIVERBOSE # human readable SCSI error messages
138 1.1 ad
139 1.1 ad #
140 1.1 ad # wscons options
141 1.1 ad #
142 1.13 ryo # builtin terminal emulations
143 1.1 ad #options WSEMUL_SUN # sun terminal emulation
144 1.1 ad options WSEMUL_VT100 # VT100 / VT220 emulation
145 1.1 ad # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
146 1.1 ad #options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
147 1.1 ad #options WS_DEFAULT_FG=WSCOL_WHITE
148 1.1 ad #options WS_DEFAULT_BG=WSCOL_BLACK
149 1.1 ad #options WS_DEFAULT_COLATTR="(0)"
150 1.1 ad #options WS_DEFAULT_MONOATTR="(0)"
151 1.1 ad #options WS_KERNEL_FG=WSCOL_GREEN
152 1.1 ad #options WS_KERNEL_BG=WSCOL_BLACK
153 1.1 ad #options WS_KERNEL_COLATTR=""
154 1.1 ad #options WS_KERNEL_MONOATTR=""
155 1.1 ad # customization of console border color
156 1.1 ad #options WSDISPLAY_CUSTOM_BORDER # border customization from wsconsctl(8)
157 1.1 ad #options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color
158 1.1 ad # compatibility to other console drivers
159 1.1 ad #options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
160 1.1 ad #options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
161 1.16 abs #options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
162 1.1 ad #options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
163 1.1 ad # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
164 1.1 ad #options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
165 1.1 ad # allocate a number of virtual screens at autoconfiguration time
166 1.1 ad #options WSDISPLAY_DEFAULTSCREENS=4
167 1.1 ad # use a large software cursor that doesn't blink
168 1.1 ad options PCDISPLAY_SOFTCURSOR
169 1.1 ad # modify the screen type of the console; defaults to "80x25"
170 1.1 ad #options VGA_CONSOLE_SCREENTYPE="\"80x24\""
171 1.1 ad
172 1.1 ad # Kernel root file system and dump configuration.
173 1.1 ad config netbsd root on ? type ?
174 1.1 ad #config netbsd root on sd0a type ffs
175 1.1 ad #config netbsd root on ? type nfs
176 1.1 ad
177 1.1 ad #
178 1.1 ad # Device configuration
179 1.1 ad #
180 1.1 ad
181 1.1 ad mainbus0 at root
182 1.1 ad
183 1.1 ad cpu* at mainbus?
184 1.1 ad
185 1.1 ad #apm0 at mainbus0 # Advanced power management
186 1.1 ad
187 1.1 ad
188 1.1 ad # Basic Bus Support
189 1.1 ad
190 1.1 ad # PCI bus support
191 1.1 ad pci* at mainbus? bus ?
192 1.1 ad pci* at pchb? bus ?
193 1.1 ad pci* at ppb? bus ?
194 1.1 ad
195 1.1 ad # PCI bridges
196 1.1 ad pchb* at pci? dev ? function ? # PCI-Host bridges
197 1.27 uebayasi #options AGP_X86
198 1.1 ad pceb* at pci? dev ? function ? # PCI-EISA bridges
199 1.1 ad pcib* at pci? dev ? function ? # PCI-ISA bridges
200 1.1 ad ppb* at pci? dev ? function ? # PCI-PCI bridges
201 1.1 ad # XXX 'puc's aren't really bridges, but there's no better place for them here
202 1.1 ad #puc* at pci? dev ? function ? # PCI "universal" comm. cards
203 1.1 ad
204 1.1 ad # EISA bus support
205 1.1 ad eisa0 at mainbus?
206 1.1 ad eisa0 at pceb?
207 1.1 ad
208 1.1 ad # ISA bus support
209 1.1 ad isa0 at mainbus?
210 1.1 ad isa0 at pceb?
211 1.1 ad isa0 at pcib?
212 1.1 ad
213 1.1 ad # PCMCIA bus support
214 1.8 dholland pcmcia* at pcic? controller ? socket ?
215 1.8 dholland pcmcia* at tcic? controller ? socket ?
216 1.1 ad
217 1.1 ad # ISA PCMCIA controllers
218 1.13 ryo pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
219 1.13 ryo pcic1 at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
220 1.1 ad pcic2 at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
221 1.13 ryo tcic0 at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
222 1.1 ad
223 1.1 ad # PCI PCMCIA controllers
224 1.1 ad pcic0 at pci? dev? function ?
225 1.1 ad
226 1.1 ad # ISA Plug-and-Play bus support
227 1.8 dholland isapnp0 at isa?
228 1.1 ad
229 1.1 ad # ISA Plug-and-Play PCMCIA controllers
230 1.1 ad pcic* at isapnp?
231 1.1 ad
232 1.1 ad
233 1.1 ad # Console Devices
234 1.1 ad
235 1.1 ad # wscons
236 1.7 dholland pckbc0 at isa? # PC keyboard controller
237 1.1 ad pckbd* at pckbc? # PC keyboard
238 1.1 ad #pms* at pckbc? # PS/2 mouse for wsmouse
239 1.1 ad vga0 at isa?
240 1.1 ad vga* at pci? dev ? function ?
241 1.1 ad pcdisplay0 at isa? # CGA, MDA, EGA, HGA
242 1.1 ad wsdisplay* at vga? console ?
243 1.1 ad wsdisplay* at pcdisplay? console ?
244 1.1 ad wskbd* at pckbd? console ?
245 1.1 ad #wsmouse* at pms? mux 0
246 1.1 ad
247 1.1 ad #attimer0 at isa?
248 1.1 ad #pcppi0 at isa?
249 1.1 ad #sysbeep0 at pcppi?
250 1.1 ad
251 1.1 ad # Serial Devices
252 1.1 ad
253 1.1 ad # PCI serial interfaces
254 1.1 ad #com* at puc? port ? # 16x50s on "universal" comm boards
255 1.1 ad #cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
256 1.1 ad
257 1.1 ad # ISA Plug-and-Play serial interfaces
258 1.1 ad com* at isapnp? # Modems and serial boards
259 1.1 ad
260 1.1 ad # PCMCIA serial interfaces
261 1.1 ad com* at pcmcia? function ? # Modems and serial cards
262 1.1 ad
263 1.8 dholland pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards
264 1.1 ad com* at pcmcom? slave ? # ...and the slave devices
265 1.1 ad
266 1.1 ad # ISA serial interfaces
267 1.1 ad #options COM_HAYESP # adds Hayes ESP serial board support
268 1.1 ad com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports
269 1.1 ad com1 at isa? port 0x2f8 irq 3
270 1.1 ad com2 at isa? port 0x3e8 irq 5
271 1.1 ad #com3 at isa? port 0x2e8 irq 9
272 1.1 ad #ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards
273 1.1 ad #com* at ast? slave ?
274 1.1 ad #boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards
275 1.1 ad #com* at boca? slave ?
276 1.1 ad #tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards
277 1.1 ad #com* at tcom? slave ?
278 1.1 ad #rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards
279 1.1 ad #com* at rtfps? slave ?
280 1.1 ad #cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards
281 1.1 ad
282 1.1 ad
283 1.1 ad # Parallel Printer Interfaces
284 1.1 ad
285 1.1 ad # PCI parallel printer interfaces
286 1.1 ad #lpt* at puc? port ? # || ports on "universal" comm boards
287 1.1 ad
288 1.1 ad # ISA parallel printer interfaces
289 1.1 ad #lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
290 1.1 ad #lpt1 at isa? port 0x278
291 1.1 ad #lpt2 at isa? port 0x3bc
292 1.1 ad
293 1.1 ad # I2O devices
294 1.1 ad iop* at pci? dev ? function ? # I/O processor
295 1.1 ad iopsp* at iop? tid ? # SCSI/FC-AL ports
296 1.1 ad ld* at iop? tid ? # Block devices
297 1.1 ad #dpti* at iop? tid 0 # DPT/Adaptec control interface
298 1.1 ad
299 1.1 ad # SCSI Controllers and Devices
300 1.1 ad
301 1.1 ad # PCI SCSI controllers
302 1.1 ad adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
303 1.1 ad adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
304 1.1 ad ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
305 1.1 ad ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI
306 1.1 ad bha* at pci? dev ? function ? # BusLogic 9xx SCSI
307 1.1 ad dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
308 1.1 ad iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
309 1.1 ad mfi* at pci? dev ? function ? # LSI MegaRAID SAS
310 1.1 ad mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID
311 1.1 ad mpt* at pci? dev ? function ? # LSI Fusion SCSI/FC
312 1.1 ad pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
313 1.1 ad siop* at pci? dev ? function ? # NCR 53c8xx SCSI (new driver)
314 1.1 ad trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
315 1.1 ad
316 1.1 ad # EISA SCSI controllers
317 1.1 ad ahb* at eisa? slot ? # Adaptec 174[02] SCSI
318 1.1 ad ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
319 1.1 ad bha* at eisa? slot ? # BusLogic 7xx SCSI
320 1.1 ad dpt* at eisa? slot ? # DPT SmartCache/SmartRAID
321 1.1 ad uha* at eisa? slot ? # UltraStor 24f SCSI
322 1.1 ad
323 1.1 ad # PCMCIA SCSI controllers
324 1.1 ad aic* at pcmcia? function ? # Adaptec APA-1460 SCSI
325 1.1 ad
326 1.1 ad # ISA Plug-and-Play SCSI controllers
327 1.13 ryo aha* at isapnp? # Adaptec AHA-154[02
328 1.1 ad aic* at isapnp? # Adaptec AHA-1520B
329 1.1 ad
330 1.1 ad # ISA SCSI controllers
331 1.1 ad adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02]
332 1.1 ad aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI
333 1.1 ad aha1 at isa? port 0x334 irq ? drq ?
334 1.1 ad ahc0 at isa? port ? irq ? # Adaptec 284x SCSI
335 1.1 ad aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI
336 1.1 ad bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI
337 1.1 ad bha1 at isa? port 0x334 irq ? drq ?
338 1.1 ad # The "nca" and "dpt" probes might give false hits or hang your machine.
339 1.1 ad #dpt0 at isa? port 0x170 irq ? drq ? # DPT SmartCache/SmartRAID
340 1.1 ad #nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 controller
341 1.1 ad #nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.)
342 1.1 ad sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI
343 1.1 ad uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI
344 1.1 ad uha1 at isa? port 0x340 irq ? drq ?
345 1.1 ad wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers
346 1.1 ad wds1 at isa? port 0x358 irq 11 drq 5
347 1.1 ad
348 1.1 ad # SCSI bus support
349 1.1 ad scsibus* at scsi?
350 1.1 ad
351 1.1 ad # SCSI devices
352 1.1 ad sd* at scsibus? target ? lun ? # SCSI disk drives
353 1.1 ad st* at scsibus? target ? lun ? # SCSI tape drives
354 1.1 ad cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
355 1.1 ad #ch* at scsibus? target ? lun ? # SCSI autochangers
356 1.1 ad #ss* at scsibus? target ? lun ? # SCSI scanners
357 1.1 ad #uk* at scsibus? target ? lun ? # SCSI unknown
358 1.1 ad
359 1.1 ad
360 1.1 ad # RAID controllers and devices
361 1.1 ad aac* at pci? dev ? function ? # Adaptec AAC family
362 1.1 ad amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID
363 1.1 ad cac* at eisa? slot ? # Compaq EISA array controllers
364 1.1 ad cac* at pci? dev ? function ? # Compaq PCI array controllers
365 1.1 ad ciss* at pci? dev ? function ? # HP Smart Array controllers
366 1.1 ad icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID
367 1.1 ad mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family
368 1.1 ad mlx* at eisa? slot ? # Mylex DAC960 & DEC SWXCR family
369 1.1 ad twe* at pci? dev ? function ? # 3ware Escalade RAID controllers
370 1.1 ad twa* at pci? dev ? function ? # 3ware Escalade 95xx RAID controllers
371 1.1 ad
372 1.1 ad ld* at aac? unit ? # logical disk devices
373 1.1 ad ld* at amr? unit ?
374 1.1 ad ld* at cac? unit ?
375 1.1 ad ld* at icp? unit ?
376 1.1 ad ld* at twe? unit ?
377 1.1 ad ld* at twa? unit ?
378 1.1 ad ld* at mlx? unit ?
379 1.1 ad
380 1.1 ad icpsp* at icp? unit ? # SCSI pass-through
381 1.1 ad
382 1.1 ad # IDE and related devices
383 1.1 ad # PCI IDE controllers - see pciide(4) for supported hardware.
384 1.1 ad # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
385 1.1 ad # how to set up DMA modes for this chip. This may work, or may cause
386 1.1 ad # a machine hang with some controllers.
387 1.1 ad pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
388 1.1 ad acardide* at pci? dev ? function ? # Acard IDE controllers
389 1.13 ryo aceride* at pci? dev ? function ? # Acer Lab IDE controllers
390 1.13 ryo #ahcisata* at pci? dev ? function ? # AHCI SATA controllers
391 1.1 ad artsata* at pci? dev ? function ? # Intel i31244 SATA controller
392 1.1 ad cmdide* at pci? dev ? function ? # CMD tech IDE controllers
393 1.1 ad cypide* at pci? dev ? function ? # Cypress IDE controllers
394 1.13 ryo geodeide* at pci? dev ? function ? # AMD Geode IDE controllers
395 1.1 ad hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
396 1.1 ad iteide* at pci? dev ? function ? # IT Express IDE controllers
397 1.8 dholland #ixpide* at pci? dev ? function ? # ATI IXP IDE controllers
398 1.13 ryo optiide* at pci? dev ? function ? # Opti IDE controllers
399 1.13 ryo piixide* at pci? dev ? function ? # Intel IDE controllers
400 1.1 ad pdcide* at pci? dev ? function ? # Promise IDE controllers
401 1.1 ad pdcsata* at pci? dev ? function ? # Promise SATA150 controllers
402 1.1 ad rccide* at pci? dev ? function ? # ServerWorks IDE controllers
403 1.1 ad satalink* at pci? dev ? function ? # SiI SATALink controllers
404 1.1 ad siside* at pci? dev ? function ? # SiS IDE controllers
405 1.8 dholland slide* at pci? dev ? function ? # Symphony Labs IDE controllers
406 1.13 ryo #svwsata* at pci? dev ? function ? # ServerWorks SATA controllers
407 1.1 ad viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
408 1.1 ad stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers
409 1.1 ad
410 1.1 ad # ISA Plug-and-Play IDE controllers
411 1.1 ad wdc* at isapnp?
412 1.1 ad
413 1.1 ad # PCMCIA IDE controllers
414 1.1 ad wdc* at pcmcia? function ?
415 1.1 ad
416 1.1 ad # ISA ST506, ESDI, and IDE controllers
417 1.1 ad # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
418 1.1 ad # fall back to 16bits I/O if 32bits I/O are not functional).
419 1.1 ad # Some controllers pass the initial 32bit test, but will fail later.
420 1.1 ad wdc0 at isa? port 0x1f0 irq 14 flags 0x00
421 1.1 ad wdc1 at isa? port 0x170 irq 15 flags 0x00
422 1.1 ad
423 1.1 ad # ATA (IDE) bus support
424 1.1 ad atabus* at ata?
425 1.1 ad
426 1.1 ad # IDE drives
427 1.1 ad # Flags are used only with controllers that support DMA operations
428 1.1 ad # and mode settings (e.g. some pciide controllers)
429 1.1 ad # The lowest order four bits (rightmost digit) of the flags define the PIO
430 1.1 ad # mode to use, the next set of four bits the DMA mode and the third set the
431 1.1 ad # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
432 1.1 ad # to use, and the last bit must be 1 for this setting to be used.
433 1.1 ad # For DMA and UDMA, 0xf (1111) means 'disable'.
434 1.1 ad # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
435 1.1 ad # (0xc=1100, 0xa=1010, 0xf=1111)
436 1.1 ad # 0x0000 means "use whatever the drive claims to support".
437 1.1 ad wd* at atabus? drive ? flags 0x0000
438 1.1 ad
439 1.1 ad # ATA RAID configuration support, as found on some Promise controllers.
440 1.1 ad pseudo-device ataraid
441 1.1 ad ld* at ataraid? vendtype ? unit ?
442 1.1 ad
443 1.1 ad # ATAPI bus support
444 1.1 ad atapibus* at atapi?
445 1.1 ad
446 1.1 ad # ATAPI devices
447 1.1 ad # flags have the same meaning as for IDE drives.
448 1.1 ad cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
449 1.1 ad sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
450 1.1 ad st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives
451 1.1 ad #uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
452 1.1 ad
453 1.1 ad
454 1.1 ad # Miscellaneous mass storage devices
455 1.1 ad
456 1.1 ad # ISA floppy
457 1.1 ad fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers
458 1.1 ad #fdc1 at isa? port 0x370 irq ? drq ?
459 1.1 ad fd* at fdc? drive ? # the drives themselves
460 1.1 ad # some machines need you to do this instead of fd*
461 1.1 ad #fd0 at fdc0 drive 0
462 1.1 ad
463 1.1 ad # ISA CD-ROM devices
464 1.1 ad #mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives
465 1.1 ad
466 1.1 ad # ISA tape devices
467 1.1 ad # note: the wt driver conflicts unpleasantly with ed devices at the
468 1.1 ad # same I/O address. The probe reprograms their EEPROMs. Don't
469 1.1 ad # uncomment it unless you are actually using it.
470 1.1 ad #wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives
471 1.1 ad
472 1.1 ad
473 1.1 ad # Network Interfaces
474 1.1 ad
475 1.1 ad # PCI network interfaces
476 1.1 ad an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11)
477 1.1 ad ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11
478 1.1 ad atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11)
479 1.13 ryo bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet
480 1.13 ryo bge* at pci? dev ? function ? # Broadcom 570x Gigabit Ethernet
481 1.13 ryo # bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet
482 1.1 ad ep* at pci? dev ? function ? # 3Com 3c59x
483 1.7 dholland ex* at pci? dev ? function ? # 3Com 3c90x[BC]
484 1.1 ad epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
485 1.1 ad fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
486 1.1 ad gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet
487 1.1 ad #hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ
488 1.1 ad #ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100
489 1.1 ad #iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG
490 1.1 ad lii* at pci? dev ? function ? # Atheros L2 Fast-Ethernet
491 1.1 ad mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet
492 1.1 ad msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet
493 1.1 ad mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet
494 1.1 ad ne* at pci? dev ? function ? # NE2000-compatible Ethernet
495 1.1 ad #nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet
496 1.1 ad #ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial
497 1.1 ad pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
498 1.1 ad re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
499 1.1 ad rtk* at pci? dev ? function ? # Realtek 8129/8139
500 1.1 ad sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet
501 1.1 ad sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet
502 1.1 ad skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet
503 1.1 ad sk* at skc? # SysKonnect SK9821 Gigabit Ethernet
504 1.1 ad ste* at pci? dev ? function ? # Sundance ST-201 Ethernet
505 1.1 ad stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit
506 1.1 ad ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet
507 1.1 ad tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
508 1.1 ad tlp* at pci? dev ? function ? # DECchip 21x4x and clones
509 1.1 ad #txp* at pci? dev ? function ? # 3com 3cr990
510 1.1 ad #vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet
511 1.1 ad vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
512 1.1 ad wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b)
513 1.1 ad wm* at pci? dev ? function ? # Intel 8254x gigabit
514 1.1 ad
515 1.1 ad # EISA network interfaces
516 1.1 ad ep* at eisa? slot ? # 3Com 3c579 Ethernet
517 1.1 ad tlp* at eisa? slot ? # DEC DE-425 Ethernet
518 1.1 ad
519 1.1 ad # ISA Plug-and-Play network interfaces
520 1.1 ad an* at isapnp? # # Aironet 802.11
521 1.1 ad ep* at isapnp? # 3Com 3c509 Ethernet
522 1.1 ad fmv* at isapnp? # Fujitsu FMV-183
523 1.1 ad le* at isapnp? # AMD PCnet-ISA Ethernet
524 1.1 ad ne* at isapnp? # NE2000-compatible Ethernet
525 1.1 ad
526 1.1 ad # PCMCIA network interfaces
527 1.1 ad an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11)
528 1.1 ad awi* at pcmcia? function ? # BayStack 650 (802.11FH)
529 1.1 ad cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer
530 1.1 ad cs* at pcmcia? function ? # CS89xx Ethernet
531 1.1 ad ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
532 1.1 ad mbe* at pcmcia? function ? # MB8696x based Ethernet
533 1.1 ad ne* at pcmcia? function ? # NE2000-compatible Ethernet
534 1.13 ryo ray* at pcmcia? function ? # Raytheon Raylink (802.11)
535 1.1 ad sm* at pcmcia? function ? # Megahertz Ethernet
536 1.7 dholland wi* at pcmcia? function ? # Lucent/Intersil WaveLAN/IEEE (802.11)
537 1.1 ad options WI_PCMCIA_SPECTRUM24T_FW=0
538 1.1 ad xirc* at pcmcia? function ? # Xircom CreditCard Ethernet
539 1.1 ad com* at xirc?
540 1.1 ad xi* at xirc?
541 1.1 ad mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards
542 1.1 ad com* at mhzc?
543 1.1 ad sm* at mhzc?
544 1.1 ad
545 1.1 ad # ISA network interfaces
546 1.1 ad ate0 at isa? port 0x2a0 irq ? # AT1700
547 1.1 ad cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
548 1.1 ad ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
549 1.7 dholland eg0 at isa? port 0x280 irq 9 # 3c505 Ethernet cards
550 1.7 dholland el0 at isa? port 0x300 irq 9 # 3c501 Ethernet cards
551 1.7 dholland ep* at isa? port ? irq ? # 3c509 Ethernet cards
552 1.7 dholland ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3c507
553 1.1 ad ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN
554 1.1 ad fmv0 at isa? port 0x2a0 irq ? # FMV-181/182
555 1.1 ad ix0 at isa? port 0x300 irq 10 # EtherExpress/16
556 1.1 ad iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA
557 1.1 ad lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC)
558 1.1 ad depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA
559 1.1 ad le* at depca?
560 1.1 ad nele0 at isa? port 0x320 irq 9 drq 7 # NE2100
561 1.1 ad le* at nele?
562 1.1 ad bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan
563 1.1 ad le* at bicc?
564 1.7 dholland ne0 at isa? port 0x280 irq 9 # NE[12]000 Ethernet cards
565 1.1 ad ne1 at isa? port 0x300 irq 10
566 1.1 ad sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet
567 1.1 ad we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet
568 1.1 ad we1 at isa? port 0x300 iomem 0xcc000 irq 10
569 1.1 ad
570 1.1 ad # MII/PHY support
571 1.1 ad acphy* at mii? phy ? # DAltima AC101 and AMD Am79c874 PHYs
572 1.1 ad amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
573 1.1 ad bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
574 1.1 ad brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
575 1.1 ad #ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs
576 1.1 ad dmphy* at mii? phy ? # Davicom DM9101 PHYs
577 1.1 ad exphy* at mii? phy ? # 3Com internal PHYs
578 1.1 ad glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
579 1.1 ad gphyter* at mii? phy ? # NS83861 Gig-E PHY
580 1.8 dholland icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
581 1.1 ad igphy* at mii? phy ? # Intel IGP01E1000
582 1.11 christos ihphy* at mii? phy ? # Intel 82577 PHYs
583 1.1 ad ikphy* at mii? phy ? # Intel 82563 PHYs
584 1.1 ad inphy* at mii? phy ? # Intel 82555 PHYs
585 1.1 ad iophy* at mii? phy ? # Intel 82553 PHYs
586 1.8 dholland lxtphy* at mii? phy ? # Level One LXT-970 PHYs
587 1.8 dholland makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
588 1.1 ad nsphy* at mii? phy ? # NS83840 PHYs
589 1.8 dholland nsphyter* at mii? phy ? # NS83843 PHYs
590 1.1 ad pnaphy* at mii? phy ? # generic HomePNA PHYs
591 1.1 ad qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
592 1.8 dholland rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs
593 1.1 ad rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
594 1.1 ad sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
595 1.1 ad tlphy* at mii? phy ? # ThunderLAN PHYs
596 1.1 ad tqphy* at mii? phy ? # TDK Semiconductor PHYs
597 1.8 dholland urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
598 1.1 ad ukphy* at mii? phy ? # generic unknown PHYs
599 1.1 ad
600 1.1 ad # USB Controller and Devices
601 1.1 ad
602 1.1 ad # PCI USB controllers
603 1.1 ad ehci* at pci? dev ? function ? # Enhanced Host Controller
604 1.1 ad uhci* at pci? # Universal Host Controller (Intel)
605 1.1 ad ohci* at pci? # Open Host Controller
606 1.1 ad
607 1.1 ad # USB bus support
608 1.1 ad usb* at ehci?
609 1.1 ad usb* at uhci?
610 1.1 ad usb* at ohci?
611 1.1 ad
612 1.1 ad # USB Hubs
613 1.1 ad uhub* at usb?
614 1.1 ad uhub* at uhub? port ?
615 1.1 ad
616 1.1 ad # USB HID device
617 1.8 dholland uhidev* at uhub? port ? configuration ? interface ?
618 1.1 ad
619 1.1 ad # USB Mice
620 1.1 ad #ums* at uhidev? reportid ?
621 1.1 ad #wsmouse* at ums?
622 1.1 ad
623 1.1 ad # USB Keyboards
624 1.1 ad ukbd* at uhidev? reportid ?
625 1.1 ad wskbd* at ukbd? console ?
626 1.1 ad
627 1.1 ad # USB serial adapter
628 1.8 dholland #ucycom* at uhidev? reportid ?
629 1.1 ad
630 1.1 ad # USB Generic HID devices
631 1.1 ad #uhid* at uhidev? reportid ?
632 1.1 ad
633 1.1 ad # USB Printer
634 1.1 ad #ulpt* at uhub? port ? configuration ? interface ?
635 1.1 ad
636 1.1 ad # USB Mass Storage
637 1.1 ad umass* at uhub? port ? configuration ? interface ?
638 1.1 ad
639 1.1 ad # USB Generic driver
640 1.1 ad #ugen* at uhub? port ? configuration ? interface ?
641 1.1 ad
642 1.1 ad # USB Ethernet adapters
643 1.1 ad #atu* at uhub? port ? # Atmel AT76C50XX based adapters
644 1.13 ryo aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
645 1.1 ad axe* at uhub? port ? # ASIX AX88172 based adapters
646 1.13 ryo cue* at uhub? port ? # CATC USB-EL1201A based adapters
647 1.13 ryo kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
648 1.45 rin mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
649 1.49 rin ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
650 1.1 ad url* at uhub? port ? # Realtek RTL8150L based adapters
651 1.1 ad
652 1.1 ad # Audio Devices
653 1.1 ad
654 1.1 ad # PCI audio devices
655 1.1 ad #eap* at pci? dev ? function ? # Ensoniq AudioPCI
656 1.1 ad #eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive
657 1.1 ad #sv* at pci? dev ? function ? # S3 SonicVibes
658 1.1 ad
659 1.1 ad # ISA Plug-and-Play audio devices
660 1.8 dholland #guspnp* at isapnp? # Gravis Ultra Sound PnP audio
661 1.1 ad #sb* at isapnp? # SoundBlaster-compatible audio
662 1.1 ad
663 1.1 ad # ISA audio devices
664 1.1 ad # the "aria" probe might give false hits
665 1.1 ad #aria0 at isa? port 0x290 irq 10 # Aria
666 1.1 ad #gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound
667 1.1 ad #pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum
668 1.1 ad #sb0 at isa? port 0x220 irq 7 drq 1 drq2 5 # SoundBlaster
669 1.1 ad #wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System
670 1.1 ad
671 1.1 ad # OPL[23] FM synthesizers
672 1.1 ad #opl0 at isa? port 0x388 # use only if not attached to sound card
673 1.1 ad #opl* at eso?
674 1.1 ad #opl* at ess?
675 1.1 ad #opl* at sb?
676 1.1 ad #opl* at sv?
677 1.1 ad
678 1.1 ad # Audio support
679 1.1 ad #audio* at audiobus?
680 1.1 ad
681 1.1 ad # MIDI support
682 1.1 ad #midi* at midibus?
683 1.1 ad #midi* at pcppi? # MIDI interface to the PC speaker
684 1.1 ad
685 1.1 ad # The spkr driver provides a simple tone interface to the built in speaker.
686 1.34 christos #spkr* at pcppi? # PC speaker
687 1.34 christos #spkr* at audio? # PC speaker (synthesized)
688 1.1 ad
689 1.1 ad # Mice
690 1.1 ad
691 1.1 ad # ISA busmice
692 1.1 ad #lms0 at isa? port 0x23c irq 5 # Logitech bus mouse
693 1.1 ad #lms1 at isa? port 0x238 irq 5
694 1.1 ad #mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse
695 1.1 ad #mms1 at isa? port 0x238 irq 5
696 1.1 ad #wsmouse* at lms?
697 1.1 ad #wsmouse* at mms?
698 1.1 ad
699 1.1 ad # Joysticks
700 1.1 ad
701 1.1 ad # ISA Plug-and-Play joysticks
702 1.1 ad #joy* at isapnp? # Game ports (usually on audio cards)
703 1.1 ad
704 1.1 ad # ISA joysticks. Probe is a little strange; add only if you have one.
705 1.1 ad #joy0 at isa? port 0x201
706 1.1 ad
707 1.1 ad
708 1.1 ad # Miscellaneous Devices
709 1.1 ad
710 1.15 hannken # Virtio devices
711 1.15 hannken virtio* at pci? dev ? function ? # Virtio PCI device
712 1.15 hannken viomb* at virtio? # Virtio memory balloon device
713 1.15 hannken ld* at virtio? # Virtio disk device
714 1.15 hannken vioif* at virtio? # Virtio network device
715 1.1 ad
716 1.1 ad
717 1.1 ad # Pseudo-Devices
718 1.1 ad
719 1.1 ad # disk/mass storage pseudo-devices
720 1.18 christos #pseudo-device ccd # concatenated/striped disk devices
721 1.19 christos pseudo-device raid # RAIDframe disk driver
722 1.1 ad options RAID_AUTOCONFIG # auto-configuration of RAID components
723 1.9 pooka #pseudo-device fss # file system snapshot device
724 1.10 hannken pseudo-device md # memory disk device (ramdisk)
725 1.1 ad #pseudo-device vnd # disk-like interface to files
726 1.1 ad
727 1.1 ad # network pseudo-devices
728 1.1 ad pseudo-device bpfilter # Berkeley packet filter
729 1.1 ad pseudo-device loop # network loopback
730 1.1 ad #pseudo-device ppp # Point-to-Point Protocol
731 1.1 ad pseudo-device sl # Serial Line IP
732 1.1 ad #pseudo-device tun # network tunneling over tty
733 1.1 ad #pseudo-device gre # generic L3 over IP tunnel
734 1.1 ad
735 1.1 ad # miscellaneous pseudo-devices
736 1.18 christos pseudo-device pty # pseudo-terminals
737 1.1 ad options NO_DEV_PTM
738 1.20 christos #pseudo-device sequencer # MIDI sequencer
739 1.1 ad # rnd works; RND_COM does not on port i386 yet.
740 1.1 ad #options RND_COM # use "com" randomness as well (BROKEN)
741 1.1 ad
742 1.1 ad # a pseudo device needed for Coda # also needs CODA (above)
743 1.19 christos #pseudo-device vcoda # coda minicache <-> venus comm.
744 1.1 ad
745 1.1 ad # wscons pseudo-devices
746 1.1 ad pseudo-device wsmux # mouse & keyboard multiplexor
747 1.1 ad #pseudo-device wsfont
748 1.1 ad
749 1.57 abs # Pull in optional local configuration - always at end
750 1.57 abs cinclude "arch/i386/conf/INSTALL.local"
751