INSTALL revision 1.71
1# $NetBSD: INSTALL,v 1.71 2007/06/16 12:35:54 ad Exp $ 2# 3# GENERIC machine description file 4# 5# This machine description file is used to generate the default NetBSD 6# kernel. The generic kernel does not include all options, subsystems 7# and device drivers, but should be useful for most applications. 8# 9# The machine description file can be customised for your specific 10# machine to reduce the kernel size and improve its performance. 11# 12# For further information on compiling NetBSD kernels, see the config(8) 13# man page. 14# 15# For further information on hardware support for this architecture, see 16# the intro(4) man page. For further information about kernel options 17# for this architecture, see the options(4) man page. For an explanation 18# of each device driver in this file see the section 4 man page for the 19# device. 20 21include "arch/amd64/conf/std.amd64" 22 23#ident "INSTALL-$Revision: 1.71 $" 24 25maxusers 32 # estimated number of users 26 27# Standard system options 28 29makeoptions COPTS="-Os -fno-asynchronous-unwind-tables" 30 31options MEMORY_DISK_HOOKS 32options MEMORY_DISK_IS_ROOT # force root on memory disk 33options MEMORY_DISK_SERVER=0 # no userspace memory disk support 34options MEMORY_DISK_ROOT_SIZE=10000 # size of memory disk, in blocks 35 36options INSECURE # disable kernel security levels - X needs this 37 38options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 39 40#options SYSVMSG # System V-like message queues 41#options SYSVSEM # System V-like semaphores 42#options SEMMNI=10 # number of semaphore identifiers 43#options SEMMNS=60 # number of semaphores in system 44#options SEMUME=10 # max number of undo entries per process 45#options SEMMNU=30 # number of undo structures in system 46#options SYSVSHM # System V-like memory sharing 47#options SHMMAXPGS=2048 # 2048 pages is the default 48 49#options LKM # loadable kernel modules 50 51options USERCONF # userconf(4) support 52#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 53 54# Enable experimental buffer queue strategy for better responsiveness under 55# high disk I/O load. Use it with caution - it's not proven to be stable yet. 56#options BUFQ_READPRIO 57#options BUFQ_PRIOCSCAN 58 59# Diagnostic/debugging support options 60#options DIAGNOSTIC # expensive kernel consistency checks 61#options DEBUG # expensive debugging checks/support 62#options DDB # in-kernel debugger 63#options DDB_HISTORY_SIZE=512 # enable history editing in DDB 64#options KGDB # remote debugger 65#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 66#makeoptions DEBUG="-g" # compile full symbol table 67 68#options COMPAT_NETBSD32 69#options EXEC_ELF32 70options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 71 72# File systems 73file-system FFS # UFS 74file-system EXT2FS # second extended file system (linux) 75file-system LFS # log-structured file system 76file-system MFS # memory file system 77file-system NFS # Network File System client 78file-system NTFS # Windows/NT file system (experimental) 79file-system CD9660 # ISO 9660 + Rock Ridge file system 80file-system MSDOSFS # MS-DOS file system 81#file-system FDESC # /dev/fd 82file-system KERNFS # /kern 83#file-system NULLFS # loopback file system 84#file-system OVERLAY # overlay file system 85#file-system PORTAL # portal filesystem (still experimental) 86#file-system PROCFS # /proc 87#file-system UMAPFS # NULLFS + uid and gid remapping 88#file-system UNION # union file system 89#file-system PTYFS # /dev/pts/N support 90 91# File system options 92#options QUOTA # UFS quotas 93#options FFS_EI # FFS Endian Independent support 94#options SOFTDEP # FFS soft updates support. 95#options NFSSERVER # Network File System server 96#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 97 # immutable) behave as system flags. 98options FFS_NO_SNAPSHOT # No FFS snapshot support 99 100# Networking options 101#options GATEWAY # packet forwarding 102options INET # IP + ICMP + TCP + UDP 103options INET6 # IPV6 104#options IPSEC # IP security 105#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 106#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 107#options IPSEC_DEBUG # debug for IP security 108#options MROUTING # IP multicast routing 109#options PIM # Protocol Independent Multicast 110#options NETATALK # AppleTalk networking protocols 111#options PPP_BSDCOMP # BSD-Compress compression support for PPP 112#options PPP_DEFLATE # Deflate compression support for PPP 113#options PPP_FILTER # Active filter support for PPP (requires bpf) 114#options PFIL_HOOKS # pfil(9) packet filter hooks 115 116# These options enable verbose messages for several subsystems. 117# Warning, these may compile large string tables into the kernel! 118#options MIIVERBOSE # verbose PHY autoconfig messages 119#options PCIVERBOSE # verbose PCI device autoconfig messages 120#options PCI_CONFIG_DUMP # verbosely dump PCI config space 121#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 122#options SCSIVERBOSE # human readable SCSI error messages 123#options USBVERBOSE # verbose USB device autoconfig messages 124 125options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 126 127# 128# wscons options 129# 130# builtin terminal emulations 131#options WSEMUL_SUN # sun terminal emulation 132options WSEMUL_VT100 # VT100 / VT220 emulation 133# different kernel output - see dev/wscons/wsdisplayvar.h 134options WS_KERNEL_FG=WSCOL_GREEN 135#options WS_KERNEL_BG=WSCOL_BLACK 136# compatibility to other console drivers 137#options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 138#options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 139#options WSDISPLAY_COMPAT_USL # VT handling 140#options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 141# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 142#options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" 143# allocate a number of virtual screens at autoconfiguration time 144#options WSDISPLAY_DEFAULTSCREENS=4 145# use a large software cursor that doesn't blink 146options PCDISPLAY_SOFTCURSOR 147# modify the screen type of the console; defaults to "80x25" 148#options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 149# work around a hardware bug that loaded fonts don't work; found on ATI cards 150#options VGA_CONSOLE_ATI_BROKEN_FONTSEL 151# enable VGA raster mode capable of displaying multilingual text on console 152#options VGA_RASTERCONSOLE 153 154# Kernel root file system and dump configuration. 155config netbsd root on ? type ? 156#config netbsd root on sd0a type ffs 157#config netbsd root on ? type nfs 158 159# 160# Device configuration 161# 162 163mainbus0 at root 164 165# ACPI will be used if present. If not it will fall back to MPBIOS 166acpi0 at mainbus0 167options ACPI_SCANPCI 168options MPBIOS 169options MPBIOS_SCANPCI 170cpu* at mainbus0 171ioapic* at mainbus0 172 173#apm0 at mainbus0 # Advanced power management 174 175# Tuning for power management, see apm(4) for more details. 176#options APM_NO_IDLE # Don't call BIOS CPU idle function 177#options APM_V10_ONLY # Use only the APM 1.0 calls 178#options APM_NO_POWEROFF # Don't power off on halt(8) 179#options APM_POWER_PRINT # Print stats on the console 180#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 181 182 183# Basic Bus Support 184 185# PCI bus support 186pci* at mainbus? bus ? 187pci* at pchb? bus ? 188pci* at ppb? bus ? 189 190# PCI bridges 191pchb* at pci? dev ? function ? # PCI-Host bridges 192pcib* at pci? dev ? function ? # PCI-ISA bridges 193ppb* at pci? dev ? function ? # PCI-PCI bridges 194# XXX 'puc's aren't really bridges, but there's no better place for them here 195puc* at pci? dev ? function ? # PCI "universal" comm. cards 196 197aapic* at pci? dev ? function ? # AMD 8131 IO apic 198 199#agp* at pchb? 200 201# 202 203# ISA bus support 204isa0 at mainbus? 205isa0 at pcib? 206 207# CardBus bridge support 208#cbb* at pci? dev ? function ? 209#cardslot* at cbb? 210 211# CardBus bus support 212#cardbus* at cardslot? 213#pcmcia* at cardslot? 214 215# Coprocessor Support 216 217# Console Devices 218 219# wscons 220pckbc0 at isa? # pc keyboard controller 221pckbd* at pckbc? # PC keyboard 222#pms* at pckbc? # PS/2 mouse for wsmouse 223#options PMS_DISABLE_POWERHOOK # Disable PS/2 reset on resume 224#options PMS_SYNAPTICS_TOUCHPAD # Enable support for Synaptics Touchpads 225vga* at pci? dev ? function ? 226wsdisplay* at vga? console ? 227wskbd* at pckbd? console ? 228#wsmouse* at pms? mux 0 229 230attimer0 at isa? 231pcppi0 at isa? 232sysbeep0 at pcppi? 233 234# Serial Devices 235 236# PCI serial interfaces 237com* at puc? port ? # 16x50s on "universal" comm boards 238#cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 239#cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 240 241# PCMCIA serial interfaces 242#com* at pcmcia? function ? # Modems and serial cards 243 244#pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 245#com* at pcmcom? slave ? # ...and the slave devices 246 247# CardBus serial interfaces 248#com* at cardbus? function ? # Modems and serial cards 249 250# ISA serial interfaces 251#options COM_HAYESP # adds Hayes ESP serial board support 252com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 253com1 at isa? port 0x2f8 irq 3 254 255# Parallel Printer Interfaces 256 257# PCI parallel printer interfaces 258#lpt* at puc? port ? # || ports on "universal" comm boards 259 260# ISA parallel printer interfaces 261#lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 262#lpt1 at isa? port 0x278 263 264# Hardware monitors 265 266# LM7[89] and compatible hardware monitors 267#lm0 at isa? port 0x290 # other common ports: 0x280, 0x310 268 269# I2O devices 270iop* at pci? dev ? function ? # I/O processor 271iopsp* at iop? tid ? # SCSI/FC-AL ports 272ld* at iop? tid ? # block devices 273# XXX dpti.c wants a processor type that is not assigned for x86-64 274#dpti* at iop? tid 0 # DPT/Adaptec control interface 275 276 277# SCSI Controllers and Devices 278 279# PCI SCSI controllers 280adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 281adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 282ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 283ahd* at pci? dev ? function ? # Adaptec aic790x SCSI 284bha* at pci? dev ? function ? # BusLogic 9xx SCSI 285dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 286iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 287isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 288mfi* at pci? dev ? function ? # LSI MegaRAID SAS 289mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 290mpt* at pci? dev ? function ? # LSILogic 9x9 and 53c1030 291pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 292siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 293#options SIOP_SYMLED # drive the act. LED in software 294trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 295 296# PCMCIA SCSI controllers 297#aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 298#esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 299 300# CardBus SCSI cards 301#adv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 302#ahc* at cardbus? function ? # Adaptec ADP-1480 303 304# SCSI bus support 305scsibus* at scsi? 306 307# SCSI devices 308sd* at scsibus? target ? lun ? # SCSI disk drives 309st* at scsibus? target ? lun ? # SCSI tape drives 310cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 311#ch* at scsibus? target ? lun ? # SCSI autochangers 312#ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 313#ss* at scsibus? target ? lun ? # SCSI scanners 314#uk* at scsibus? target ? lun ? # SCSI unknown 315 316 317# RAID controllers and devices 318aac* at pci? dev ? function ? # Adaptec AAC family 319amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 320cac* at pci? dev ? function ? # Compaq PCI array controllers 321ciss* at pci? dev ? function ? # HP Smart Array controllers 322icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 323mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 324twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 325twa* at pci? dev ? function ? # 3ware Escalade 9xxx RAID controllers 326 327ld* at aac? unit ? 328ld* at amr? unit ? 329ld* at cac? unit ? 330ld* at icp? unit ? 331ld* at twe? unit ? 332ld* at twa? unit ? 333ld* at mlx? unit ? 334 335icpsp* at icp? unit ? # SCSI pass-through 336 337# IDE and related devices 338# PCI IDE controllers - see pciide(4) for supported hardware. 339# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 340# how to set up DMA modes for this chip. This may work, or may cause 341# a machine hang with some controllers. 342pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 343acardide* at pci? dev ? function ? # Acard IDE controllers 344aceride* at pci? dev ? function ? # Acer Lab IDE controllers 345ahcisata* at pci? dev ? function ? # AHCI SATA controllers 346artsata* at pci? dev ? function ? # Intel i31244 SATA controller 347cmdide* at pci? dev ? function ? # CMD tech IDE controllers 348cypide* at pci? dev ? function ? # Cypress IDE controllers 349hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 350iteide* at pci? dev ? function ? # IT Express IDE controllers 351ixpide* at pci? dev ? function ? # ATI IXP IDE controllers 352jmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers 353ahcisata* at jmide? 354optiide* at pci? dev ? function ? # Opti IDE controllers 355piixide* at pci? dev ? function ? # Intel IDE controllers 356pdcide* at pci? dev ? function ? # Promise IDE controllers 357pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 358rccide* at pci? dev ? function ? # ServerWorks IDE controllers 359satalink* at pci? dev ? function ? # SiI SATALink controllers 360siside* at pci? dev ? function ? # SiS IDE controllers 361slide* at pci? dev ? function ? # Symphony Labs IDE controllers 362svwsata* at pci? dev ? function ? # ServerWorks SATA controllers 363stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers 364viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 365 366# PCMCIA IDE controllers 367#wdc* at pcmcia? function ? 368 369# ISA ST506, ESDI, and IDE controllers 370# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 371# fall back to 16bits I/O if 32bits I/O are not functional). 372# Some controllers pass the initial 32bit test, but will fail later. 373#wdc0 at isa? port 0x1f0 irq 14 flags 0x00 374#wdc1 at isa? port 0x170 irq 15 flags 0x00 375 376# ATA (IDE) bus support 377atabus* at ata? 378 379# Flags are used only with controllers that support DMA operations 380# and mode settings (e.g. some pciide controllers) 381# The lowest order four bits (rightmost digit) of the flags define the PIO 382# mode to use, the next set of four bits the DMA mode and the third set the 383# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 384# to use, and the last bit must be 1 for this setting to be used. 385# For DMA and UDMA, 0xf (1111) means 'disable'. 386# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 387# (0xc=1100, 0xa=1010, 0xf=1111) 388# 0x0000 means "use whatever the drive claims to support". 389wd* at atabus? drive ? flags 0x0000 390 391# ATAPI bus support 392atapibus* at atapi? 393 394# ATA RAID configuration support, as found on some Promise controllers. 395pseudo-device ataraid 396ld* at ataraid? vendtype ? unit ? 397 398 399# ATAPI devices 400# flags have the same meaning as for IDE drives. 401cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 402sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 403st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 404#uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 405 406 407# Miscellaneous mass storage devices 408 409# ISA floppy 410fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 411#fdc1 at isa? port 0x370 irq ? drq ? 412fd* at fdc? drive ? # the drives themselves 413# some machines need you to do this instead of fd* 414#fd0 at fdc0 drive 0 415 416# Network Interfaces 417 418# PCI network interfaces 419an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 420ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 421bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet 422bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 423bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet 424en* at pci? dev ? function ? # ENI/Adaptec ATM 425ep* at pci? dev ? function ? # 3Com 3c59x 426epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 427#esh* at pci? dev ? function ? # Essential HIPPI card 428ex* at pci? dev ? function ? # 3Com 90x[BC] 429fpa* at pci? dev ? function ? # DEC DEFPA FDDI 430fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 431gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 432#hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 433#le* at pci? dev ? function ? # PCnet-PCI Ethernet 434#lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 435mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 436msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 437mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 438ne* at pci? dev ? function ? # NE2000-compatible Ethernet 439nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 440#ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 441pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 442re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 443rtk* at pci? dev ? function ? # Realtek 8129/8139 444sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 445sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 446skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 447sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 448ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 449stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 450ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 451tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 452tlp* at pci? dev ? function ? # DECchip 21x4x and clones 453vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 454wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 455wm* at pci? dev ? function ? # Intel 82543/82544 gigabit 456 457# PCMCIA network interfaces 458#an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 459#awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 460#cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 461#ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 462#mbe* at pcmcia? function ? # MB8696x based Ethernet 463#ne* at pcmcia? function ? # NE2000-compatible Ethernet 464#ray* at pcmcia? function ? # Raytheon Raylink (802.11) 465#sm* at pcmcia? function ? # Megahertz Ethernet 466# tr at pcmcia has problems with Cardbus bridges 467#tr* at pcmcia? function ? # TROPIC based Token-Ring 468#wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 469#xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 470#com* at xirc? 471#xi* at xirc? 472 473#mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 474#com* at mhzc? 475#sm* at mhzc? 476 477# CardBus network cards 478#ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11 479#ex* at cardbus? function ? # 3Com 3C575TX 480#fxp* at cardbus? function ? # Intel i8255x 481#rtk* at cardbus? function ? # Realtek 8129/8139 482#tlp* at cardbus? function ? # DECchip 21143 483 484# MII/PHY support 485acphy* at mii? phy ? # DAltima AC101 and AMD Am79c874 PHYs 486amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 487bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 488brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 489dmphy* at mii? phy ? # Davicom DM9101 PHYs 490exphy* at mii? phy ? # 3Com internal PHYs 491glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 492gphyter* at mii? phy ? # NS83861 Gig-E PHY 493icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 494igphy* at mii? phy ? # Intel IGP01E1000 495ikphy* at mii? phy ? # Intel 82563 PHYs 496inphy* at mii? phy ? # Intel 82555 PHYs 497iophy* at mii? phy ? # Intel 82553 PHYs 498lxtphy* at mii? phy ? # Level One LXT-970 PHYs 499makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 500nsphy* at mii? phy ? # NS83840 PHYs 501nsphyter* at mii? phy ? # NS83843 PHYs 502pnaphy* at mii? phy ? # generic HomePNA PHYs 503qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 504rgephy* at mii? phy ? # Realtek 8169S/8110 internal PHYs 505rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 506sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 507tlphy* at mii? phy ? # ThunderLAN PHYs 508tqphy* at mii? phy ? # TDK Semiconductor PHYs 509ukphy* at mii? phy ? # generic unknown PHYs 510urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 511 512 513# USB Controller and Devices 514 515# PCI USB controllers 516# The EHCI is not ready for prime time. 517#ehci* at pci? dev ? function ? # Enhanced Host Controller 518ohci* at pci? dev ? function ? # Open Host Controller 519uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 520 521# CardBus USB controllers 522#ehci* at cardbus? function ? # Enhanced Host Controller 523#ohci* at cardbus? function ? # Open Host Controller 524 525# ISA USB controllers 526#slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 527 528# USB bus support 529#usb* at ehci? 530usb* at ohci? 531usb* at uhci? 532#usb* at slhci? 533 534# USB Hubs 535uhub* at usb? 536uhub* at uhub? port ? 537 538# USB HID device 539uhidev* at uhub? port ? configuration ? interface ? 540 541# USB Mice 542#ums* at uhidev? reportid ? 543#wsmouse* at ums? mux 0 544 545# USB Keyboards 546ukbd* at uhidev? reportid ? 547wskbd* at ukbd? console ? mux 1 548 549# USB serial adapter 550#ucycom* at uhidev? reportid ? 551 552# USB Generic HID devices 553#uhid* at uhidev? reportid ? 554 555# USB Printer 556#ulpt* at uhub? port ? configuration ? interface ? 557 558# USB Modem 559#umodem* at uhub? port ? configuration ? 560#ucom* at umodem? 561 562# USB Mass Storage 563umass* at uhub? port ? configuration ? interface ? 564#wd* at umass? 565 566# USB MIDI 567#umidi* at uhub? port ? configuration ? 568 569# USB Ethernet adapters 570aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 571axe* at uhub? port ? # ASIX AX88172 based adapters 572cue* at uhub? port ? # CATC USB-EL1201A based adapters 573kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 574url* at uhub? port ? # Realtek RTL8150L based adapters 575 576# Prolific PL2301/PL2302 host-to-host adapter 577#upl* at uhub? port ? 578 579# Serial adapters 580#ubsa* at uhub? port ? # Belkin serial adapter 581#ucom* at ubsa? portno ? 582 583#uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 584#ucom* at uftdi? portno ? 585 586#umct* at uhub? port ? # MCT USB-RS232 serial adapter 587#ucom* at umct? portno ? 588 589#uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 590#ucom* at uplcom? portno ? 591 592#uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 593#ucom* at uvscom? portno ? 594 595# Diamond Multimedia Rio 500 596#urio* at uhub? port ? 597 598# USB Handspring Visor 599#uvisor* at uhub? port ? 600#ucom* at uvisor? 601 602# Kyocera AIR-EDGE PHONE 603#ukyopon* at uhub? port ? 604#ucom* at ukyopon? portno ? 605 606# USB scanners 607#uscanner* at uhub? port ? 608 609# USB scanners that use SCSI emulation, e.g., HP5300 610#usscanner* at uhub? port ? 611 612# Y@P firmware loader 613#uyap* at uhub? port ? 614 615# D-Link DSB-R100 USB radio 616#udsbr* at uhub? port ? 617#radio* at udsbr? 618 619# USB Generic driver 620# ugen* at uhub? port ? 621 622 623# IrDA and Consumer Ir devices 624 625# Mice 626 627# Middle Digital, Inc. PCI-Weasel serial console board control 628# devices (watchdog timer, etc.) 629#weasel* at pci? 630 631# Pull in optional local configuration 632include "arch/amd64/conf/GENERIC.local" 633 634# Pseudo-Devices 635 636# disk/mass storage pseudo-devices 637#pseudo-device ccd 4 # concatenated/striped disk devices 638#pseudo-device cgd 4 # cryptographic disk devices 639pseudo-device raid 8 # RAIDframe disk driver 640options RAID_AUTOCONFIG # auto-configuration of RAID components 641#Options to enable various other RAIDframe RAID types. 642#options RF_INCLUDE_EVENODD=1 643#options RF_INCLUDE_RAID5_RS=1 644#options RF_INCLUDE_PARITYLOGGING=1 645#options RF_INCLUDE_CHAINDECLUSTER=1 646#options RF_INCLUDE_INTERDECLUSTER=1 647#options RF_INCLUDE_PARITY_DECLUSTERING=1 648#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 649#pseudo-device fss 4 # file system snapshot device 650 651pseudo-device md 1 # memory disk device (ramdisk) 652#pseudo-device vnd # disk-like interface to files 653 654# network pseudo-devices 655pseudo-device bpfilter # Berkeley packet filter 656pseudo-device loop # network loopback 657#pseudo-device ppp # Point-to-Point Protocol 658#pseudo-device pppoe # PPP over Ethernet (RFC 2516) 659#pseudo-device sl # Serial Line IP 660#pseudo-device strip # Starmode Radio IP (Metricom) 661#pseudo-device irframetty # IrDA frame line discipline 662#pseudo-device tun # network tunneling over tty 663#pseudo-device tap # virtual Ethernet 664#pseudo-device gre # generic L3 over IP tunnel 665#pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 666#pseudo-device faith # IPv[46] tcp relay translation i/f 667#pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 668#pseudo-device vlan # IEEE 802.1q encapsulation 669#pseudo-device bridge # simple inter-network bridging 670 671# miscellaneous pseudo-devices 672pseudo-device pty # pseudo-terminals 673#pseudo-device sequencer 1 # MIDI sequencer 674# rnd works; RND_COM does not on port i386 yet. 675pseudo-device rnd # /dev/random and in-kernel generator 676#options RND_COM # use "com" randomness as well (BROKEN) 677pseudo-device clockctl # user control of clock subsystem 678 679# wscons pseudo-devices 680pseudo-device wsmux # mouse & keyboard multiplexor 681#pseudo-device wsfont 682