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