Sun Jun 16 08:18:00 2013 UTC ()
Use "-mtune-arm9e" for CPUFLAGS rather than "-march=armv5te".
The latter seems to cause problems around USB xfers (but not 100% sure).


(tsutsui)
diff -r1.16 -r1.17 src/sys/arch/evbarm/conf/HPT5325

cvs diff -r1.16 -r1.17 src/sys/arch/evbarm/conf/HPT5325 (switch to unified diff)

--- src/sys/arch/evbarm/conf/HPT5325 2013/06/16 08:13:28 1.16
+++ src/sys/arch/evbarm/conf/HPT5325 2013/06/16 08:18:00 1.17
@@ -1,526 +1,527 @@ @@ -1,526 +1,527 @@
1# $NetBSD: HPT5325,v 1.16 2013/06/16 08:13:28 tsutsui Exp $ 1# $NetBSD: HPT5325,v 1.17 2013/06/16 08:18:00 tsutsui Exp $
2# 2#
3# This configuration supports for HP T5325 Thin Client 3# This configuration supports for HP T5325 Thin Client
4# 4#
5 5
6include "arch/evbarm/conf/std.marvell" 6include "arch/evbarm/conf/std.marvell"
7 7
8options INCLUDE_CONFIG_FILE # embed config file in kernel binary 8options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9 9
10# estimated number of users 10# estimated number of users
11 11
12maxusers 32 12maxusers 32
13 13
14# Board Type 14# Board Type
15makeoptions BOARDTYPE="hpt5325" 15makeoptions BOARDTYPE="hpt5325"
16options EVBARM_BOARDTYPE=hpt5325 16options EVBARM_BOARDTYPE=hpt5325
17 17
18# CPU options 18# CPU options
19options CPU_SHEEVA 19options CPU_SHEEVA
20#options MV_L2_CACHE_ENABLE 20#options MV_L2_CACHE_ENABLE
21#options MV_L2_CACHE_WRITE_THROUGH 21#options MV_L2_CACHE_WRITE_THROUGH
22options MV_CACHE_RANGE_OPS 22options MV_CACHE_RANGE_OPS
23makeoptions CPUFLAGS="-march=armv5te" 23#makeoptions CPUFLAGS="-march=armv5te"
 24makeoptions CPUFLAGS="-mtune=arm9e"
24 25
25# Marvell SoC options 26# Marvell SoC options
26options KIRKWOOD 27options KIRKWOOD
27 28
28# Standard system options 29# Standard system options
29 30
30options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 31options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
31#options NTP # NTP phase/frequency locked loop 32#options NTP # NTP phase/frequency locked loop
32 33
33# File systems 34# File systems
34 35
35file-system FFS # UFS 36file-system FFS # UFS
36file-system EXT2FS # second extended file system (linux) 37file-system EXT2FS # second extended file system (linux)
37#file-system LFS # log-structured file system 38#file-system LFS # log-structured file system
38file-system MFS # memory file system 39file-system MFS # memory file system
39file-system NFS # Network File System client 40file-system NFS # Network File System client
40#file-system NTFS # Windows/NT file system (experimental) 41#file-system NTFS # Windows/NT file system (experimental)
41file-system CD9660 # ISO 9660 + Rock Ridge file system 42file-system CD9660 # ISO 9660 + Rock Ridge file system
42file-system MSDOSFS # MS-DOS file system 43file-system MSDOSFS # MS-DOS file system
43file-system FDESC # /dev/fd 44file-system FDESC # /dev/fd
44file-system KERNFS # /kern 45file-system KERNFS # /kern
45file-system NULLFS # loopback file system 46file-system NULLFS # loopback file system
46#file-system OVERLAY # overlay file system 47#file-system OVERLAY # overlay file system
47file-system PROCFS # /proc 48file-system PROCFS # /proc
48#file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 49#file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
49#file-system UMAPFS # NULLFS + uid and gid remapping 50#file-system UMAPFS # NULLFS + uid and gid remapping
50#file-system UNION # union file system 51#file-system UNION # union file system
51#file-system CODA # Coda File System; also needs vcoda (below) 52#file-system CODA # Coda File System; also needs vcoda (below)
52#file-system SMBFS # experimental - CIFS; also needs nsmb (below) 53#file-system SMBFS # experimental - CIFS; also needs nsmb (below)
53file-system PTYFS # /dev/ptm support 54file-system PTYFS # /dev/ptm support
54file-system TMPFS # Efficient memory file-system 55file-system TMPFS # Efficient memory file-system
55file-system UDF # experimental - OSTA UDF CD/DVD file-system 56file-system UDF # experimental - OSTA UDF CD/DVD file-system
56#file-system HFS # experimental - Apple HFS+ (read-only) 57#file-system HFS # experimental - Apple HFS+ (read-only)
57 58
58# File system options 59# File system options
59#options QUOTA # legacy UFS quotas 60#options QUOTA # legacy UFS quotas
60#options QUOTA2 # new, in-filesystem UFS quotas 61#options QUOTA2 # new, in-filesystem UFS quotas
61#options FFS_EI # FFS Endian Independent support 62#options FFS_EI # FFS Endian Independent support
62options WAPBL # File system journaling support 63options WAPBL # File system journaling support
63# Note that UFS_DIRHASH is suspected of causing kernel memory corruption. 64# Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
64# It is not recommended for general use. 65# It is not recommended for general use.
65#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 66#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
66options NFSSERVER # Network File System server 67options NFSSERVER # Network File System server
67options FFS_NO_SNAPSHOT # No FFS snapshot support 68options FFS_NO_SNAPSHOT # No FFS snapshot support
68#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 69#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
69 # immutable) behave as system flags. 70 # immutable) behave as system flags.
70 71
71# Networking options 72# Networking options
72 73
73#options GATEWAY # packet forwarding 74#options GATEWAY # packet forwarding
74options INET # IP + ICMP + TCP + UDP 75options INET # IP + ICMP + TCP + UDP
75options INET6 # IPv6 76options INET6 # IPv6
76#options IPSEC # IP security 77#options IPSEC # IP security
77#options IPSEC_DEBUG # debug for IP security 78#options IPSEC_DEBUG # debug for IP security
78#options MROUTING # IP multicast routing 79#options MROUTING # IP multicast routing
79#options PIM # Protocol Independent Multicast 80#options PIM # Protocol Independent Multicast
80#options NETATALK # AppleTalk networking protocols 81#options NETATALK # AppleTalk networking protocols
81#options PPP_BSDCOMP # BSD-Compress compression support for PPP 82#options PPP_BSDCOMP # BSD-Compress compression support for PPP
82#options PPP_DEFLATE # Deflate compression support for PPP 83#options PPP_DEFLATE # Deflate compression support for PPP
83#options PPP_FILTER # Active filter support for PPP (requires bpf) 84#options PPP_FILTER # Active filter support for PPP (requires bpf)
84#options PFIL_HOOKS # pfil(9) packet filter hooks 85#options PFIL_HOOKS # pfil(9) packet filter hooks
85#options IPFILTER_LOG # ipmon(8) log support 86#options IPFILTER_LOG # ipmon(8) log support
86#options IPFILTER_LOOKUP # ippool(8) support 87#options IPFILTER_LOOKUP # ippool(8) support
87#options IPFILTER_COMPAT # Compat for IP-Filter 88#options IPFILTER_COMPAT # Compat for IP-Filter
88#options IPFILTER_DEFAULT_BLOCK # block all packets by default 89#options IPFILTER_DEFAULT_BLOCK # block all packets by default
89#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 90#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
90 91
91#options NFS_BOOT_BOOTP 92#options NFS_BOOT_BOOTP
92options NFS_BOOT_DHCP 93options NFS_BOOT_DHCP
93#options NFS_BOOT_BOOTPARAM 94#options NFS_BOOT_BOOTPARAM
94 95
95# Compatibility options 96# Compatibility options
96 97
97#options COMPAT_09 # NetBSD 0.9 compatibility. 98#options COMPAT_09 # NetBSD 0.9 compatibility.
98#options COMPAT_10 # NetBSD 1.0 compatibility. 99#options COMPAT_10 # NetBSD 1.0 compatibility.
99#options COMPAT_11 # NetBSD 1.1 compatibility. 100#options COMPAT_11 # NetBSD 1.1 compatibility.
100#options COMPAT_12 # NetBSD 1.2 compatibility. 101#options COMPAT_12 # NetBSD 1.2 compatibility.
101#options COMPAT_13 # NetBSD 1.3 compatibility. 102#options COMPAT_13 # NetBSD 1.3 compatibility.
102#options COMPAT_14 # NetBSD 1.4 compatibility. 103#options COMPAT_14 # NetBSD 1.4 compatibility.
103#options COMPAT_15 # NetBSD 1.5 compatibility. 104#options COMPAT_15 # NetBSD 1.5 compatibility.
104#options COMPAT_16 # NetBSD 1.6 compatibility. 105#options COMPAT_16 # NetBSD 1.6 compatibility.
105#options COMPAT_20 # NetBSD 2.0 compatibility. 106#options COMPAT_20 # NetBSD 2.0 compatibility.
106#options COMPAT_30 # NetBSD 3.0 compatibility. 107#options COMPAT_30 # NetBSD 3.0 compatibility.
107#options COMPAT_40 # NetBSD 4.0 compatibility. 108#options COMPAT_40 # NetBSD 4.0 compatibility.
108options COMPAT_50 # NetBSD 5.0 compatibility. 109options COMPAT_50 # NetBSD 5.0 compatibility.
109options COMPAT_60 # NetBSD 6.0 compatibility. 110options COMPAT_60 # NetBSD 6.0 compatibility.
110#options COMPAT_43 # 4.3BSD compatibility. 111#options COMPAT_43 # 4.3BSD compatibility.
111#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 112#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
112 113
113options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility 114options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
114options COMPAT_LINUX # binary compatibility with Linux 115options COMPAT_LINUX # binary compatibility with Linux
115options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 116options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
116 117
117# Shared memory options 118# Shared memory options
118 119
119options SYSVMSG # System V-like message queues 120options SYSVMSG # System V-like message queues
120options SYSVSEM # System V-like semaphores 121options SYSVSEM # System V-like semaphores
121options SYSVSHM # System V-like memory sharing 122options SYSVSHM # System V-like memory sharing
122 123
123# Device options 124# Device options
124 125
125#options MEMORY_DISK_HOOKS # boottime setup of ramdisk 126#options MEMORY_DISK_HOOKS # boottime setup of ramdisk
126#options MEMORY_DISK_IS_ROOT # use memory disk as root 127#options MEMORY_DISK_IS_ROOT # use memory disk as root
127#options MEMORY_DISK_DYNAMIC 128#options MEMORY_DISK_DYNAMIC
128#options MEMORY_DISK_ROOT_SIZE=22528 # Size in blocks 129#options MEMORY_DISK_ROOT_SIZE=22528 # Size in blocks
129#options MEMORY_RBFLAGS=RB_AUTOBOOT 130#options MEMORY_RBFLAGS=RB_AUTOBOOT
130 131
131# Miscellaneous kernel options 132# Miscellaneous kernel options
132 133
133#options KTRACE # system call tracing, a la ktrace(1) 134#options KTRACE # system call tracing, a la ktrace(1)
134options IRQSTATS # manage IRQ statistics 135options IRQSTATS # manage IRQ statistics
135#options LKM # loadable kernel modules 136#options LKM # loadable kernel modules
136#options KMEMSTATS # kernel memory statistics 137#options KMEMSTATS # kernel memory statistics
137options MIIVERBOSE # Verbose MII autoconfuration messages 138options MIIVERBOSE # Verbose MII autoconfuration messages
138#options PCIVERBOSE # Verbose PCI descriptions 139#options PCIVERBOSE # Verbose PCI descriptions
139options USBVERBOSE # verbose USB device autoconfig messages 140options USBVERBOSE # verbose USB device autoconfig messages
140#options DDB_KEYCODE=0x40 141#options DDB_KEYCODE=0x40
141#options USERCONF # userconf(4) support 142#options USERCONF # userconf(4) support
142#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 143#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
143#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 144#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
144 145
145# Alternate buffer queue strategies for better responsiveness under high 146# Alternate buffer queue strategies for better responsiveness under high
146# disk I/O load. 147# disk I/O load.
147#options BUFQ_READPRIO 148#options BUFQ_READPRIO
148options BUFQ_PRIOCSCAN 149options BUFQ_PRIOCSCAN
149 150
150# Development and Debugging options 151# Development and Debugging options
151 152
152#options PERFCTRS # performance counters 153#options PERFCTRS # performance counters
153options DIAGNOSTIC # internally consistency checks 154options DIAGNOSTIC # internally consistency checks
154#options DEBUG 155#options DEBUG
155#options PMAP_DEBUG # Enable pmap_debug_level code 156#options PMAP_DEBUG # Enable pmap_debug_level code
156#options VERBOSE_INIT_ARM # verbose bootstraping messages 157#options VERBOSE_INIT_ARM # verbose bootstraping messages
157options DDB # in-kernel debugger 158options DDB # in-kernel debugger
158#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 159#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
159#options KGDB 160#options KGDB
160#options DEBUG_KGDB 161#options DEBUG_KGDB
161makeoptions DEBUG="-g" # compile full symbol table 162makeoptions DEBUG="-g" # compile full symbol table
162#makeoptions COPTS="-O2" 163#makeoptions COPTS="-O2"
163options SYMTAB_SPACE=800000 164options SYMTAB_SPACE=800000
164#options AUDIO_DEBUG=2 165#options AUDIO_DEBUG=2
165 166
166config netbsd root on ? type ? 167config netbsd root on ? type ?
167 168
168# The main bus device 169# The main bus device
169mainbus0 at root 170mainbus0 at root
170 171
171# The boot cpu 172# The boot cpu
172cpu0 at mainbus? 173cpu0 at mainbus?
173 174
174# Marvell MV88F6xxx Kirkwood System-on-chip 175# Marvell MV88F6xxx Kirkwood System-on-chip
175mvsoc0 at mainbus? 176mvsoc0 at mainbus?
176 177
177# On-chip PCI Express Interface 178# On-chip PCI Express Interface
178mvpex* at mvsoc? offset ? irq ? 179mvpex* at mvsoc? offset ? irq ?
179 180
180# PCI bus support 181# PCI bus support
181options PCI_NETBSD_CONFIGURE 182options PCI_NETBSD_CONFIGURE
182#options PCI_CONFIG_DUMP # verbosely dump PCI config space 183#options PCI_CONFIG_DUMP # verbosely dump PCI config space
183 184
184pci* at mvpex? 185pci* at mvpex?
185 186
186pchb* at pci? dev ? function ? # PCI-Host bridges 187pchb* at pci? dev ? function ? # PCI-Host bridges
187 188
188#xgifb at pci? function ? # XGI Volari Z11 GPU (not yet) 189#xgifb at pci? function ? # XGI Volari Z11 GPU (not yet)
189#wsdisplay0 at wsemuldisplaydev? console 1 190#wsdisplay0 at wsemuldisplaydev? console 1
190 191
191# On-chip Serial-ATA II Host Controller (SATAHC) 192# On-chip Serial-ATA II Host Controller (SATAHC)
192mvsata* at mvsoc? offset ? irq ? 193mvsata* at mvsoc? offset ? irq ?
193 194
194# On-chip Gigabit Ethernet Controller Interface 195# On-chip Gigabit Ethernet Controller Interface
195mvgbec* at mvsoc? offset ? 196mvgbec* at mvsoc? offset ?
196mvgbe* at mvgbec? port ? irq ? 197mvgbe* at mvgbec? port ? irq ?
197makphy* at mii? phy ? 198makphy* at mii? phy ?
198ukphy* at mii? phy ? 199ukphy* at mii? phy ?
199 200
200# On-chip USB 2.0 Interface 201# On-chip USB 2.0 Interface
201ehci* at mvsoc? offset ? irq ? 202ehci* at mvsoc? offset ? irq ?
202 203
203# On-chip Cryptographic Engines and Security Accelerator 204# On-chip Cryptographic Engines and Security Accelerator
204#mvcesa* at mvsoc? offset ? irq ? 205#mvcesa* at mvsoc? offset ? irq ?
205 206
206# On-chip Two-Wire Serial Interface (TWSI) 207# On-chip Two-Wire Serial Interface (TWSI)
207gttwsi* at mvsoc? offset ? irq ? 208gttwsi* at mvsoc? offset ? irq ?
208iic* at gttwsi? 209iic* at gttwsi?
209 210
210# On-chip UART Interface 211# On-chip UART Interface
211com* at mvsoc? offset ? irq ? 212com* at mvsoc? offset ? irq ?
212 213
213# On-chip IDMA Controller 214# On-chip IDMA Controller
214#gtidmac* at mvsoc? offset ? irq ? 215#gtidmac* at mvsoc? offset ? irq ?
215 216
216# On-chip General Purpose I/O Port Interface 217# On-chip General Purpose I/O Port Interface
217#mvsocgpp* at mvsoc? offset ? irq ? 218#mvsocgpp* at mvsoc? offset ? irq ?
218#gpio* at mvsocgpp? 219#gpio* at mvsocgpp?
219 220
220# On-chip Timers 221# On-chip Timers
221mvsoctmr* at mvsoc? offset ? irq ? 222mvsoctmr* at mvsoc? offset ? irq ?
222 223
223# On-chip SD/MMC Interface 224# On-chip SD/MMC Interface
224#mvsdio* at mvsoc? offset ? irq ? 225#mvsdio* at mvsoc? offset ? irq ?
225#sdmmc* at mvsdio? 226#sdmmc* at mvsdio?
226 227
227#ld* at sdmmc? 228#ld* at sdmmc?
228 229
229# ATA (IDE) bus support 230# ATA (IDE) bus support
230atabus* at ata? 231atabus* at ata?
231#options ATADEBUG 232#options ATADEBUG
232 233
233# IDE drives 234# IDE drives
234wd* at atabus? drive ? flags 0x0000 235wd* at atabus? drive ? flags 0x0000
235 236
236# ATAPI bus support 237# ATAPI bus support
237atapibus* at atapi? 238atapibus* at atapi?
238 239
239# ATAPI devices 240# ATAPI devices
240# flags have the same meaning as for IDE drives. 241# flags have the same meaning as for IDE drives.
241cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 242cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
242sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 243sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
243 244
244# USB bus support 245# USB bus support
245usb* at ehci? 246usb* at ehci?
246 247
247# USB Hubs 248# USB Hubs
248uhub* at usb? 249uhub* at usb?
249uhub* at uhub? port ? 250uhub* at uhub? port ?
250 251
251# USB HID device 252# USB HID device
252uhidev* at uhub? port ? configuration ? interface ? 253uhidev* at uhub? port ? configuration ? interface ?
253 254
254# USB Mice 255# USB Mice
255ums* at uhidev? reportid ? 256ums* at uhidev? reportid ?
256wsmouse* at ums? mux 0 257wsmouse* at ums? mux 0
257 258
258# USB eGalax touch-panel 259# USB eGalax touch-panel
259uep* at uhub? port ? 260uep* at uhub? port ?
260wsmouse* at uep? mux 0 261wsmouse* at uep? mux 0
261 262
262# USB Keyboards 263# USB Keyboards
263ukbd* at uhidev? reportid ? 264ukbd* at uhidev? reportid ?
264wskbd* at ukbd? console ? mux 1 265wskbd* at ukbd? console ? mux 1
265 266
266# USB TEMPer and TEMPerHUM 267# USB TEMPer and TEMPerHUM
267uthum* at uhidev? reportid ? 268uthum* at uhidev? reportid ?
268 269
269# USB serial adapter 270# USB serial adapter
270ucycom* at uhidev? reportid ? 271ucycom* at uhidev? reportid ?
271 272
272# USB Generic HID devices 273# USB Generic HID devices
273uhid* at uhidev? reportid ? 274uhid* at uhidev? reportid ?
274 275
275# USB LCDs and USB-VGA adaptors 276# USB LCDs and USB-VGA adaptors
276udl* at uhub? port ? # DisplayLink DL-1x0/1x5 277udl* at uhub? port ? # DisplayLink DL-1x0/1x5
277wsdisplay* at udl? 278wsdisplay* at udl?
278 279
279options WSEMUL_VT100 # VT100 / VT220 emulation 280options WSEMUL_VT100 # VT100 / VT220 emulation
280options WSDISPLAY_COMPAT_USL # wsconscfg VT handling 281options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
281 282
282# USB Printer 283# USB Printer
283ulpt* at uhub? port ? configuration ? interface ? 284ulpt* at uhub? port ? configuration ? interface ?
284 285
285# USB Modem 286# USB Modem
286umodem* at uhub? port ? configuration ? 287umodem* at uhub? port ? configuration ?
287ucom* at umodem? 288ucom* at umodem?
288 289
289# Option N.V. Wireless WAN modems 290# Option N.V. Wireless WAN modems
290uhso* at uhub? port ? configuration ? 291uhso* at uhub? port ? configuration ?
291 292
292# USB Mass Storage 293# USB Mass Storage
293umass* at uhub? port ? configuration ? interface ? 294umass* at uhub? port ? configuration ? interface ?
294wd* at umass? 295wd* at umass?
295scsibus* at scsi? 296scsibus* at scsi?
296sd* at scsibus? target ? lun ? # SCSI disk drives 297sd* at scsibus? target ? lun ? # SCSI disk drives
297cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 298cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
298 299
299# USB audio 300# USB audio
300uaudio* at uhub? port ? configuration ? 301uaudio* at uhub? port ? configuration ?
301 302
302# USB MIDI 303# USB MIDI
303umidi* at uhub? port ? configuration ? 304umidi* at uhub? port ? configuration ?
304 305
305# USB IrDA 306# USB IrDA
306# USB-IrDA bridge spec 307# USB-IrDA bridge spec
307uirda* at uhub? port ? configuration ? interface ? 308uirda* at uhub? port ? configuration ? interface ?
308irframe* at uirda? 309irframe* at uirda?
309 310
310stuirda* at uhub? port ? configuration ? interface ? 311stuirda* at uhub? port ? configuration ? interface ?
311irframe* at stuirda? 312irframe* at stuirda?
312 313
313# SigmaTel STIr4200 USB/IrDA Bridge 314# SigmaTel STIr4200 USB/IrDA Bridge
314ustir* at uhub? port ? 315ustir* at uhub? port ?
315irframe* at ustir? 316irframe* at ustir?
316 317
317# USB Ethernet adapters 318# USB Ethernet adapters
318aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 319aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
319axe* at uhub? port ? # ASIX AX88172 based adapters 320axe* at uhub? port ? # ASIX AX88172 based adapters
320cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 321cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
321cue* at uhub? port ? # CATC USB-EL1201A based adapters 322cue* at uhub? port ? # CATC USB-EL1201A based adapters
322kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 323kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
323udav* at uhub? port ? # Davicom DM9601 based adapters 324udav* at uhub? port ? # Davicom DM9601 based adapters
324url* at uhub? port ? # Realtek RTL8150L based adapters 325url* at uhub? port ? # Realtek RTL8150L based adapters
325 326
326# USB 802.11 adapters 327# USB 802.11 adapters
327atu* at uhub? port ? # Atmel AT76C50XX based adapters 328atu* at uhub? port ? # Atmel AT76C50XX based adapters
328ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g 329ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
329rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 330rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g
330zyd* at uhub? port ? # Zydas ZD1211 331zyd* at uhub? port ? # Zydas ZD1211
331 332
332# Prolific PL2301/PL2302 host-to-host adapter 333# Prolific PL2301/PL2302 host-to-host adapter
333upl* at uhub? port ? 334upl* at uhub? port ?
334 335
335# Serial adapters 336# Serial adapters
336ubsa* at uhub? port ? # Belkin serial adapter 337ubsa* at uhub? port ? # Belkin serial adapter
337ucom* at ubsa? portno ? 338ucom* at ubsa? portno ?
338 339
339uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter 340uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter
340ucom* at uchcom? portno ? 341ucom* at uchcom? portno ?
341 342
342uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 343uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
343ucom* at uftdi? portno ? 344ucom* at uftdi? portno ?
344 345
345uipaq* at uhub? port ? # iPAQ PDAs 346uipaq* at uhub? port ? # iPAQ PDAs
346ucom* at uipaq? portno ? 347ucom* at uipaq? portno ?
347 348
348umct* at uhub? port ? # MCT USB-RS232 serial adapter 349umct* at uhub? port ? # MCT USB-RS232 serial adapter
349ucom* at umct? portno ? 350ucom* at umct? portno ?
350 351
351uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 352uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
352ucom* at uplcom? portno ? 353ucom* at uplcom? portno ?
353 354
354uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter 355uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter
355ucom* at uslsa? portno ? 356ucom* at uslsa? portno ?
356 357
357uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 358uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
358ucom* at uvscom? portno ? 359ucom* at uvscom? portno ?
359 360
360# RIM BlackBerry 361# RIM BlackBerry
361#uberry* at uhub? port ? 362#uberry* at uhub? port ?
362 363
363# Diamond Multimedia Rio 500 364# Diamond Multimedia Rio 500
364#urio* at uhub? port ? 365#urio* at uhub? port ?
365 366
366# USB Handspring Visor 367# USB Handspring Visor
367uvisor* at uhub? port ? 368uvisor* at uhub? port ?
368ucom* at uvisor? 369ucom* at uvisor?
369 370
370# Kyocera AIR-EDGE PHONE 371# Kyocera AIR-EDGE PHONE
371#ukyopon* at uhub? port ? 372#ukyopon* at uhub? port ?
372#ucom* at ukyopon? portno ? 373#ucom* at ukyopon? portno ?
373 374
374# USB scanners 375# USB scanners
375uscanner* at uhub? port ? 376uscanner* at uhub? port ?
376 377
377# USB scanners that use SCSI emulation, e.g., HP5300 378# USB scanners that use SCSI emulation, e.g., HP5300
378usscanner* at uhub? port ? 379usscanner* at uhub? port ?
379 380
380# Topfield TF5000PVR range of DVB recorders 381# Topfield TF5000PVR range of DVB recorders
381#utoppy* at uhub? port ? 382#utoppy* at uhub? port ?
382 383
383# Y@P firmware loader 384# Y@P firmware loader
384#uyap* at uhub? port ? 385#uyap* at uhub? port ?
385 386
386# D-Link DSB-R100 USB radio 387# D-Link DSB-R100 USB radio
387#udsbr* at uhub? port ? 388#udsbr* at uhub? port ?
388#radio* at udsbr? 389#radio* at udsbr?
389 390
390# USB Generic driver 391# USB Generic driver
391ugen* at uhub? port ? 392ugen* at uhub? port ?
392 393
393# USB 3G datacards 394# USB 3G datacards
394#u3ginit* at uhub? port ? 395#u3ginit* at uhub? port ?
395#u3g* at uhub? port ? 396#u3g* at uhub? port ?
396#ucom* at u3g? 397#ucom* at u3g?
397 398
398# USB generic serial port (e.g., data over cellular) 399# USB generic serial port (e.g., data over cellular)
399ugensa* at uhub? port ? 400ugensa* at uhub? port ?
400ucom* at ugensa? 401ucom* at ugensa?
401 402
402# Bluetooth Controller and Device support 403# Bluetooth Controller and Device support
403 404
404# Bluetooth SDIO Controller 405# Bluetooth SDIO Controller
405#sbt* at sdmmc? 406#sbt* at sdmmc?
406 407
407# Bluetooth USB Controllers 408# Bluetooth USB Controllers
408ubt* at uhub? port ? 409ubt* at uhub? port ?
409aubtfwl* at uhub? port ? 410aubtfwl* at uhub? port ?
410 411
411# Bluetooth Device Hub 412# Bluetooth Device Hub
412bthub* at ubt? 413bthub* at ubt?
413 414
414# Bluetooth HID support 415# Bluetooth HID support
415bthidev* at bthub? 416bthidev* at bthub?
416 417
417# Bluetooth Mouse 418# Bluetooth Mouse
418btms* at bthidev? reportid ? 419btms* at bthidev? reportid ?
419wsmouse* at btms? mux 0 420wsmouse* at btms? mux 0
420 421
421# Bluetooth Keyboard 422# Bluetooth Keyboard
422btkbd* at bthidev? reportid ? 423btkbd* at bthidev? reportid ?
423wskbd* at btkbd? console ? mux 1 424wskbd* at btkbd? console ? mux 1
424 425
425# Bluetooth Apple Magic Mouse 426# Bluetooth Apple Magic Mouse
426btmagic* at bthub? 427btmagic* at bthub?
427wsmouse* at btmagic? mux 0 428wsmouse* at btmagic? mux 0
428 429
429# Bluetooth Audio support 430# Bluetooth Audio support
430btsco* at bthub? 431btsco* at bthub?
431 432
432 433
433# On-chip RTC 434# On-chip RTC
434mvsocrtc* at mvsoc? offset ? irq ? 435mvsocrtc* at mvsoc? offset ? irq ?
435 436
436# Audio support 437# Audio support
437audio* at audiobus? 438audio* at audiobus?
438 439
439# Pseudo-Devices 440# Pseudo-Devices
440 441
441pseudo-device crypto # /dev/crypto device 442pseudo-device crypto # /dev/crypto device
442pseudo-device swcrypto # software crypto implementation 443pseudo-device swcrypto # software crypto implementation
443 444
444# disk/mass storage pseudo-devices 445# disk/mass storage pseudo-devices
445#pseudo-device bio # RAID control device driver 446#pseudo-device bio # RAID control device driver
446#pseudo-device ccd # concatenated/striped disk devices 447#pseudo-device ccd # concatenated/striped disk devices
447#pseudo-device cgd # cryptographic disk devices 448#pseudo-device cgd # cryptographic disk devices
448#pseudo-device raid # RAIDframe disk driver 449#pseudo-device raid # RAIDframe disk driver
449#options RAID_AUTOCONFIG # auto-configuration of RAID components 450#options RAID_AUTOCONFIG # auto-configuration of RAID components
450# Options to enable various other RAIDframe RAID types. 451# Options to enable various other RAIDframe RAID types.
451#options RF_INCLUDE_EVENODD=1 452#options RF_INCLUDE_EVENODD=1
452#options RF_INCLUDE_RAID5_RS=1 453#options RF_INCLUDE_RAID5_RS=1
453#options RF_INCLUDE_PARITYLOGGING=1 454#options RF_INCLUDE_PARITYLOGGING=1
454#options RF_INCLUDE_CHAINDECLUSTER=1 455#options RF_INCLUDE_CHAINDECLUSTER=1
455#options RF_INCLUDE_INTERDECLUSTER=1 456#options RF_INCLUDE_INTERDECLUSTER=1
456#options RF_INCLUDE_PARITY_DECLUSTERING=1 457#options RF_INCLUDE_PARITY_DECLUSTERING=1
457#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 458#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
458#pseudo-device fss # file system snapshot device 459#pseudo-device fss # file system snapshot device
459#pseudo-device putter # for puffs and pud 460#pseudo-device putter # for puffs and pud
460 461
461pseudo-device md # memory disk device (ramdisk) 462pseudo-device md # memory disk device (ramdisk)
462pseudo-device vnd # disk-like interface to files 463pseudo-device vnd # disk-like interface to files
463options VND_COMPRESSION # compressed vnd(4) 464options VND_COMPRESSION # compressed vnd(4)
464 465
465# network pseudo-devices 466# network pseudo-devices
466pseudo-device bpfilter # Berkeley packet filter 467pseudo-device bpfilter # Berkeley packet filter
467#pseudo-device carp # Common Address Redundancy Protocol 468#pseudo-device carp # Common Address Redundancy Protocol
468#pseudo-device ipfilter # IP filter (firewall) and NAT 469#pseudo-device ipfilter # IP filter (firewall) and NAT
469pseudo-device loop # network loopback 470pseudo-device loop # network loopback
470#pseudo-device ppp # Point-to-Point Protocol 471#pseudo-device ppp # Point-to-Point Protocol
471#pseudo-device pppoe # PPP over Ethernet (RFC 2516) 472#pseudo-device pppoe # PPP over Ethernet (RFC 2516)
472#pseudo-device sl # Serial Line IP 473#pseudo-device sl # Serial Line IP
473#pseudo-device strip # Starmode Radio IP (Metricom) 474#pseudo-device strip # Starmode Radio IP (Metricom)
474#pseudo-device irframetty # IrDA frame line discipline 475#pseudo-device irframetty # IrDA frame line discipline
475pseudo-device tap # virtual Ethernet 476pseudo-device tap # virtual Ethernet
476#pseudo-device tun # network tunneling over tty 477#pseudo-device tun # network tunneling over tty
477#pseudo-device gre # generic L3 over IP tunnel 478#pseudo-device gre # generic L3 over IP tunnel
478#pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933) 479#pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933)
479#pseudo-device faith # IPv[46] TCP relay translation i/f 480#pseudo-device faith # IPv[46] TCP relay translation i/f
480pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 481pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
481#pseudo-device vlan # IEEE 802.1q encapsulation 482#pseudo-device vlan # IEEE 802.1q encapsulation
482#pseudo-device bridge # simple inter-network bridging 483#pseudo-device bridge # simple inter-network bridging
483#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 484#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
484#pseudo-device agr # IEEE 802.3ad link aggregation 485#pseudo-device agr # IEEE 802.3ad link aggregation
485#pseudo-device pf # PF packet filter 486#pseudo-device pf # PF packet filter
486#pseudo-device pflog # PF log if 487#pseudo-device pflog # PF log if
487 488
488# miscellaneous pseudo-devices 489# miscellaneous pseudo-devices
489pseudo-device pty # pseudo-terminals 490pseudo-device pty # pseudo-terminals
490#pseudo-device sequencer # MIDI sequencer 491#pseudo-device sequencer # MIDI sequencer
491#options RND_COM 492#options RND_COM
492pseudo-device clockctl # user control of clock subsystem 493pseudo-device clockctl # user control of clock subsystem
493pseudo-device ksyms # /dev/ksyms 494pseudo-device ksyms # /dev/ksyms
494 495
495# a pseudo device needed for Coda # also needs CODA (above) 496# a pseudo device needed for Coda # also needs CODA (above)
496#pseudo-device vcoda # coda minicache <-> venus comm. 497#pseudo-device vcoda # coda minicache <-> venus comm.
497 498
498# a pseudo device needed for SMBFS 499# a pseudo device needed for SMBFS
499#pseudo-device nsmb # experimental - SMB requester 500#pseudo-device nsmb # experimental - SMB requester
500 501
501# wscons pseudo-devices 502# wscons pseudo-devices
502pseudo-device wsmux # mouse & keyboard multiplexor 503pseudo-device wsmux # mouse & keyboard multiplexor
503pseudo-device wsfont 504pseudo-device wsfont
504 505
505# data mover pseudo-devices 506# data mover pseudo-devices
506#pseudo-device swdmover # software dmover(9) back-end 507#pseudo-device swdmover # software dmover(9) back-end
507#pseudo-device dmoverio # /dev/dmover dmover(9) interface 508#pseudo-device dmoverio # /dev/dmover dmover(9) interface
508 509
509#options FILEASSOC # fileassoc(9) - required for Veriexec 510#options FILEASSOC # fileassoc(9) - required for Veriexec
510 511
511# Veriexec 512# Veriexec
512#pseudo-device veriexec 513#pseudo-device veriexec
513# 514#
514# Uncomment the fingerprint methods below that are desired. Note that 515# Uncomment the fingerprint methods below that are desired. Note that
515# removing fingerprint methods will have almost no impact on the kernel 516# removing fingerprint methods will have almost no impact on the kernel
516# code size. 517# code size.
517# 518#
518#options VERIFIED_EXEC_FP_RMD160 519#options VERIFIED_EXEC_FP_RMD160
519#options VERIFIED_EXEC_FP_SHA256 520#options VERIFIED_EXEC_FP_SHA256
520#options VERIFIED_EXEC_FP_SHA384 521#options VERIFIED_EXEC_FP_SHA384
521#options VERIFIED_EXEC_FP_SHA512 522#options VERIFIED_EXEC_FP_SHA512
522#options VERIFIED_EXEC_FP_SHA1 523#options VERIFIED_EXEC_FP_SHA1
523#options VERIFIED_EXEC_FP_MD5 524#options VERIFIED_EXEC_FP_MD5
524 525
525#options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 526#options PAX_MPROTECT=0 # PaX mprotect(2) restrictions
526#options PAX_ASLR=0 # PaX Address Space Layout Randomization 527#options PAX_ASLR=0 # PaX Address Space Layout Randomization