GENERIC revision 1.110.4.13 1 1.110.4.13 thorpej # $NetBSD: GENERIC,v 1.110.4.13 2003/01/15 18:22:26 thorpej Exp $
2 1.110.4.2 nathanw #
3 1.110.4.2 nathanw # GENERIC machine description file
4 1.110.4.2 nathanw #
5 1.110.4.2 nathanw # This machine description file is used to generate the default NetBSD
6 1.110.4.2 nathanw # kernel. The generic kernel does not include all options, subsystems
7 1.110.4.2 nathanw # and device drivers, but should be useful for most applications.
8 1.110.4.2 nathanw #
9 1.110.4.2 nathanw # The machine description file can be customised for your specific
10 1.110.4.2 nathanw # machine to reduce the kernel size and improve its performance.
11 1.110.4.2 nathanw #
12 1.110.4.2 nathanw # For further information on compiling NetBSD kernels, see the config(8)
13 1.110.4.2 nathanw # man page.
14 1.110.4.2 nathanw #
15 1.110.4.2 nathanw # For further information on hardware support for this architecture, see
16 1.110.4.2 nathanw # the intro(4) man page. For further information about kernel options
17 1.110.4.2 nathanw # for this architecture, see the options(4) man page. For an explanation
18 1.110.4.2 nathanw # of each device driver in this file see the section 4 man page for the
19 1.110.4.2 nathanw # device.
20 1.110.4.2 nathanw
21 1.110.4.2 nathanw include "arch/macppc/conf/std.macppc"
22 1.110.4.2 nathanw
23 1.110.4.7 nathanw options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24 1.110.4.7 nathanw
25 1.110.4.13 thorpej #ident "GENERIC-$Revision: 1.110.4.13 $"
26 1.110.4.2 nathanw
27 1.110.4.2 nathanw maxusers 32
28 1.110.4.2 nathanw
29 1.110.4.8 nathanw options ALTIVEC # Include AltiVec support
30 1.110.4.8 nathanw
31 1.110.4.2 nathanw # Standard system options
32 1.110.4.2 nathanw #options UCONSOLE # users can use TIOCCONS (for xconsole)
33 1.110.4.2 nathanw #options INSECURE # disable kernel security levels
34 1.110.4.2 nathanw
35 1.110.4.2 nathanw options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
36 1.110.4.11 nathanw options NTP # NTP phase/frequency locked loop
37 1.110.4.2 nathanw options KTRACE # system call tracing via ktrace(1)
38 1.110.4.10 nathanw options SYSTRACE # system call vetting via systrace(1)
39 1.110.4.2 nathanw
40 1.110.4.2 nathanw options SYSVMSG # System V message queues
41 1.110.4.2 nathanw options SYSVSEM # System V semaphores
42 1.110.4.2 nathanw #options SEMMNI=10 # number of semaphore identifiers
43 1.110.4.2 nathanw #options SEMMNS=60 # number of semaphores in system
44 1.110.4.2 nathanw #options SEMUME=10 # max number of undo entries per process
45 1.110.4.2 nathanw #options SEMMNU=30 # number of undo structures in system
46 1.110.4.2 nathanw options SYSVSHM # System V shared memory
47 1.110.4.2 nathanw #options SHMMAXPGS=1024 # 1024 pages is the default
48 1.110.4.2 nathanw
49 1.110.4.2 nathanw options LKM # loadable kernel modules
50 1.110.4.2 nathanw
51 1.110.4.10 nathanw options USERCONF # userconf(4) support
52 1.110.4.7 nathanw #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
53 1.110.4.4 nathanw
54 1.110.4.12 thorpej # Enable experimental buffer queue strategy for better responsiveness under
55 1.110.4.11 nathanw # high disk I/O load. Use it with caution - it's not proven to be stable yet.
56 1.110.4.11 nathanw #options NEW_BUFQ_STRATEGY
57 1.110.4.11 nathanw
58 1.110.4.2 nathanw # Diagnostic/debugging support options
59 1.110.4.2 nathanw options DIAGNOSTIC # cheap kernel consistency checks
60 1.110.4.2 nathanw #options DEBUG # expensive debugging checks/support
61 1.110.4.8 nathanw options ZS_CONSOLE_ABORT# allow break to get into DDB on serial
62 1.110.4.2 nathanw options DDB # in-kernel debugger
63 1.110.4.8 nathanw #options DDB_ONPANIC=0 # don't go into ddb on panic.
64 1.110.4.2 nathanw options DDB_HISTORY_SIZE=512 # enable history editing in DDB
65 1.110.4.8 nathanw #options TRAP_PANICWAIT
66 1.110.4.2 nathanw
67 1.110.4.7 nathanw #makeoptions DEBUG="-g" # compile full symbol table
68 1.110.4.2 nathanw
69 1.110.4.2 nathanw # Compatibility options
70 1.110.4.2 nathanw options COMPAT_09 # NetBSD 0.9,
71 1.110.4.2 nathanw options COMPAT_10 # NetBSD 1.0,
72 1.110.4.2 nathanw options COMPAT_11 # NetBSD 1.1,
73 1.110.4.2 nathanw options COMPAT_12 # NetBSD 1.2,
74 1.110.4.2 nathanw options COMPAT_13 # NetBSD 1.3,
75 1.110.4.2 nathanw options COMPAT_14 # NetBSD 1.4,
76 1.110.4.2 nathanw options COMPAT_43 # and 4.3BSD
77 1.110.4.2 nathanw #options COMPAT_386BSD_MBRPART # recognize old partition ID
78 1.110.4.8 nathanw options COMPAT_LINUX # Linux binary compatibility
79 1.110.4.13 thorpej options COMPAT_MACH # Mach binary compatibility (experimental)
80 1.110.4.13 thorpej options EXEC_MACHO # Mach-O binary support, needed for COMPAT_MACH
81 1.110.4.2 nathanw #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
82 1.110.4.2 nathanw
83 1.110.4.2 nathanw # File systems
84 1.110.4.2 nathanw file-system FFS # UFS
85 1.110.4.2 nathanw file-system EXT2FS # second extended file system (linux)
86 1.110.4.2 nathanw file-system LFS # log-structured file system
87 1.110.4.2 nathanw file-system MFS # memory file system
88 1.110.4.2 nathanw file-system NFS # Network File System client
89 1.110.4.2 nathanw file-system CD9660 # ISO 9660 + Rock Ridge file system
90 1.110.4.2 nathanw file-system MSDOSFS # MS-DOS file system
91 1.110.4.2 nathanw file-system FDESC # /dev/fd
92 1.110.4.2 nathanw file-system KERNFS # /kern
93 1.110.4.2 nathanw file-system NULLFS # loopback file system
94 1.110.4.2 nathanw file-system OVERLAY # overlay file system
95 1.110.4.2 nathanw file-system PORTAL # portal filesystem (still experimental)
96 1.110.4.2 nathanw file-system PROCFS # /proc
97 1.110.4.2 nathanw file-system UMAPFS # NULLFS + uid and gid remapping
98 1.110.4.2 nathanw file-system UNION # union file system
99 1.110.4.2 nathanw
100 1.110.4.2 nathanw # File system options
101 1.110.4.2 nathanw options QUOTA # UFS quotas
102 1.110.4.2 nathanw #options FFS_EI # FFS Endian Independant support
103 1.110.4.2 nathanw options SOFTDEP # FFS soft updates support.
104 1.110.4.2 nathanw options NFSSERVER # Network File System server
105 1.110.4.2 nathanw #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
106 1.110.4.2 nathanw # immutable) behave as system flags.
107 1.110.4.10 nathanw options APPLE_UFS # Apple UFS support in FFS
108 1.110.4.2 nathanw
109 1.110.4.2 nathanw options NFS_BOOT_DHCP # Support DHCP NFS root
110 1.110.4.2 nathanw
111 1.110.4.2 nathanw # Networking options
112 1.110.4.2 nathanw #options GATEWAY # packet forwarding
113 1.110.4.2 nathanw options INET # IP + ICMP + TCP + UDP
114 1.110.4.2 nathanw options INET6 # IPV6
115 1.110.4.2 nathanw #options IPSEC # IP security
116 1.110.4.2 nathanw #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
117 1.110.4.2 nathanw #options IPSEC_DEBUG # debug for IP security
118 1.110.4.2 nathanw #options MROUTING # IP multicast routing
119 1.110.4.2 nathanw #options NS # XNS
120 1.110.4.2 nathanw #options NSIP # XNS tunneling over IP
121 1.110.4.2 nathanw #options ISO,TPIP # OSI
122 1.110.4.2 nathanw #options EON # OSI tunneling over IP
123 1.110.4.2 nathanw #options CCITT,LLC,HDLC # X.25
124 1.110.4.2 nathanw options NETATALK # AppleTalk networking protocols
125 1.110.4.2 nathanw options PPP_BSDCOMP # BSD-Compress compression support for PPP
126 1.110.4.2 nathanw options PPP_DEFLATE # Deflate compression support for PPP
127 1.110.4.2 nathanw options PPP_FILTER # Active filter support for PPP (requires bpf)
128 1.110.4.2 nathanw options PFIL_HOOKS # pfil(9) packet filter hooks
129 1.110.4.2 nathanw options IPFILTER_LOG # ipmon(8) log support
130 1.110.4.10 nathanw #options IPFILTER_DEFAULT_BLOCK # block all packets by default
131 1.110.4.2 nathanw #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
132 1.110.4.2 nathanw
133 1.110.4.2 nathanw # These options enable verbose messages for several subsystems.
134 1.110.4.2 nathanw # Warning, these may compile large string tables into the kernel!
135 1.110.4.2 nathanw options PCIVERBOSE # verbose PCI device autoconfig messages
136 1.110.4.2 nathanw options MIIVERBOSE # verbose PHY autoconfig messages
137 1.110.4.2 nathanw #options PCI_CONFIG_DUMP # verbosely dump PCI config space
138 1.110.4.2 nathanw options SCSIVERBOSE # human readable SCSI error messages
139 1.110.4.2 nathanw options USBVERBOSE # verbose USB device autoconfig messages
140 1.110.4.2 nathanw
141 1.110.4.2 nathanw # wscons options
142 1.110.4.9 nathanw #options WSEMUL_SUN # sun terminal emulation
143 1.110.4.9 nathanw options WSEMUL_VT100 # VT100 / VT220 emulation
144 1.110.4.9 nathanw #options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
145 1.110.4.2 nathanw options FONT_GALLANT12x22
146 1.110.4.2 nathanw
147 1.110.4.2 nathanw # Kernel root file system and dump configuration.
148 1.110.4.2 nathanw config netbsd root on ? type ?
149 1.110.4.2 nathanw
150 1.110.4.2 nathanw #
151 1.110.4.2 nathanw # Device configuration
152 1.110.4.2 nathanw #
153 1.110.4.2 nathanw
154 1.110.4.2 nathanw mainbus* at root
155 1.110.4.2 nathanw
156 1.110.4.2 nathanw cpu* at mainbus?
157 1.110.4.2 nathanw bandit* at mainbus?
158 1.110.4.2 nathanw grackle* at mainbus?
159 1.110.4.2 nathanw uninorth* at mainbus?
160 1.110.4.2 nathanw
161 1.110.4.2 nathanw pci* at bandit? bus ?
162 1.110.4.2 nathanw pci* at grackle? bus ?
163 1.110.4.2 nathanw pci* at uninorth? bus ?
164 1.110.4.2 nathanw pci* at ppb? bus ?
165 1.110.4.2 nathanw
166 1.110.4.2 nathanw pchb* at pci? dev ? function ? # PCI-Host bridges
167 1.110.4.2 nathanw ppb* at pci? dev ? function ? # PCI-PCI bridges
168 1.110.4.7 nathanw # XXX 'puc's aren't really bridges, but there's no better place for them here
169 1.110.4.7 nathanw puc* at pci? dev ? function ? # PCI "universal" comm. cards
170 1.110.4.2 nathanw
171 1.110.4.13 thorpej # PCI Network devices
172 1.110.4.13 thorpej an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11)
173 1.110.4.13 thorpej bge* at pci? dev ? function ? # Broadcom 570x Gigabit Ethernet
174 1.110.4.2 nathanw ep* at pci? dev ? function ? # 3Com 3c59x
175 1.110.4.2 nathanw epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
176 1.110.4.2 nathanw ex* at pci? dev ? function ? # 3Com 90x[BC]
177 1.110.4.13 thorpej fpa* at pci? dev ? function ? # DEC PCI FDDI (DEFPA) Controller
178 1.110.4.2 nathanw fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
179 1.110.4.13 thorpej gem* at pci? dev ? function ? # gmac ethernet
180 1.110.4.13 thorpej #gm* at pci? dev ? function ? # gmac ethernet (old)
181 1.110.4.13 thorpej gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet
182 1.110.4.13 thorpej le* at pci? dev ? function ? # PCnet-PCI Ethernet
183 1.110.4.2 nathanw lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3
184 1.110.4.13 thorpej mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet
185 1.110.4.2 nathanw ne* at pci? dev ? function ? # NE2000-compatible Ethernet
186 1.110.4.13 thorpej pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
187 1.110.4.2 nathanw rtk* at pci? dev ? function ? # Realtek 8129/8139
188 1.110.4.13 thorpej sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet
189 1.110.4.2 nathanw sip* at pci? dev ? function ? # SiS 900/7016 Ethernet
190 1.110.4.13 thorpej ste* at pci? dev ? function ? # Sundance ST-201 Ethernet
191 1.110.4.13 thorpej stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit
192 1.110.4.13 thorpej #ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet
193 1.110.4.13 thorpej tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
194 1.110.4.7 nathanw tlp* at pci? dev ? function ? # DECchip 21x4x and clones
195 1.110.4.13 thorpej vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
196 1.110.4.13 thorpej wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b)
197 1.110.4.13 thorpej wm* at pci? dev ? function ? # Intel 82543/82544 gigabit
198 1.110.4.13 thorpej
199 1.110.4.13 thorpej # PCI SCSI controllers
200 1.110.4.2 nathanw adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
201 1.110.4.2 nathanw adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
202 1.110.4.2 nathanw ahc* at pci? dev ? function ? # Adaptec 294x, aic78x0 SCSI
203 1.110.4.2 nathanw bha* at pci? dev ? function ? # BusLogic 9xx SCSI
204 1.110.4.13 thorpej esiop* at pci? dev ? function ? # NCR 53c8xx SCSI (enhanced)
205 1.110.4.2 nathanw iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
206 1.110.4.2 nathanw isp* at pci? dev ? function ? # Qlogic ISP 10x0/2xx0 SCSI/Fibre Chan
207 1.110.4.2 nathanw pcscp* at pci? dev ? function ? # AMD Am53c974 PCscsi-PCI SCSI
208 1.110.4.6 nathanw siop* at pci? dev ? function ? # NCR 53c8xx SCSI
209 1.110.4.6 nathanw trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
210 1.110.4.13 thorpej
211 1.110.4.13 thorpej # Other PCI devices
212 1.110.4.2 nathanw ofb* at pci? dev ? function ? # Generic Open Firmware Framebuffer
213 1.110.4.5 nathanw #options OFB_ENABLE_CACHE # Speed up console
214 1.110.4.2 nathanw pciide* at pci? dev ? function ?
215 1.110.4.2 nathanw cbb* at pci? dev ? function ? # PCI-CardBus bridge
216 1.110.4.2 nathanw obio0 at pci? dev ? function ?
217 1.110.4.2 nathanw #macofcons0 at pci? dev ? function ? # OpenFirmware console (for debugging)
218 1.110.4.2 nathanw
219 1.110.4.13 thorpej acphy* at mii? phy ? # DAltima AC101 and AMD Am79c874 PHYs
220 1.110.4.13 thorpej amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
221 1.110.4.2 nathanw bmtphy* at mii? phy ? # Broadcom BCM5201/BCM5202 PHYs
222 1.110.4.2 nathanw brgphy* at mii? phy ? # Broadcom BCM5400 PHYs
223 1.110.4.13 thorpej dmphy* at mii? phy ? # Davicom DM9101 PHYs
224 1.110.4.2 nathanw exphy* at mii? phy ? # 3Com internal PHYs
225 1.110.4.13 thorpej glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
226 1.110.4.13 thorpej gphyter* at mii? phy ? # NS83861 Gig-E PHY
227 1.110.4.4 nathanw icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
228 1.110.4.2 nathanw inphy* at mii? phy ? # Intel 82555 PHYs
229 1.110.4.2 nathanw iophy* at mii? phy ? # Intel 82553 PHYs
230 1.110.4.2 nathanw lxtphy* at mii? phy ? # Level One LXT-970 PHYs
231 1.110.4.13 thorpej makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
232 1.110.4.2 nathanw nsphy* at mii? phy ? # NS83840 PHYs
233 1.110.4.2 nathanw nsphyter* at mii? phy ? # NS83843 PHYs
234 1.110.4.13 thorpej pnaphy* at mii? phy ? # generic HomePNA PHYs
235 1.110.4.2 nathanw qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
236 1.110.4.2 nathanw sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
237 1.110.4.2 nathanw tlphy* at mii? phy ? # ThunderLAN PHYs
238 1.110.4.2 nathanw tqphy* at mii? phy ? # TDK Semiconductor PHYs
239 1.110.4.2 nathanw ukphy* at mii? phy ? # generic unknown PHYs
240 1.110.4.13 thorpej urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
241 1.110.4.2 nathanw
242 1.110.4.2 nathanw # PCI serial interfaces
243 1.110.4.7 nathanw com* at puc? port ? # 16x50s on "universal" comm boards
244 1.110.4.2 nathanw cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
245 1.110.4.2 nathanw #cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
246 1.110.4.2 nathanw
247 1.110.4.13 thorpej bktr* at pci? dev ? function ? # Brooktree video/audio capture/tuner
248 1.110.4.13 thorpej radio* at bktr?
249 1.110.4.13 thorpej
250 1.110.4.2 nathanw bm* at obio? # bmac ethernet
251 1.110.4.2 nathanw mc* at obio? # MACE ethernet
252 1.110.4.2 nathanw esp* at obio? flags 0x00ff # 53c9x SCSI
253 1.110.4.2 nathanw mesh* at obio? flags 0xffff # MESH SCSI
254 1.110.4.2 nathanw nvram* at obio? # nvram
255 1.110.4.2 nathanw adb* at obio? # Apple Desktop Bus
256 1.110.4.7 nathanw apm0 at adb? # APM emulation
257 1.110.4.2 nathanw aed* at adb? # ADB Event Device
258 1.110.4.2 nathanw akbd* at adb? # ADB keyboard
259 1.110.4.2 nathanw ams* at adb? # ADB mouse
260 1.110.4.2 nathanw abtn* at adb?
261 1.110.4.2 nathanw zsc* at obio?
262 1.110.4.2 nathanw zstty* at zsc? channel ?
263 1.110.4.2 nathanw mediabay* at obio?
264 1.110.4.2 nathanw wdc* at mediabay? flags 0
265 1.110.4.7 nathanw # awacs is disabled because on some systems--e.g., a 350MHz G4 GigE--
266 1.110.4.7 nathanw # it may generate interrupt storms, rendering the machine unusable.
267 1.110.4.7 nathanw # If you uncomment this, you'll also want to uncomment "audio* at awacs?"
268 1.110.4.7 nathanw # below.
269 1.110.4.7 nathanw #awacs* at obio? # Apple audio device
270 1.110.4.2 nathanw wi* at obio? # AirMac
271 1.110.4.2 nathanw
272 1.110.4.2 nathanw cardslot* at cbb?
273 1.110.4.2 nathanw cardbus* at cardslot?
274 1.110.4.2 nathanw pcmcia* at cardslot?
275 1.110.4.2 nathanw
276 1.110.4.2 nathanw com* at pcmcia? function ? # Modems and serial cards
277 1.110.4.2 nathanw wdc* at pcmcia? function ? # PCMCIA IDE controllers
278 1.110.4.2 nathanw ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
279 1.110.4.2 nathanw mbe* at pcmcia? function ? # MB8696x based Ethernet
280 1.110.4.2 nathanw ne* at pcmcia? function ? # NE2000-compatible Ethernet
281 1.110.4.2 nathanw awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS)
282 1.110.4.2 nathanw wi* at pcmcia? function ? # Lucent WaveLan IEEE (802.11)
283 1.110.4.2 nathanw ex* at cardbus? dev ? function ? # 3Com 3C575TX
284 1.110.4.2 nathanw tlp* at cardbus? dev ? function ? # DECchip 21143
285 1.110.4.2 nathanw rtk* at cardbus? dev ? function ? # Realtek 8129/8139
286 1.110.4.2 nathanw
287 1.110.4.2 nathanw wsdisplay0 at ofb? console ?
288 1.110.4.2 nathanw wskbd0 at akbd? console ?
289 1.110.4.2 nathanw wsmouse0 at ams?
290 1.110.4.2 nathanw
291 1.110.4.2 nathanw scsibus* at adv?
292 1.110.4.6 nathanw scsibus* at adw?
293 1.110.4.2 nathanw scsibus* at ahc?
294 1.110.4.2 nathanw scsibus* at bha?
295 1.110.4.2 nathanw scsibus* at iha?
296 1.110.4.2 nathanw scsibus* at isp?
297 1.110.4.2 nathanw scsibus* at esp?
298 1.110.4.2 nathanw scsibus* at mesh?
299 1.110.4.2 nathanw scsibus* at pcscp?
300 1.110.4.2 nathanw scsibus* at siop?
301 1.110.4.6 nathanw scsibus* at trm?
302 1.110.4.2 nathanw
303 1.110.4.2 nathanw sd* at scsibus? target ? lun ? # SCSI disks
304 1.110.4.2 nathanw st* at scsibus? target ? lun ? # SCSI tape drives
305 1.110.4.2 nathanw cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
306 1.110.4.2 nathanw ch* at scsibus? target ? lun ? # SCSI autochangers
307 1.110.4.2 nathanw ss* at scsibus? target ? lun ? # SCSI scanners
308 1.110.4.2 nathanw uk* at scsibus? target ? lun ? # SCSI unknown
309 1.110.4.2 nathanw
310 1.110.4.2 nathanw wdc* at obio? flags 0x1
311 1.110.4.2 nathanw wd* at pciide? channel ? drive ?
312 1.110.4.2 nathanw wd* at wdc? channel ? drive ? flags 0x0000
313 1.110.4.2 nathanw
314 1.110.4.2 nathanw atapibus* at pciide? channel ?
315 1.110.4.2 nathanw atapibus* at wdc? channel ?
316 1.110.4.2 nathanw
317 1.110.4.2 nathanw cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
318 1.110.4.2 nathanw sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
319 1.110.4.2 nathanw uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
320 1.110.4.2 nathanw
321 1.110.4.2 nathanw # PCI USB controllers
322 1.110.4.2 nathanw ohci* at pci? dev ? function ? # Open Host Controller
323 1.110.4.2 nathanw
324 1.110.4.2 nathanw usb* at ohci? # USB bus support
325 1.110.4.2 nathanw uhub* at usb? # USB Hubs
326 1.110.4.2 nathanw uhub* at uhub? port ? configuration ? interface ?
327 1.110.4.2 nathanw
328 1.110.4.2 nathanw uhidev* at uhub? port ? configuration ? interface ? # USB HID device
329 1.110.4.2 nathanw
330 1.110.4.2 nathanw ums* at uhidev? reportid ? # USB Mice
331 1.110.4.2 nathanw wsmouse* at ums?
332 1.110.4.2 nathanw
333 1.110.4.2 nathanw ukbd* at uhidev? reportid ? # USB Keyboards
334 1.110.4.2 nathanw wskbd* at ukbd? console ?
335 1.110.4.2 nathanw
336 1.110.4.2 nathanw uhid* at uhidev? reportid ? # USB Generic HID
337 1.110.4.2 nathanw
338 1.110.4.2 nathanw ulpt* at uhub? port ? configuration ? interface ? # USB Printer
339 1.110.4.2 nathanw
340 1.110.4.2 nathanw umodem* at uhub? port ? configuration ? # USB Modem
341 1.110.4.2 nathanw ucom* at umodem?
342 1.110.4.2 nathanw
343 1.110.4.2 nathanw umass* at uhub? port ? configuration ? interface ? # USB Mass Storage
344 1.110.4.2 nathanw atapibus* at umass? channel ?
345 1.110.4.2 nathanw scsibus* at umass? channel ?
346 1.110.4.2 nathanw
347 1.110.4.2 nathanw uaudio* at uhub? port ? configuration ? # USB audio
348 1.110.4.2 nathanw
349 1.110.4.13 thorpej # D-Link DSB-R100 USB FM radio tuner
350 1.110.4.13 thorpej udsbr* at uhub? port ?
351 1.110.4.13 thorpej radio* at udsbr?
352 1.110.4.13 thorpej
353 1.110.4.2 nathanw # USB Ethernet adapters
354 1.110.4.2 nathanw aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
355 1.110.4.2 nathanw cue* at uhub? port ? # CATC USB-EL1201A based adapters
356 1.110.4.2 nathanw kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
357 1.110.4.2 nathanw
358 1.110.4.2 nathanw uscanner* at uhub? port ? # USB scanners
359 1.110.4.2 nathanw uyap* at uhub? port ? # Y@P firmware loader
360 1.110.4.2 nathanw ugen* at uhub? port ? configuration ? interface ? # USB Generic driver
361 1.110.4.2 nathanw
362 1.110.4.2 nathanw # PCI IEEE1394 controllers
363 1.110.4.2 nathanw fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller
364 1.110.4.2 nathanw #fwlynx* at pci? dev ? function ? # IEEE1394 TI Lynx Controller
365 1.110.4.2 nathanw fw* at fwbus? # IP over 1394
366 1.110.4.2 nathanw
367 1.110.4.2 nathanw # IEEE1394 nodes
368 1.110.4.8 nathanw #fwnode* at fwbus? idhi ? idlo ?
369 1.110.4.13 thorpej #sbpscsi* at fwnode?
370 1.110.4.13 thorpej #scsibus* at sbpscsi?
371 1.110.4.2 nathanw
372 1.110.4.2 nathanw # Audio Devices
373 1.110.4.2 nathanw
374 1.110.4.2 nathanw # PCI audio devices
375 1.110.4.2 nathanw #clcs* at pci? dev ? function ? # Cirrus Logic CS4280
376 1.110.4.2 nathanw #cmpci* at pci? dev ? function ? # C-Media CMI8338/8738
377 1.110.4.2 nathanw eap* at pci? dev ? function ? # Ensoniq AudioPCI
378 1.110.4.2 nathanw #eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive
379 1.110.4.2 nathanw #fms* at pci? dev ? function ? # Forte Media FM801
380 1.110.4.2 nathanw #sv* at pci? dev ? function ? # S3 SonicVibes
381 1.110.4.2 nathanw
382 1.110.4.2 nathanw # OPL[23] FM synthesizers
383 1.110.4.6 nathanw #opl* at cmpci? flags 1
384 1.110.4.2 nathanw #opl* at eso?
385 1.110.4.2 nathanw #opl* at fms?
386 1.110.4.2 nathanw
387 1.110.4.2 nathanw # Audio support
388 1.110.4.7 nathanw #audio* at awacs?
389 1.110.4.2 nathanw #audio* at clcs?
390 1.110.4.2 nathanw #audio* at cmpci?
391 1.110.4.2 nathanw audio* at eap?
392 1.110.4.2 nathanw #audio* at eso?
393 1.110.4.2 nathanw #audio* at fms?
394 1.110.4.2 nathanw #audio* at sv?
395 1.110.4.2 nathanw audio* at uaudio?
396 1.110.4.2 nathanw
397 1.110.4.2 nathanw # MPU 401 UARTs
398 1.110.4.6 nathanw #mpu* at cmpci?
399 1.110.4.2 nathanw #mpu* at eso?
400 1.110.4.2 nathanw #mpu* at fms?
401 1.110.4.2 nathanw
402 1.110.4.2 nathanw # MIDI support
403 1.110.4.2 nathanw midi* at eap? # 137[01] MIDI port
404 1.110.4.2 nathanw #midi* at mpu? # MPU 401
405 1.110.4.2 nathanw
406 1.110.4.2 nathanw pseudo-device vnd 4 # disk-like interface to files
407 1.110.4.2 nathanw pseudo-device ccd 4 # concatenated/striped disk devices
408 1.110.4.10 nathanw #pseudo-device cgd 4 # cryptographic disk devices
409 1.110.4.4 nathanw #pseudo-device raid 8 # RAIDframe disk driver
410 1.110.4.2 nathanw #options RAID_AUTOCONFIG # auto-configuration of RAID components
411 1.110.4.4 nathanw # Options to enable various other RAIDframe RAID types.
412 1.110.4.7 nathanw # options RF_INCLUDE_EVENODD=1
413 1.110.4.7 nathanw # options RF_INCLUDE_RAID5_RS=1
414 1.110.4.7 nathanw # options RF_INCLUDE_PARITYLOGGING=1
415 1.110.4.7 nathanw # options RF_INCLUDE_CHAINDECLUSTER=1
416 1.110.4.7 nathanw # options RF_INCLUDE_INTERDECLUSTER=1
417 1.110.4.4 nathanw # options RF_INCLUDE_PARITY_DECLUSTERING=1
418 1.110.4.7 nathanw # options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
419 1.110.4.2 nathanw pseudo-device md 1 # memory disk device
420 1.110.4.2 nathanw pseudo-device loop # network loopback
421 1.110.4.2 nathanw pseudo-device bpfilter 8 # packet filter
422 1.110.4.2 nathanw pseudo-device ipfilter # IP filter (firewall) and NAT
423 1.110.4.2 nathanw pseudo-device ppp 2 # Point-to-Point Protocol
424 1.110.4.2 nathanw pseudo-device pppoe # PPP over Ethernet (RFC 2516)
425 1.110.4.2 nathanw pseudo-device sl 2 # Serial Line IP
426 1.110.4.2 nathanw pseudo-device tun 4 # network tunneling over tty
427 1.110.4.2 nathanw #pseudo-device gre 2 # generic L3 over IP tunnel
428 1.110.4.2 nathanw pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
429 1.110.4.2 nathanw #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
430 1.110.4.2 nathanw #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
431 1.110.4.2 nathanw pseudo-device vlan # IEEE 802.1q encapsulation
432 1.110.4.2 nathanw pseudo-device bridge # simple inter-network bridging
433 1.110.4.2 nathanw pseudo-device pty # pseudo-terminals
434 1.110.4.2 nathanw pseudo-device rnd # /dev/random and in-kernel generator
435 1.110.4.2 nathanw pseudo-device openfirm # /dev/openfirm
436 1.110.4.7 nathanw pseudo-device wsmux # mouse and keyboard multiplexor
437 1.110.4.7 nathanw pseudo-device clockctl # user control of clock subsystem
438