GENERIC revision 1.407
1# $NetBSD: GENERIC,v 1.407 2001/06/18 22:45:54 thorpej Exp $ 2# 3# GENERIC -- everything that's currently supported 4# 5 6include "arch/i386/conf/std.i386" 7 8#ident "GENERIC-$Revision: 1.407 $" 9 10maxusers 32 # estimated number of users 11 12# CPU support. At least one is REQUIRED. 13options I386_CPU 14options I486_CPU 15options I586_CPU 16options I686_CPU 17 18# CPU-related options. 19options MATH_EMULATE # floating point emulation 20options VM86 # virtual 8086 emulation 21options USER_LDT # user-settable LDT; used by WINE 22# eliminate delay no-ops in I/O; recommended on all but very old machines 23#options DUMMY_NOPS 24 25# delay between "rebooting ..." message and hardware reset, in milliseconds 26#options CPURESET_DELAY=2000 27 28# This option allows you to force a serial console at the specified 29# I/O address. see console(4) for details. 30#options "CONSDEVNAME=\"com\"",CONADDR=0x2f8,CONSPEED=57600 31# you don't want the option below ON iff you are using the 32# serial console option of the new boot strap code. 33#options CONS_OVERRIDE # Always use above! independent of boot info 34 35# The following options override the memory sizes passed in from the boot 36# block. Use them *only* if the boot block is unable to determine the correct 37# values. Note that the BIOS may *correctly* report less than 640k of base 38# memory if the extended BIOS data area is located at the top of base memory 39# (as is the case on most recent systems). 40#options REALBASEMEM=639 # size of base memory (in KB) 41#options REALEXTMEM=15360 # size of extended memory (in KB) 42 43# Standard system options 44 45options UCONSOLE # users can use TIOCCONS (for xconsole) 46options INSECURE # disable kernel security levels 47 48options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 49options NTP # NTP phase/frequency locked loop 50 51options KTRACE # system call tracing via ktrace(1) 52 53options SYSVMSG # System V-like message queues 54options SYSVSEM # System V-like semaphores 55options SYSVSHM # System V-like memory sharing 56#options SHMMAXPGS=1024 # 1024 pages is the default 57 58options LKM # loadable kernel modules 59 60# Diagnostic/debugging support options 61#options DIAGNOSTIC # expensive kernel consistency checks 62#options DEBUG # expensive debugging checks/support 63#options KMEMSTATS # kernel memory statistics (vmstat -m) 64options DDB # in-kernel debugger 65options DDB_HISTORY_SIZE=512 # enable history editing in DDB 66#options KGDB # remote debugger 67#options "KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600 68#makeoptions DEBUG="-g" # compile full symbol table 69 70# Compatibility options 71options COMPAT_NOMID # compatibility with 386BSD, BSDI, NetBSD 0.8, 72options COMPAT_09 # NetBSD 0.9, 73options COMPAT_10 # NetBSD 1.0, 74options COMPAT_11 # NetBSD 1.1, 75options COMPAT_12 # NetBSD 1.2, 76options COMPAT_13 # NetBSD 1.3, 77options COMPAT_14 # NetBSD 1.4, 78options COMPAT_15 # NetBSD 1.5, 79options COMPAT_43 # and 4.3BSD 80options COMPAT_386BSD_MBRPART # recognize old partition ID 81 82options COMPAT_SVR4 # binary compatibility with SVR4 83options COMPAT_IBCS2 # binary compatibility with SCO and ISC 84options COMPAT_LINUX # binary compatibility with Linux 85options COMPAT_FREEBSD # binary compatibility with FreeBSD 86#options COMPAT_PECOFF # kernel support to run Win32 apps 87 88# File systems 89file-system FFS # UFS 90file-system EXT2FS # second extended file system (linux) 91file-system LFS # log-structured file system 92file-system MFS # memory file system 93file-system NFS # Network File System client 94file-system NTFS # Windows/NT file system (experimental) 95file-system CD9660 # ISO 9660 + Rock Ridge file system 96file-system MSDOSFS # MS-DOS file system 97file-system FDESC # /dev/fd 98file-system KERNFS # /kern 99file-system NULLFS # loopback file system 100file-system OVERLAY # overlay file system 101file-system PORTAL # portal filesystem (still experimental) 102file-system PROCFS # /proc 103file-system UMAPFS # NULLFS + uid and gid remapping 104file-system UNION # union file system 105file-system CODA # Coda File System; also needs vcoda (below) 106 107# File system options 108options QUOTA # UFS quotas 109#options FFS_EI # FFS Endian Independent support 110options SOFTDEP # FFS soft updates support. 111options NFSSERVER # Network File System server 112#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 113 # immutable) behave as system flags. 114 115# Networking options 116#options GATEWAY # packet forwarding 117options INET # IP + ICMP + TCP + UDP 118options INET6 # IPV6 119#options IPSEC # IP security 120#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 121#options IPSEC_DEBUG # debug for IP security 122#options MROUTING # IP multicast routing 123options NS # XNS 124#options NSIP # XNS tunneling over IP 125options ISO,TPIP # OSI 126#options EON # OSI tunneling over IP 127options CCITT,LLC,HDLC # X.25 128options NETATALK # AppleTalk networking protocols 129options PPP_BSDCOMP # BSD-Compress compression support for PPP 130options PPP_DEFLATE # Deflate compression support for PPP 131options PPP_FILTER # Active filter support for PPP (requires bpf) 132options PFIL_HOOKS # pfil(9) packet filter hooks 133options IPFILTER_LOG # ipmon(8) log support 134 135# Compatibility with 4.2BSD implementation of TCP/IP. Not recommended. 136#options TCP_COMPAT_42 137 138# These options enable verbose messages for several subsystems. 139# Warning, these may compile large string tables into the kernel! 140options EISAVERBOSE # verbose EISA device autoconfig messages 141options MIIVERBOSE # verbose PHY autoconfig messages 142options PCIVERBOSE # verbose PCI device autoconfig messages 143#options PCI_CONFIG_DUMP # verbosely dump PCI config space 144#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 145options SCSIVERBOSE # human readable SCSI error messages 146options USBVERBOSE # verbose USB device autoconfig messages 147#options PNPBIOSVERBOSE # verbose PnP BIOS messages 148#options PNPBIOSDEBUG # more fulsome PnP BIOS debugging messages 149options I2OVERBOSE # verbose I2O driver messages 150 151options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 152 153# 154# wscons options 155# 156# builtin terminal emulations 157#options WSEMUL_SUN # sun terminal emulation 158options WSEMUL_VT100 # VT100 / VT220 emulation 159# different kernel output - see dev/wscons/wsdisplayvar.h 160options WS_KERNEL_FG=WSCOL_GREEN 161#options WS_KERNEL_BG=WSCOL_BLACK 162# compatibility to other console drivers 163options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 164options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 165options WSDISPLAY_COMPAT_USL # VT handling 166options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 167# see dev/pckbc/wskbdmap_mfii.c for implemented layouts 168#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 169# allocate a number of virtual screens at autoconfiguration time 170#options WSDISPLAY_DEFAULTSCREENS=4 171# use a large software cursor that doesn't blink 172options PCDISPLAY_SOFTCURSOR 173# modify the screen type of the console; defaults to "80x25" 174#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 175 176# Kernel root file system and dump configuration. 177config netbsd root on ? type ? 178#config netbsd root on sd0a type ffs 179#config netbsd root on ? type nfs 180 181# 182# Device configuration 183# 184 185mainbus0 at root 186 187#apm0 at mainbus0 # Advanced power management 188 189# Tuning for power management, see apm(4) for more details. 190#options APM_NO_IDLE # Don't call BIOS CPU idle function 191#options APM_V10_ONLY # Use only the APM 1.0 calls 192#options APM_NO_POWEROFF # Don't power off on halt(8) 193#options APM_POWER_PRINT # Print stats on the console 194#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 195 196 197# Basic Bus Support 198 199# Plug-and-Play BIOS and attached devices 200 201#pnpbios* at mainbus? 202 203# mainboard audio chips 204#ess* at pnpbios? index ? # ESS AudioDrive 205#sb* at pnpbios? index ? # NeoMagic 256AV in sb mode 206#wss* at pnpbios? index ? # NeoMagic 256AV in wss mode 207#ym* at pnpbios? index ? # OPL3-SA3 208 209# com port 210# If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial 211# Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there 212# will be no com0. A side effect is pcmcia (and other) com? previously 213# starting at com3 may attach as com1 or com2. 214#com* at pnpbios? index ? # serial ports 215 216# parallel port 217# The above "com*" comments apply, cf. "lpt0" under "ISA parallel 218# "printer interfaces". 219#lpt* at pnpbios? index ? # parallel ports 220 221#pckbc* at pnpbios? index ? # PC keyboard/mouse controller 222#fdc* at pnpbios? index ? # floppy controller 223 224# IDE controller on Toshiba Portege 3000 series (crippled PCI device) 225#pciide* at pnpbios? index ? 226 227# PCI bus support 228pci* at mainbus? bus ? 229pci* at pchb? bus ? 230pci* at ppb? bus ? 231 232# Configure PCI using BIOS information 233#options PCIBIOS # PCI BIOS support 234#options PCIBIOSVERBOSE # PCI BIOS verbose info 235#options PCIBIOS_ADDR_FIXUP # fixup PCI I/O addresses 236#options PCIBIOS_BUS_FIXUP # fixup PCI bus numbering 237#options PCIBIOS_INTR_FIXUP # fixup PCI interrupt routing 238#options PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11 239#options PCIBIOS_INTR_GUESS # see pcibios(4) 240#options PCIINTR_DEBUG # super-verbose PCI interrupt fixup 241 242# PCI bridges 243pchb* at pci? dev ? function ? # PCI-Host bridges 244pceb* at pci? dev ? function ? # PCI-EISA bridges 245pcib* at pci? dev ? function ? # PCI-ISA bridges 246ppb* at pci? dev ? function ? # PCI-PCI bridges 247# XXX 'puc's aren't really bridges, but there's no better place for them here 248puc* at pci? dev ? function ? # PCI "universal" comm. cards 249 250# EISA bus support 251eisa* at mainbus? 252eisa* at pceb? 253 254# ISA bus support 255isa* at mainbus? 256isa* at pceb? 257isa* at pcib? 258 259# PCMCIA bus support 260pcmcia* at pcic? controller ? socket ? 261pcmcia* at tcic? controller ? socket ? 262 263# ISA PCMCIA controllers 264pcic0 at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000 265pcic1 at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000 266tcic0 at isa? port 0x240 iomem 0xd0000 iosiz 0x10000 267 268# PCI PCMCIA controllers 269pcic0 at pci? dev? function ? 270 271# ISA Plug-and-Play bus support 272isapnp0 at isa? 273 274# ISA Plug-and-Play PCMCIA controllers 275pcic* at isapnp? 276 277# CardBus bridge support 278#cbb* at pci? dev ? function ? 279#cardslot* at cbb? 280 281# CardBus bus support 282#cardbus* at cardslot? 283#pcmcia* at cardslot? 284 285# Coprocessor Support 286 287# Math Coprocessor support 288npx0 at isa? port 0xf0 irq 13 # x86 math coprocessor 289 290 291# Console Devices 292 293# ISA console 294#pc0 at isa? port 0x60 irq 1 # pccons generic PC console driver 295# Keyboard layout configuration for pccons 296#options FRENCH_KBD 297#options FINNISH_KBD 298#options GERMAN_KBD 299#options NORWEGIAN_KBD 300# pccons-specific options: 301#options XSERVER_DDB # PF12 gets you into DDB when X is running 302#options XSERVER # X server support 303 304 305# wscons 306pckbc0 at isa? # pc keyboard controller 307pckbd* at pckbc? # PC keyboard 308# "opms" should not be enabled together with "pms" or "pmsi" 309pms* at pckbc? # PS/2 mouse for wsmouse 310pmsi* at pckbc? # PS/2 "Intelli"mouse for wsmouse 311#opms* at pckbc? # backwards compatible PS/2 mouse 312vga0 at isa? 313vga* at pci? dev ? function ? 314pcdisplay0 at isa? # CGA, MDA, EGA, HGA 315wsdisplay* at vga? console ? 316wsdisplay* at pcdisplay? console ? 317wskbd* at pckbd? console ? 318wsmouse* at pms? mux 0 319wsmouse* at pmsi? mux 0 320 321pcppi0 at isa? 322sysbeep0 at pcppi? 323 324# Serial Devices 325 326# PCI serial interfaces 327com* at puc? port ? # 16x50s on "universal" comm boards 328cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 329cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 330 331# ISA Plug-and-Play serial interfaces 332com* at isapnp? # Modems and serial boards 333 334# PCMCIA serial interfaces 335com* at pcmcia? function ? # Modems and serial cards 336 337pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 338com* at pcmcom? slave ? # ...and the slave devices 339 340# CardBus serial interfaces 341#com* at cardbus? dev ? function ? # Modems and serial cards 342 343# ISA serial interfaces 344#options COM_HAYESP # adds Hayes ESP serial board support 345com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 346com1 at isa? port 0x2f8 irq 3 347com2 at isa? port 0x3e8 irq 5 348#com3 at isa? port 0x2e8 irq 9 349#ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards 350#com* at ast? slave ? 351#boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards 352#boca0 at isa? port 0x100 irq 5 # BOCA 16-port serial cards (BB2016) 353#boca1 at isa? port 0x140 irq 5 # this line is also needed for BB2016 354#com* at boca? slave ? 355#tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards 356#com* at tcom? slave ? 357#rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards 358#com* at rtfps? slave ? 359#cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards 360#addcom0 at isa? port 0x108 irq 5 # Addonics FlexPort 8S 361#com* at addcom? slave ? 362#moxa0 at isa? port 0x100 irq 5 # MOXA C168H serial card (experimental) 363#com* at moxa? slave ? 364 365 366# Parallel Printer Interfaces 367 368# PCI parallel printer interfaces 369lpt* at puc? port ? # || ports on "universal" comm boards 370 371# ISA parallel printer interfaces 372lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 373lpt1 at isa? port 0x278 374lpt2 at isa? port 0x3bc 375 376# Hardware monitors 377 378# LM7[89] and compatible hardware monitors 379#lm0 at isa? port 0x290 # other common ports: 0x280, 0x310 380 381# VIA VT82C686A hardware monitor 382#viapm* at pci? dev ? function ? 383#viaenv* at viapm? 384 385 386# I2O devices 387iop* at pci? dev ? function ? # I/O processor 388iopsp* at iop? tid ? # SCSI/FC-AL ports 389ld* at iop? tid ? # block devices 390 391 392# SCSI Controllers and Devices 393 394# PCI SCSI controllers 395adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 396adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 397ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 398bha* at pci? dev ? function ? # BusLogic 9xx SCSI 399dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 400iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 401isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 402#ncr* at pci? dev ? function ? # NCR 53c8xx SCSI (old driver) 403siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 404pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 405 406# EISA SCSI controllers 407ahb* at eisa? slot ? # Adaptec 174[02] SCSI 408ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI 409bha* at eisa? slot ? # BusLogic 7xx SCSI 410dpt* at eisa? slot ? # DPT EATA SCSI 411uha* at eisa? slot ? # UltraStor 24f SCSI 412 413# PCMCIA SCSI controllers 414aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 415esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 416 417# ISA Plug-and-Play SCSI controllers 418aha* at isapnp? # Adaptec AHA-154[02 419aic* at isapnp? # Adaptec AHA-1520B 420 421# ISA SCSI controllers 422adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02] SCSI 423aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI 424aha1 at isa? port 0x334 irq ? drq ? 425ahc0 at isa? port ? irq ? # Adaptec 284x SCSI 426aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI 427bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI 428bha1 at isa? port 0x334 irq ? drq ? 429# The "nca" and "dpt" probes might give false hits or hang your machine. 430#dpt0 at isa? port 0x170 irq ? drq ? # DPT SmartCache/SmartRAID 431#nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 controller 432#nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.) 433sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI 434uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI 435uha1 at isa? port 0x340 irq ? drq ? 436wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers 437wds1 at isa? port 0x358 irq 11 drq 5 438 439# CardBus SCSI cards 440#ahc* at cardbus? dev ? function ? # Adaptec ADP-1480 441 442# SCSI bus support 443scsibus* at adv? 444scsibus* at adw? 445scsibus* at aha? 446scsibus* at ahb? 447scsibus* at ahc? 448scsibus* at aic? 449scsibus* at bha? 450scsibus* at dpt? 451scsibus* at esp? 452scsibus* at iha? 453scsibus* at iopsp? 454scsibus* at isp? 455#scsibus* at nca? 456#scsibus* at ncr? 457scsibus* at pcscp? 458scsibus* at sea? 459scsibus* at siop? 460scsibus* at uha? 461scsibus* at wds? 462 463# SCSI devices 464sd* at scsibus? target ? lun ? # SCSI disk drives 465st* at scsibus? target ? lun ? # SCSI tape drives 466cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 467ch* at scsibus? target ? lun ? # SCSI autochangers 468ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 469ss* at scsibus? target ? lun ? # SCSI scanners 470uk* at scsibus? target ? lun ? # SCSI unknown 471 472 473# RAID controllers and devices 474cac* at eisa? slot ? # Compaq EISA array controllers 475cac* at pci? dev ? function ? # Compaq PCI array controllers 476mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 477mlx* at eisa? slot ? # Mylex DAC960 & DEC SWXCR family 478twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 479 480ld* at cac? unit ? # logical disk devices 481ld* at twe? unit ? 482ld* at mlx? unit ? 483 484# IDE and related devices 485# PCI IDE controllers - see pciide(4) for supported hardware. 486# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 487# how to set up DMA modes for this chip. This may work, or may cause 488# a machine hang with some controllers. 489pciide* at pci? dev ? function ? flags 0x0000 490 491# ISA Plug-and-Play IDE controllers 492wdc* at isapnp? 493 494# PCMCIA IDE controllers 495wdc* at pcmcia? function ? 496 497# ISA ST506, ESDI, and IDE controllers 498# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 499# fall back to 16bits I/O if 32bits I/O are not functional). 500# Some controllers pass the initial 32bit test, but will fail later. 501wdc0 at isa? port 0x1f0 irq 14 flags 0x00 502wdc1 at isa? port 0x170 irq 15 flags 0x00 503 504# IDE drives 505# Flags are used only with controllers that support DMA operations 506# and mode settings (e.g. some pciide controllers) 507# The lowest order four bits (rightmost digit) of the flags define the PIO 508# mode to use, the next set of four bits the DMA mode and the third set the 509# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 510# to use, and the last bit must be 1 for this setting to be used. 511# For DMA and UDMA, 0xf (1111) means 'disable'. 512# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 513# (0xc=1100, 0xa=1010, 0xf=1111) 514# 0x0000 means "use whatever the drive claims to support". 515wd* at wdc? channel ? drive ? flags 0x0000 516wd* at pciide? channel ? drive ? flags 0x0000 517 518# ATAPI bus support 519atapibus* at wdc? channel ? 520atapibus* at pciide? channel ? 521 522# ATAPI devices 523# flags have the same meaning as for IDE drives. 524cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 525sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 526uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 527 528 529# Miscellaneous mass storage devices 530 531# ISA floppy 532fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 533#fdc1 at isa? port 0x370 irq ? drq ? 534fd* at fdc? drive ? # the drives themselves 535# some machines need you to do this instead of fd* 536#fd0 at fdc0 drive 0 537 538# ISA CD-ROM devices 539#mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives 540 541# ISA tape devices 542# note: the wt driver conflicts unpleasantly with SMC boards at the 543# same I/O address. The probe reprograms their EEPROMs. Don't 544# uncomment it unless you are actually using it. 545#wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives 546 547 548# Network Interfaces 549 550# PCI network interfaces 551an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 552de* at pci? dev ? function ? # DEC 21x4x-based Ethernet 553en* at pci? dev ? function ? # ENI/Adaptec ATM 554ep* at pci? dev ? function ? # 3Com 3c59x 555ex* at pci? dev ? function ? # 3Com 90x[B] 556epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 557esh* at pci? dev ? function ? # Essential HIPPI card 558fpa* at pci? dev ? function ? # DEC DEFPA FDDI 559fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 560gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 561le* at pci? dev ? function ? # PCnet-PCI Ethernet 562lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 563ne* at pci? dev ? function ? # NE2000-compatible Ethernet 564ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 565rtk* at pci? dev ? function ? # Realtek 8129/8139 566sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 567sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 568ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 569tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 570tlp* at pci? dev ? function ? # DECchip 21x4x (and clones) Ethernet 571#options TLP_MATCH_21040 572#options TLP_MATCH_21041 573#options TLP_MATCH_21140 574#options TLP_MATCH_21142 575vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 576 577# EISA network interfaces 578ep* at eisa? slot ? # 3Com 3c579 Ethernet 579fea* at eisa? slot ? # DEC DEFEA FDDI 580tlp* at eisa? slot ? # DEC DE-425 Ethernet 581 582# ISA Plug-and-Play network interfaces 583an* at isapnp? # Aironet 802.11 584ep* at isapnp? # 3Com 3c509 Ethernet 585ne* at isapnp? # NE2000-compatible Ethernet 586tr* at isapnp? # IBM/3COM TROPIC Token-Ring 587 588# PCMCIA network interfaces 589an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 590awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 591cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 592ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 593mbe* at pcmcia? function ? # MB8696x based Ethernet 594ne* at pcmcia? function ? # NE2000-compatible Ethernet 595ray* at pcmcia? function ? # Raytheon Raylink (802.11) 596sm* at pcmcia? function ? # Megahertz Ethernet 597wi* at pcmcia? function ? # Lucent WaveLan IEEE (802.11) 598xi* at pcmcia? function ? # Xircom CreditCard Ethernet 599 600mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 601com* at mhzc? 602sm* at mhzc? 603 604# ISA network interfaces 605ate0 at isa? port 0x2a0 irq ? # AT1700 606cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet 607ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet 608eg0 at isa? port 0x280 irq 9 # 3C505 ethernet cards 609el0 at isa? port 0x300 irq 9 # 3C501 ethernet cards 610ep* at isa? port ? irq ? # 3C509 ethernet cards 611ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3C507 612ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN 613fmv0 at isa? port 0x2a0 irq ? # FMV-180 series 614ix0 at isa? port 0x300 irq 10 # EtherExpress/16 615iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA 616lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 617#depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA 618#le* at depca? 619nele0 at isa? port 0x320 irq 9 drq 7 # NE2100 620le* at nele? 621#ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1 # Riscom/N2 sync serial 622bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan 623le* at bicc? 624ne0 at isa? port 0x280 irq 9 # NE[12]000 ethernet cards 625ne1 at isa? port 0x300 irq 10 626sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet 627tr0 at isa? port 0xa20 iomem 0xd8000 irq ? # IBM TROPIC based Token-Ring 628tr1 at isa? port 0xa24 iomem 0xd0000 irq ? # IBM TROPIC based Token-Ring 629tr* at isa? port ? irq ? # 3COM TROPIC based Token-Ring 630we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet 631we1 at isa? port 0x300 iomem 0xcc000 irq 10 632 633# CardBus network cards 634#ex* at cardbus? dev ? function ? # 3Com 3C575TX 635#fxp* at cardbus? dev ? function ? # Intel i8255x 636#rtk* at cardbus? dev ? function ? # Realtek 8129/8139 637#tlp* at cardbus? dev ? function ? # DECchip 21143 638 639# MII/PHY support 640dmphy* at mii? phy ? # Davicom DM9101 PHYs 641exphy* at mii? phy ? # 3Com internal PHYs 642icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890 643inphy* at mii? phy ? # Intel 82555 PHYs 644iophy* at mii? phy ? # Intel 82553 PHYs 645lxtphy* at mii? phy ? # Level One LXT-970 PHYs 646gphyter* at mii? phy ? # NS83861 Gig-E PHY 647nsphy* at mii? phy ? # NS83840 PHYs 648nsphyter* at mii? phy ? # NS83843 PHYs 649qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 650sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 651tlphy* at mii? phy ? # ThunderLAN PHYs 652tqphy* at mii? phy ? # TDK Semiconductor PHYs 653ukphy* at mii? phy ? # generic unknown PHYs 654 655 656# USB Controller and Devices 657 658# PCI USB controllers 659ohci* at pci? dev ? function ? # Open Host Controller 660uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 661 662# CardBus USB controllers 663#ohci* at cardbus? dev ? function ? # Open Host Controller 664 665# USB bus support 666usb* at ohci? 667usb* at uhci? 668 669# USB Hubs 670uhub* at usb? 671uhub* at uhub? port ? configuration ? interface ? 672 673# USB Mice 674ums* at uhub? port ? configuration ? interface ? 675wsmouse* at ums? mux 0 676 677# USB Keyboards 678ukbd* at uhub? port ? configuration ? interface ? 679wskbd* at ukbd? console ? mux 1 680 681# USB Generic HID devices 682uhid* at uhub? port ? configuration ? interface ? 683 684# USB Printer 685ulpt* at uhub? port ? configuration ? interface ? 686 687# USB Modem 688umodem* at uhub? port ? configuration ? 689ucom* at umodem? 690 691# USB Mass Storage 692umass* at uhub? port ? configuration ? interface ? 693atapibus* at umass? channel ? 694scsibus* at umass? channel ? 695 696# USB audio 697uaudio* at uhub? port ? configuration ? 698 699# USB MIDI 700umidi* at uhub? port ? configuration ? 701 702# USB Ethernet adapters 703aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 704cue* at uhub? port ? # CATC USB-EL1201A based adapters 705kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 706 707# Prolofic PL2301/PL2302 host-to-host adapter 708upl* at uhub? port ? 709 710# Serial adapters 711# FTDI FT8U100AX serial adapter 712uftdi* at uhub? port ? 713ucom* at uftdi? portno ? 714 715uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 716ucom* at uplcom? portno ? 717 718umct* at uhub? port ? # MCT USB-RS232 serial adapter 719ucom* at umct? portno ? 720 721# Diamond Multimedia Rio 500 722urio* at uhub? port ? 723 724# USB Handspring Visor 725uvisor* at uhub? port ? 726ucom* at uvisor? 727 728# USB scanners 729uscanner* at uhub? port ? 730 731# USB scanners that use SCSI emulation, e.g., HP5300 732usscanner* at uhub? port ? 733scsibus* at usscanner? channel ? 734 735# Y@P firmware loader 736uyap* at uhub? port ? 737 738# USB Generic driver 739ugen* at uhub? port ? 740 741 742# Audio Devices 743 744# PCI audio devices 745auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 746auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 747clcs* at pci? dev ? function ? # Cirrus Logic CS4280 748clct* at pci? dev ? function ? # Cirrus Logic CS4281 749cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 750eap* at pci? dev ? function ? # Ensoniq AudioPCI 751esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 752eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 753fms* at pci? dev ? function ? # Forte Media FM801 754neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 755sv* at pci? dev ? function ? # S3 SonicVibes 756yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 757 758# ISA Plug-and-Play audio devices 759ess* at isapnp? # ESS Tech ES1887, ES1888, ES888 audio 760guspnp* at isapnp? # Gravis Ultra Sound PnP audio 761sb* at isapnp? # SoundBlaster-compatible audio 762wss* at isapnp? # Windows Sound System 763ym* at isapnp? # Yamaha OPL3-SA3 audio 764 765# ISA audio devices 766# the "aria" probe might give false hits 767#aria0 at isa? port 0x290 irq 10 # Aria 768#ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX 769gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound 770pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum 771pss0 at isa? port 0x220 irq 7 drq 6 # Personal Sound System 772sp0 at pss0 port 0x530 irq 10 drq 0 # sound port driver 773sb0 at isa? port 0x220 irq 5 drq 1 drq2 5 # SoundBlaster 774wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System 775 776#cms0 at isa? port 0x220 # Creative Music System 777 778# OPL[23] FM synthesizers 779#opl0 at isa? port 0x388 # use only if not attached to sound card 780opl* at eso? 781opl* at ess? 782opl* at fms? 783opl* at sb? 784opl* at sv? 785opl* at wss? 786opl* at yds? 787opl* at ym? 788 789# Audio support 790#audio* at aria? 791audio* at auich? 792audio* at auvia? 793audio* at clcs? 794audio* at clct? 795audio* at cmpci? 796audio* at eap? 797audio* at esm? 798audio* at eso? 799audio* at ess? 800audio* at fms? 801audio* at gus? 802audio* at guspnp? 803audio* at neo? 804audio* at pas? 805audio* at sb? 806audio* at sp? 807audio* at sv? 808audio* at uaudio? 809audio* at wss? 810audio* at yds? 811audio* at ym? 812 813# MPU 401 UARTs 814#mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 815mpu* at eso? 816mpu* at fms? 817mpu* at sb? 818mpu* at yds? 819mpu* at ym? 820 821# MIDI support 822midi* at clcs? # Cirrus Logic CS4280 MIDI port 823#midi* at clct? # Cirrus Logic CS4281 MIDI port 824#midi* at cms? # Creative Music System 825midi* at eap? # 137[01] MIDI port 826midi* at mpu? # MPU 401 827midi* at opl? # OPL FM synth 828midi* at pcppi? # MIDI interface to the PC speaker 829midi* at sb? # SB1 MIDI port 830midi* at umidi? # USB MIDI 831 832# The spkr driver provides a simple tone interface to the built in speaker. 833#spkr0 at pcppi? # PC speaker 834 835 836# TV cards 837 838# Brooktree 848/849/878/879 based TV cards 839bktr* at pci? dev ? function ? 840 841 842# Mice 843 844# ISA busmice 845lms0 at isa? port 0x23c irq 5 # Logitech bus mouse 846lms1 at isa? port 0x238 irq 5 847mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse 848mms1 at isa? port 0x238 irq 5 849wsmouse* at lms? mux 0 850wsmouse* at mms? mux 0 851# backwards compatible versions 852#olms0 at isa? port 0x23c irq 5 # Logitech bus mouse 853#olms1 at isa? port 0x238 irq 5 854#omms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse 855#omms1 at isa? port 0x238 irq 5 856#opms0 at pc? irq 12 # PS/2 auxiliary port mouse 857 858 859# Joysticks 860 861#joy* at pnpbios? index ? # Game port 862 863# ISA Plug-and-Play joysticks 864joy* at isapnp? # Game ports (usually on audio cards) 865 866# PCI joysticks 867joy* at pci? # Game ports (usually on audio cards) 868 869# ISA joysticks. Probe is a little strange; add only if you have one. 870#joy0 at isa? port 0x201 871 872 873# Miscellaneous Devices 874 875# Planetconnect Satellite receiver driver. 876#satlink0 at isa? port 0x300 drq 1 877 878 879# Pull in optional local configuration 880include "arch/i386/conf/GENERIC.local" 881 882 883# Pseudo-Devices 884 885# disk/mass storage pseudo-devices 886pseudo-device ccd 4 # concatenated/striped disk devices 887#pseudo-device raid 4 # RAIDframe disk driver 888#options RAID_AUTOCONFIG # auto-configuration of RAID components 889pseudo-device md 1 # memory disk device (ramdisk) 890pseudo-device vnd 4 # disk-like interface to files 891 892# network pseudo-devices 893pseudo-device bpfilter 8 # Berkeley packet filter 894pseudo-device ipfilter # IP filter (firewall) and NAT 895pseudo-device loop # network loopback 896pseudo-device ppp 2 # Point-to-Point Protocol 897pseudo-device sl 2 # Serial Line IP 898pseudo-device strip 2 # Starmode Radio IP (Metricom) 899pseudo-device tun 2 # network tunneling over tty 900pseudo-device gre 2 # generic L3 over IP tunnel 901pseudo-device ipip 2 # IP Encapsulation within IP (RFC 2003) 902pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 903#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 904#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 905pseudo-device vlan # IEEE 802.1q encapsulation 906 907# miscellaneous pseudo-devices 908pseudo-device pty # pseudo-terminals 909pseudo-device tb 1 # tablet line discipline 910pseudo-device sequencer 1 # MIDI sequencer 911# rnd works; RND_COM does not on port i386 yet. 912pseudo-device rnd # /dev/random and in-kernel generator 913#options RND_COM # use "com" randomness as well (BROKEN) 914 915# a pseudo device needed for Coda # also needs CODA (above) 916pseudo-device vcoda 4 # coda minicache <-> venus comm. 917 918# mouse & keyboard multiplexor pseudo-devices 919pseudo-device wsmux 2 920