GENERIC revision 1.258
1# 2# This machine description file is used to generate the default NetBSD 3# kernel. The generic kernel on NetBSD/alpha does enough to get booted, 4# etc., but not much more. For a more complete kernel see the ALPHA 5# machine description file. 6# 7# The machine description file can be customised for your specific 8# machine to reduce the kernel size and improve its performance. 9# 10# For further information on compiling NetBSD kernels, see the config(8) 11# man page. 12# 13# For further information on hardware support for this architecture, see 14# the intro(4) man page. For further information about kernel options 15# for this architecture, see the options(4) man page. For an explanation 16# of each device driver in this file see the section 4 man page for the 17# device. 18 19# If you add stuff to this, please add it to the ALPHA configuration, too. 20 21include "arch/alpha/conf/std.alpha" 22 23options INCLUDE_CONFIG_FILE # embed config file in kernel binary 24 25#ident "GENERIC-$Revision: 1.258 $" 26 27maxusers 32 28 29# CPU Support 30options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150) 31options DEC_2100_A50 # Avanti etc: AlphaStation 400, 200, etc. 32options DEC_2100_A500 # Sable: AlphaServer 2100 33options DEC_2100A_A500 # Lynx: AlphaServer 2100A 34options DEC_3000_500 # Flamingo etc: 3000/[4-9]00* 35options DEC_3000_300 # Pelican etc: 3000/300* 36options DEC_AXPPCI_33 # NoName: AXPpci33, etc. 37options DEC_EB164 # EB164: AlphaPC 164 38options DEC_EB64PLUS # EB64+: AlphaPC 64, etc. 39options DEC_KN20AA # KN20AA: AlphaStation 500 and 600 40options DEC_KN8AE # KN8AE: AlphaServer 8200 and 8400 41options DEC_KN300 # KN300: AlphaServer 4100 and 1200 42options DEC_550 # Miata: Digital Personal Workstation 43options DEC_1000 # Mikasa etc: Digital AlphaServer 1000 44options DEC_1000A # Corelle etc: Digital AlphaServer 800/1000A 45options DEC_ALPHABOOK1 # AlphaBook1: Tadpole/DEC AlphaBook 46options DEC_EB66 # EB66: 21066 Evaluation Board 47options DEC_6600 # EV6: 264DP OEM Board 48options API_UP1000 # EV6: Alpha Processor, Inc. UP1000 49 50# Standard system options 51options KTRACE # System call tracing support 52options SYSTRACE # System call vetting via systrace(1) 53options NTP # kernel PLL for NTP 54 55# Enable experimental buffer queue strategy for better responsiveness under 56# high disk I/O load. Use it with caution - it's not proven to be stable yet. 57#options NEW_BUFQ_STRATEGY 58 59# Diagnostic/debugging support options 60options DIAGNOSTIC # Cheap kernel consistency checks 61options DDB # kernel debugger 62options DDB_HISTORY_SIZE=512 # enable history editing in DDB 63#makeoptions DEBUG="-g" 64#makeoptions DEBUGLIST="pattern1 pattern2 ..." 65 66#options KGDB # Remote kernel GDB support 67#options KGDB_DEVNAME="\"com\"" # device to use for KGDB 68#options KGDB_DEVADDR=0x2f8 # at this address 69#options KGDB_DEVRATE=57600 # at this comm. rate 70 71# File systems 72file-system FFS # Fast file system 73file-system MFS # Memory-based file system 74file-system CD9660 # ISO-9660 CD-ROM FS (w/RockRidge extensions) 75file-system MSDOSFS # MS-DOS-compatible file system 76file-system NTFS # Windows/NT file system (experimental) 77file-system NFS # Sun NFS-compatible file system client 78file-system KERNFS # Kernel variable file system (/kern) 79file-system PROCFS # Process file system (/proc) 80 81# File system options 82options QUOTA # UFS quotas 83#options FFS_EI # FFS Endian Independant support 84options SOFTDEP # FFS soft updates support. 85#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 86options NFSSERVER # Sun NFS-compatible file system server 87 88# Networking options 89#options GATEWAY # packet forwarding 90options INET # IP + ICMP + TCP + UDP 91options INET6 # IPV6 92#options IPSEC # IP security 93#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 94#options IPSEC_DEBUG # debug for IP security 95#options MROUTING # IP multicast routing 96#options PIM # Protocol Independent Multicast 97#options NS # XNS 98#options NSIP # XNS tunneling over IP 99#options ISO,TPIP # OSI 100#options EON # OSI tunneling over IP 101#options CCITT,LLC,HDLC # X.25 102#options NETATALK # AppleTalk networking protocols 103#options PPP_BSDCOMP # BSD-Compress compression support for PPP 104#options PPP_DEFLATE # Deflate compression support for PPP 105#options PPP_FILTER # Active filter support for PPP (requires bpf) 106#options PFIL_HOOKS # pfil(9) packet filter hooks 107#options IPFILTER_LOG # ipmon(8) log support 108#options IPFILTER_DEFAULT_BLOCK # block all packets by default 109#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 110 111#options ALTQ # Manipulate network interfaces' output queues 112#options ALTQ_BLUE # Stochastic Fair Blue 113#options ALTQ_CBQ # Class-Based Queueing 114#options ALTQ_CDNR # Diffserv Traffic Conditioner 115#options ALTQ_FIFOQ # First-In First-Out Queue 116#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 117#options ALTQ_HFSC # Hierarchical Fair Service Curve 118#options ALTQ_LOCALQ # Local queueing discipline 119#options ALTQ_PRIQ # Priority Queueing 120#options ALTQ_RED # Random Early Detection 121#options ALTQ_RIO # RED with IN/OUT 122#options ALTQ_WFQ # Weighted Fair Queueing 123 124# 4.3BSD compatibility. Should be optional, but necessary for now. 125options COMPAT_43 126 127# Binary compatibility with previous versions of NetBSD. 128#options COMPAT_09 129options COMPAT_10 130options COMPAT_11 131options COMPAT_12 132options COMPAT_13 133options COMPAT_14 134options COMPAT_16 135options COMPAT_20 136# OSF/1 binary compatibility 137options COMPAT_OSF1 138 139# Linux binary compatibility 140options COMPAT_LINUX 141 142options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 143 144# System V-like message queues 145options SYSVMSG 146#options SEMMNI=10 # number of semaphore identifiers 147#options SEMMNS=60 # number of semaphores in system 148#options SEMUME=10 # max number of undo entries per process 149#options SEMMNU=30 # number of undo structures in system 150 151# System V-like semaphores 152options SYSVSEM 153 154# System V-like shared memory 155options SYSVSHM 156#options SHMMAXPGS=1024 # 1024 pages is the default 157 158# p1003.1b semaphore support 159options P1003_1B_SEMAPHORE 160 161# Loadable Kernel Modules 162options LKM 163 164# Disable kernel security. 165#options INSECURE 166 167# Misc. options 168options EISAVERBOSE # recognize "unknown" EISA devices 169options PCIVERBOSE # recognize "unknown" PCI devices 170options MIIVERBOSE # verbose PHY autoconfig messages 171#options PCI_CONFIG_DUMP # verbosely dump PCI config space 172options SCSIVERBOSE # Verbose SCSI errors 173options USBVERBOSE # verbose USB device autoconfig messages 174options TCVERBOSE # recognize "unknown" TC devices 175#options PCMCIAVERBOSE 176options USERCONF # userconf(4) support 177#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 178options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 179options FONT_GALLANT12x22 # Console font for TC devices 180 181# The Alpha console firmware network boots using the BOOTP 182# protocol, so we ask the NFS code to use BOOTP/DHCP as well, 183# in case we have NFS root. 184options NFS_BOOT_DHCP # superset of BOOTP 185 186# WS console uses SUN or VT100 terminal emulation 187options WSEMUL_VT100 188 189# realtime clock compatible to OSF/1 190#options CLOCK_COMPAT_OSF1 191 192config netbsd root on ? type ? 193#config netbsd root on sd0 type ffs 194#config netbsd root on ? type nfs 195 196mainbus0 at root 197cpu* at mainbus0 198 199# TurboLaser bus support and devices 200tlsb* at mainbus0 201gbus* at tlsb? node ? offset ? 202tlsbmem* at tlsb? node ? offset ? 203kft* at tlsb? node ? offset ? 204 205# Gbus Devices 206mcclock* at gbus? offset ? 207 208# MCBUS bus support 209mcbus* at mainbus0 210mcmem* at mcbus? mid ? 211 212#i2c at mcbus? 213 214#EV6 Tsunami Core Logic 215 216tsc* at mainbus0 217 218# DECpc AXP150 (Jensen) internal bus support 219jensenio* at mainbus0 220 221com* at jensenio? port ? 222lpt* at jensenio? port ? 223mcclock* at jensenio? port ? 224pckbc* at jensenio? port ? 225 226# TURBOchannel host bus adapter support 227tcasic* at mainbus0 228 229# TURBOchannel bus support 230tc* at tcasic? 231 232# TURBOchannel devices 233ioasic* at tc? slot ? offset ? 234mcclock* at ioasic? offset ? 235le* at ioasic? offset ? 236zsc0 at ioasic? offset 0x100000 237zsc1 at ioasic? offset 0x180000 238bba0 at ioasic? offset ? 239tcds* at tc? slot ? offset ? 240asc* at tcds? chip ? 241asc* at tc? slot ? offset ? 242le* at tc? slot ? offset ? 243fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards 244cfb* at tc? slot ? offset ? 245mfb* at tc? slot ? offset ? 246tfb* at tc? slot ? offset ? 247sfb* at tc? slot ? offset ? 248#sfbp* at tc? slot ? offset ? 249px* at tc? slot ? offset ? 250pxg* at tc? slot ? offset ? 251 252# TurboChannel serial attachments 253zstty* at zsc? channel ? # serial ports on B channels 254lkkbd0 at zsc1 channel ? # keyboard port on A channels 255vsms0 at zsc0 channel ? # mouse port on A channels 256 257# PCI host bus adapter support 258apecs* at mainbus? 259cia* at mainbus? 260irongate* at mainbus? 261lca* at mainbus? 262dwlpx* at kft? 263mcpcia* at mcbus? mid ? 264tsp* at tsc? 265ttwoga* at mainbus? 266 267# Sable PCI and STDIO bus and devices 268ttwopci* at ttwoga? hose ? 269sableio* at ttwopci? bus ? 270com* at sableio? port ? 271lpt* at sableio? port ? 272pckbc* at sableio? port ? 273fdc* at sableio? port ? 274 275# PCI bus support 276pci* at apecs? 277pci* at cia? 278pci* at irongate? 279pci* at lca? 280pci* at ppb? 281pci* at dwlpx? 282pci* at mcpcia? 283pci* at tsp? 284pci* at ttwopci? 285 286# AGP support 287agp* at irongate? 288 289# PCI devices 290 291# PCI cryptographic devices 292hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 293ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 294 295adv* at pci? dev ? function ? # AdvanSys SCSI 296adw* at pci? dev ? function ? # AdvanSys Wide SCSI 297#options SCSI_ADW_WDTR_DISABLE # disable WDTR 298#options SCSI_ADW_SDTR_DISABLE # disable SDTR 299#options SCSI_ADW_TAGQ_DISABLE # disable Tag Queuing 300ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 301autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 302bha* at pci? dev ? function ? # BusLogic 9xx SCSI (untested) 303cac* at pci? dev ? function ? # Compaq array controller (untested) 304cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 Audio 305cy* at pci? dev ? function ? # Cyclades Cyclom-Y (untested) 306cz* at pci? dev ? function ? # Cyclades-Z (untested) 307dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 308eap* at pci? dev ? function ? # Ensoniq AudioPCI 309en* at pci? dev ? function ? # ENI PCI ATM (untested) 310ep* at pci? dev ? function ? # 3COM 3c59x 311epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 312eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 313ex* at pci? dev ? function ? # 3COM 3c90x[BC] Ethernet 314fpa* at pci? dev ? function ? # DEC DEFPA FDDI 315fxp* at pci? dev ? function ? # Intel EEPRO 10+/100B 316gsip* at pci? dev ? function ? # NS DP83820 Gigabit Ethernet 317iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 318isp* at pci? dev ? function ? # Qlogic ISP 10x0 SCSI 319le* at pci? dev ? function ? # PCI LANCE Ethernet (untested) 320sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 321siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 322esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 323mlx* at pci? dev ? function ? # Mylex DAC960 / DEC SWXCR (untested) 324mpt* at pci? dev ? function ? # LSI Fusion SCSI/FC 325ne* at pci? dev ? function ? # NE2000-compatible Ethernet 326ohci* at pci? dev ? function ? # USB Open Host Controller 327ehci* at pci? dev ? function ? # USB-2 Host controller 328pceb* at pci? dev ? function ? # Intel PCI-EISA Bridges 329pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 330acardide* at pci? dev ? function ? # Acard IDE controllers 331aceride* at pci? dev ? function ? # Acer Lab IDE controllers 332artsata* at pci? dev ? function ? # Intel i31244 SATA controller 333cmdide* at pci? dev ? function ? # CMD tech IDE controllers 334cypide* at pci? dev ? function ? # Cypress IDE controllers 335hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 336optiide* at pci? dev ? function ? # Opti IDE controllers 337piixide* at pci? dev ? function ? # Intel IDE controllers 338pdcide* at pci? dev ? function ? # Promise IDE controllers 339pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 340satalink* at pci? dev ? function ? # SiI SATALink controllers 341siside* at pci? dev ? function ? # SiS IDE controllers 342slide* at pci? dev ? function ? # Symphony Labs IDE controllers 343viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 344pcscp* at pci? dev ? function ? # AMD Am53c974 PCscsi-PCI 345ppb* at pci? dev ? function ? # PCI-PCI Bridges 346rtk* at pci? dev ? function ? # Realtek 8129/8139 Ethernet 347sio* at pci? dev ? function ? # Intel PCI-ISA Bridges 348sip* at pci? dev ? function ? # SiS 900 Ethernet 349stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 GigE 350sv* at pci? dev ? function ? # S3 SonicVibes 351tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics 352ti* at pci? dev ? function ? # Alteon Tigon Gig-E 353tl* at pci? dev ? function ? # TI ThunderLAN Ethernet 354tlp* at pci? dev ? function ? # DECchip 21x4x and clones 355uhci* at pci? dev ? function ? # USB Univ. Host Controller 356vga* at pci? dev ? function ? # PCI VGA Graphics 357vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 358wi* at pci? dev ? function ? # Lucent/Intersil WaveLAN/IEEE 359yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 360 361opl* at cmpci? flags 1 362opl* at eso? 363#opl* at sv? 364opl* at yds? 365 366mpu* at cmpci? 367mpu* at eso? 368mpu* at yds? 369 370# MII/PHY support 371exphy* at mii? phy ? # 3Com internal PHYs 372icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 373inphy* at mii? phy ? # Intel 82555 PHYs 374lxtphy* at mii? phy ? # Level One LXT-970 PHYs 375gphyter* at mii? phy ? # NS83861 Gig-E PHY 376nsphy* at mii? phy ? # NS83840 PHYs 377qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 378sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 379tlphy* at mii? phy ? # ThunderLAN PHYs 380ukphy* at mii? phy ? # generic unknown PHYs 381 382# ISA/EISA bus support 383isa* at jensenio? 384eisa* at jensenio? 385isa* at pceb? 386eisa* at pceb? 387isa* at sio? 388#isapnp* at isa? 389 390# ISA devices 391mcclock* at isa? port 0x70 392pckbc* at isa? # PC keyboard controller 393pckbd* at pckbc? # PC keyboard (kbd port) 394pms* at pckbc? # PS/2-style mouse (aux port) 395pcppi* at isa? # PC prog. periph. interface 396spkr0 at pcppi? # IBM BASIC emulation 397isabeep0 at pcppi? # "keyboard" beep 398com* at isa? port 0x3f8 irq 4 # standard serial ports 399com* at isa? port 0x2f8 irq 3 400cs* at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet 401ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet 402ep* at isa? port ? irq ? # 3COM 3c509 Ethernet 403#ep* at isapnp? 404#ix0 at isa? port 0x300 irq 10 # EtherExpress/16 405#iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA 406fdc0 at isa? port 0x3f0 irq 6 drq 2 # floppy controller 407lc0 at isa? port 0x300 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 408lc1 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 409depca0 at isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 # DEPCA 410depca1 at isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 # DEPCA 411le* at depca? 412lpt* at isa? port 0x3bc irq 7 # standard parallel port 413vga* at isa? # ISA (EISA: XXX) VGA 414wdc0 at isa? port 0x1f0 irq 14 # ST506/ESDI/IDE controllers 415wdc1 at isa? port 0x170 irq 15 416#wdc* at isapnp? 417we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet 418we1 at isa? port 0x300 iomem 0xcc000 irq 10 419#wss* at isa? port 0x530 irq 9 drq 0 # Windows Sound System 420#wss* at isapnp? 421 422ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX 423sb* at isa? port 0x220 irq 5 drq 1 # SoundBlaster 424#sb* at isapnp? 425#adv* at isa? port ? irq ? drq ? # AdvanSys APB-514[02] 426aha* at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI 427aha* at isa? port 0x334 irq ? drq ? # Adaptec 154[02] SCSI 428bha* at isa? port 0x330 irq ? drq ? # BusLogic [57]4X SCSI (unt.) 429bha* at isa? port 0x334 irq ? drq ? # BusLogic [57]4X SCSI (unt.) 430uha* at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI (unt.) 431uha* at isa? port 0x334 irq ? drq ? # UltraStor [13]4f SCSI (unt.) 432pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000 433pcic1 at isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000 434pcmcia* at pcic? controller ? socket ? 435 436# EISA devices 437ahb* at eisa? slot ? # Adaptec 174[024] SCSI (unt.) 438ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI 439bha* at eisa? slot ? # BusLogic 7xx SCSI 440ep* at eisa? slot ? # 3COM 3c579 Ethernet (untested) 441fea* at eisa? slot ? # DEC DEFEA FDDI 442mlx* at eisa? slot ? # Mylex DAC960 / DEC SWXCR (untested) 443tlp* at eisa? slot ? # DEC DE-425 Ethernet 444depca* at eisa? slot ? # DEC DE-422 Ethernet 445le* at depca? 446uha* at eisa? slot ? # UltraStor 24f SCSI (unt.) 447 448# PCMCIA device 449com* at pcmcia? function ? # Modems and serial cards 450 451aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 452spc* at pcmcia? function ? # Fujitsu MB87030 SCSI 453 454wdc* at pcmcia? function ? # PCMCIA IDE controllers 455 456ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Eth. 457mbe* at pcmcia? function ? # MB8696x based Ethernet 458ne* at pcmcia? function ? # NE2000-compatible Eth. 459ray* at pcmcia? function ? # Raytheon Raylink (802.11) 460sm* at pcmcia? function ? # Megahertz Ethernet 461wi* at pcmcia? function ? # Lucent/Intersil WaveLAN/IEEE 462xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 463com* at xirc? 464xi* at xirc? 465mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 466com* at mhzc? 467sm* at mhzc? 468 469# SCSI bus support 470scsibus* at scsi? 471 472# SCSI devices 473cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 474sd* at scsibus? target ? lun ? # SCSI disk drives 475st* at scsibus? target ? lun ? # SCSI tape drives 476 477# ATA (IDE) bus support 478atabus* at ata? 479 480# IDE drives 481wd* at atabus? drive ? 482 483# ATAPI bus support 484atapibus* at atapi? 485 486# ATAPI devices 487sd* at atapibus? drive ? # ATAPI disk devices 488cd* at atapibus? drive ? # ATAPI CD-ROM devices 489 490# Floppy drives 491fd* at fdc? drive ? 492 493# Hardware RAID devices 494ld* at cac? unit ? 495ld* at mlx? unit ? 496 497# USB bus support 498usb* at uhci? 499usb* at ohci? 500usb* at ehci? 501 502# USB Hubs 503uhub* at usb? 504uhub* at uhub? port ? configuration ? interface ? 505 506# USB HID device 507uhidev* at uhub? port ? configuration ? interface ? 508 509# USB Mice 510ums* at uhidev? reportid ? 511wsmouse* at ums? 512 513# USB Keyboards 514ukbd* at uhidev? reportid ? 515wskbd* at ukbd? console ? 516options WSDISPLAY_COMPAT_RAWKBD 517 518# USB Generic HID devices 519uhid* at uhidev? reportid ? 520 521# USB Printer 522ulpt* at uhub? port ? configuration ? interface ? 523 524# USB Modem 525umodem* at uhub? port ? configuration ? 526ucom* at umodem? 527 528# USB Mass Storage 529umass* at uhub? port ? configuration ? interface ? 530atapibus* at umass? 531scsibus* at umass? channel ? 532 533# USB audio 534uaudio* at uhub? port ? configuration ? 535 536# USB MIDI 537umidi* at uhub? port ? configuration ? 538 539# USB IrDA 540# USB-IrDA bridge spec 541uirda* at uhub? port ? configuration ? interface ? 542irframe* at uirda? 543 544# SigmaTel STIr4200 USB/IrDA Bridge 545ustir* at uhub? port ? 546irframe* at ustir? 547 548# USB Ethernet adapters 549aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 550axe* at uhub? port ? # ASIX AX88172 based adapters 551cue* at uhub? port ? # CATC USB-EL1201A based adapters 552kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 553url* at uhub? port ? # Realtek RTL8150L based adapters 554udav* at uhub? port ? # Davicom DM9601 based adapters 555 556# Serial adapters 557# FTDI FT8U100AX serial adapter 558uftdi* at uhub? port ? 559ucom* at uftdi? portno ? 560 561# USB scanners 562uscanner* at uhub? port ? 563 564# Y@P firmware loader 565uyap* at uhub? port ? 566 567# D-Link DSB-R100 USB FM radio tuner 568udsbr* at uhub? port ? 569radio* at udsbr? 570 571# USB Generic driver 572ugen* at uhub? port ? 573 574# Audio support 575audio* at audiobus? 576midi* at midibus? 577midi* at pcppi? 578 579# Workstation Console attachments 580wsdisplay* at cfb? 581wsdisplay* at mfb? 582wsdisplay* at tfb? 583wsdisplay* at sfb? 584#wsdisplay* at sfbp? 585wsdisplay* at px? 586wsdisplay* at pxg? 587wsdisplay* at vga? 588wsdisplay* at tga? 589wskbd* at lkkbd? console ? 590wsmouse* at vsms? 591wskbd* at pckbd? 592wsmouse* at pms? 593 594pseudo-device crypto # opencrypto framework 595 596pseudo-device bpfilter 16 597pseudo-device ccd 4 598#pseudo-device cgd 4 # cryptographic disk devices 599pseudo-device raid 8 # RAIDframe disk driver 600options RAID_AUTOCONFIG # auto-configuration of RAID components 601# Options to enable various other RAIDframe RAID types. 602# options RF_INCLUDE_EVENODD=1 603# options RF_INCLUDE_RAID5_RS=1 604# options RF_INCLUDE_PARITYLOGGING=1 605# options RF_INCLUDE_CHAINDECLUSTER=1 606# options RF_INCLUDE_INTERDECLUSTER=1 607# options RF_INCLUDE_PARITY_DECLUSTERING=1 608# options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 609pseudo-device ipfilter 1 610pseudo-device loop 1 611pseudo-device md 1 612pseudo-device ppp 4 613pseudo-device pppoe # PPP over Ethernet (RFC 2516) 614pseudo-device pty # pseudo-terminals 615pseudo-device sl 4 616pseudo-device vnd 4 617#pseudo-device gre 2 # generic L3 over IP tunnel 618pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 619#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 620#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 621pseudo-device vlan # IEEE 802.1q encapsulation 622pseudo-device bridge # simple inter-network bridging 623#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 624pseudo-device sequencer 1 # MIDI sequencer 625pseudo-device rnd # /dev/random and in-kernel generator 626#options RND_COM # use "com" randomness too 627pseudo-device clockctl # user control of clock subsystem 628pseudo-device wsfont 629pseudo-device wsmux # mouse and keyboad multiplexing 630pseudo-device ksyms # /dev/ksyms 631#pseudo-device pf # PF packet filter 632#pseudo-device pflog # PF log if 633