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