ALL revision 1.61
1# $NetBSD: ALL,v 1.61 2017/07/28 15:40:38 riastradh Exp $ 2# From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp 3# 4# ALL machine description file 5# 6# This machine description includes all devices and options and it is 7# used to compile-test the source and does not necessarily produce a 8# bootable or useful kernel. 9# 10# For further information on hardware support for this architecture, see 11# the intro(4) man page. For further information about kernel options 12# for this architecture, see the options(4) man page. For an explanation 13# of each device driver in this file see the section 4 man page for the 14# device. 15 16include "arch/amd64/conf/std.amd64" 17 18options INCLUDE_CONFIG_FILE # embed config file in kernel binary 19 20#ident "ALL-$Revision: 1.61 $" 21 22maxusers 64 # estimated number of users 23 24makeoptions USE_SSP=yes 25 26# CPU-related options. 27#options VM86 # virtual 8086 emulation 28#options USER_LDT # user-settable LDT; used by WINE 29options X86EMU # 386 Real Mode emulator 30#options PAE # PAE mode (36 bits physical addressing) 31 32# CPU features 33acpicpu* at cpu? # ACPI CPU (including frequency scaling) 34coretemp* at cpu? # Intel on-die thermal sensor 35est0 at cpu0 # Intel Enhanced SpeedStep (non-ACPI) 36odcm0 at cpu0 # On-demand clock modulation 37#padlock0 at cpu0 # VIA PadLock 38powernow0 at cpu0 # AMD PowerNow! and Cool'n'Quiet (non-ACPI) 39viac7temp* at cpu? # VIA C7 temperature sensor 40vmt0 at cpu0 # VMware Tools 41 42options PMC # performance-monitoring counters support 43 44# Beep when it is safe to power down the system (requires sysbeep) 45options BEEP_ONHALT 46# Some tunable details of the above feature (default values used below) 47options BEEP_ONHALT_COUNT=3 # Times to beep 48options BEEP_ONHALT_PITCH=1500 # Default frequency (in Hz) 49options BEEP_ONHALT_PERIOD=250 # Default duration (in msecs) 50 51options MULTIBOOT # Multiboot support (see multiboot(8)) 52 53# delay between "rebooting ..." message and hardware reset, in milliseconds 54options CPURESET_DELAY=2000 55 56# This option allows you to force a serial console at the specified 57# I/O address. see console(4) for details. 58options CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600 59# you don't want the option below ON iff you are using the 60# serial console option of the new boot strap code. 61options CONS_OVERRIDE # Always use above! independent of boot info 62 63# The following options override the memory sizes passed in from the boot 64# block. Use them *only* if the boot block is unable to determine the correct 65# values. Note that the BIOS may *correctly* report less than 640k of base 66# memory if the extended BIOS data area is located at the top of base memory 67# (as is the case on most recent systems). 68options REALBASEMEM=639 # size of base memory (in KB) 69options REALEXTMEM=15360 # size of extended memory (in KB) 70 71# The following options limit the overall size of physical memory 72# and/or the maximum address used by the system. 73# Contrary to REALBASEMEM and REALEXTMEM, they still use the BIOS memory map 74# and can deal with holes in the memory layout. 75options PHYSMEM_MAX_SIZE=64 # max size of physical memory (in MB) 76options PHYSMEM_MAX_ADDR=2048 # don't use memory above this (in MB) 77 78# Standard system options 79 80options INSECURE # disable kernel security levels - X needs this 81 82options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 83options NTP # NTP phase/frequency locked loop 84 85options KTRACE # system call tracing via ktrace(1) 86 87options CPU_UCODE # cpu ucode loading support 88 89# Note: SysV IPC parameters could be changed dynamically, see sysctl(8). 90options SYSVMSG # System V-like message queues 91options SYSVSEM # System V-like semaphores 92options SEMMNI=10 # number of semaphore identifiers 93options SEMMNS=60 # number of semaphores in system 94options SEMUME=10 # max number of undo entries per process 95options SEMMNU=30 # number of undo structures in system 96options SYSVSHM # System V-like memory sharing 97 98options MODULAR # new style module(7) framework 99options MODULAR_DEFAULT_AUTOLOAD 100 101options USERCONF # userconf(4) support 102options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 103options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 104 105# Alternate buffer queue strategies for better responsiveness under high 106# disk I/O load. 107options BUFQ_READPRIO 108options BUFQ_PRIOCSCAN 109 110# Diagnostic/debugging support options 111options DIAGNOSTIC # inexpensive kernel consistency checks 112 # XXX to be commented out on release branch 113options DEBUG # expensive debugging checks/support 114options LOCKDEBUG # expensive locking checks/support 115options DDB # in-kernel debugger 116options DDB_COMMANDONENTER="bt" # execute command when ddb is entered 117options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic' 118options DDB_HISTORY_SIZE=512 # enable history editing in DDB 119options DDB_VERBOSE_HELP 120options KGDB # remote debugger 121options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600 122#options IPKDB # IP Kernel Debugger 123#options IPKDBKEY="\"Pass_phrase_to_debug_over_network\"" 124makeoptions COPTS="-O2 -fno-omit-frame-pointer" 125makeoptions DEBUG="-g" # compile full symbol table 126options SYSCALL_STATS # per syscall counts 127options SYSCALL_TIMES # per syscall times 128options SYSCALL_TIMES_HASCOUNTER # use 'broken' rdtsc (soekris) 129options KDTRACE_HOOKS # kernel DTrace hooks 130options UVMHIST # kernhist for uvm subsystem 131options BIOHIST # kernhist for buff I/O 132 133# Compatibility options 134options COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI 135options EXEC_AOUT # required by binaries from before 1.5 136options COMPAT_09 # NetBSD 0.9, 137options COMPAT_10 # NetBSD 1.0, 138options COMPAT_11 # NetBSD 1.1, 139options COMPAT_12 # NetBSD 1.2 (and 386BSD and BSDI), 140options COMPAT_13 # NetBSD 1.3 (and 386BSD and BSDI), 141options COMPAT_14 # NetBSD 1.4, 142options COMPAT_15 # NetBSD 1.5, 143options COMPAT_16 # NetBSD 1.6, 144options COMPAT_20 # NetBSD 2.0, 145options COMPAT_30 # NetBSD 3.0, 146options COMPAT_40 # NetBSD 4.0, 147options COMPAT_50 # NetBSD 5.0, 148options COMPAT_60 # NetBSD 6.0, and 149options COMPAT_70 # NetBSD 7.0 binary compatibility. 150options COMPAT_43 # 4.3BSD, 386BSD, and BSDI 151options COMPAT_44 # 4.4BSD 152options COMPAT_386BSD_MBRPART # recognize old partition ID 153options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 154 155options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility 156options COMPAT_NETBSD32 # NetBSD 32-bit 157options COMPAT_LINUX # binary compatibility with Linux 158options COMPAT_LINUX32 # binary compatibility with Linux 32-bit 159options COMPAT_IBCS2 # binary compatibility with SCO and ISC 160options COMPAT_FREEBSD # binary compatibility with FreeBSD 161options COMPAT_NDIS # NDIS network driver 162options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 163options COMPAT_OSF1 # OSF1 binary compatibility 164#options COMPAT_SVR4 # SVR4 binary compatibility (no amd64) 165#options COMPAT_SVR4_32 # SVR4 32-bit binary compatibility (no amd64) 166options COMPAT_ULTRIX # DEC Ultrix binary compatibility 167options COMPAT_SUNOS # SunOS 4.x binary compatibility 168 169# Wedge support 170options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances 171options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges 172options DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges 173options DKWEDGE_METHOD_MBR # Support MBR partitions as wedges 174options DKWEDGE_METHOD_APPLE # Support Apple partitions as wedges 175options DKWEDGE_METHOD_RDB # Support RDB partitions as wedges 176 177# File systems 178file-system FFS # UFS 179file-system EXT2FS # second extended file system (linux) 180file-system LFS # log-structured file system 181file-system MFS # memory file system 182file-system NFS # Network File System client 183file-system NTFS # Windows/NT file system (experimental) 184file-system CD9660 # ISO 9660 + Rock Ridge file system 185file-system MSDOSFS # MS-DOS file system 186file-system FDESC # /dev/fd 187file-system KERNFS # /kern 188file-system NULLFS # loopback file system 189file-system OVERLAY # overlay file system 190file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 191file-system PROCFS # /proc 192file-system UMAPFS # NULLFS + uid and gid remapping 193file-system UNION # union file system 194file-system CODA # Coda File System; also needs vcoda (below) 195file-system SMBFS # experimental - CIFS; also needs nsmb (below) 196file-system SYSVBFS # System V boot file system 197file-system PTYFS # /dev/ptm support 198file-system TMPFS # Efficient memory file-system 199file-system UDF # experimental - OSTA UDF CD/DVD file-system 200file-system HFS # experimental - Apple HFS+ file system 201file-system EFS # Silicon Graphics Extent File System 202file-system FILECORE # Acorn filecore file system 203file-system ADOSFS # AmigaDOS file system 204file-system NILFS # experimental - NTT's NiLFS(2) 205file-system V7FS # 7th Edition(V7) File System 206file-system CHFS # Chip File System 207 208# File system options 209options QUOTA # legacy UFS quotas 210options QUOTA2 # new, in-filesystem UFS quotas 211options DISKLABEL_EI # disklabel Endian Independent support 212options FFS_EI # FFS Endian Independent support 213options WAPBL # File system journaling support 214options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 215options UFS_EXTATTR 216options LFS_KERNEL_RFW 217options LFS_EI # LFS endian-independent support - experimental 218options LFS_DIRHASH # LFS version of UFS_DIRHASH - experimental 219options LFS_EXTATTR # extended attributes for LFS - experimental 220options LFS_QUOTA # quotas for LFS - experimental 221options LFS_QUOTA2 # new-style quotas for LFS - experimental 222options NFSSERVER # Network File System server 223#options FFS_NO_SNAPSHOT # No FFS snapshot support 224options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 225 # immutable) behave as system flags. 226options V7FS_EI # V7FS Endian Independent support 227 228# Networking options 229options GATEWAY # packet forwarding 230options INET # IP + ICMP + TCP + UDP 231options INET6 # IPv6 232options IPSEC # IP security 233#options IPSEC_DEBUG # debug for IP security 234options MPLS # MultiProtocol Label Switching (needs mpls) 235options MROUTING # IP multicast routing 236options PIM # Protocol Independent Multicast 237options NETATALK # AppleTalk networking protocols 238options CAN # Controller Area Network protocol 239options DCCP # Datagram Congestion Control Protocol 240options PPP_BSDCOMP # BSD-Compress compression support for PPP 241options PPP_DEFLATE # Deflate compression support for PPP 242options PPP_FILTER # Active filter support for PPP (requires bpf) 243options IPFILTER_LOG # ipmon(8) log support 244options IPFILTER_LOOKUP # ippool(8) support 245options IPFILTER_COMPAT # Compat for IP-Filter 246options IPFILTER_DEFAULT_BLOCK # block all packets by default 247options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 248options TCP_SIGNATURE # RFC 2385 support, used with BGP 249options SCTP # Stream Control Transmission Protocol 250 251options ALTQ # Manipulate network interfaces' output queues 252options ALTQ_BLUE # Stochastic Fair Blue 253options ALTQ_CBQ # Class-Based Queueing 254options ALTQ_CDNR # Diffserv Traffic Conditioner 255options ALTQ_FIFOQ # First-In First-Out Queue 256options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 257options ALTQ_HFSC # Hierarchical Fair Service Curve 258options ALTQ_LOCALQ # Local queueing discipline 259options ALTQ_PRIQ # Priority Queueing 260options ALTQ_RED # Random Early Detection 261options ALTQ_RIO # RED with IN/OUT 262options ALTQ_WFQ # Weighted Fair Queueing 263 264# These options enable verbose messages for several subsystems. 265# Warning, these may compile large string tables into the kernel! 266options ACPIVERBOSE # verbose ACPI device autoconfig messages 267options EISAVERBOSE # verbose EISA device autoconfig messages 268options MIIVERBOSE # verbose PHY autoconfig messages 269options MPVERBOSE # verbose mpbios config messages 270options PCIVERBOSE # verbose PCI device autoconfig messages 271options PCI_CONFIG_DUMP # verbosely dump PCI config space 272options PCMCIAVERBOSE # verbose PCMCIA configuration messages 273options SCSIVERBOSE # human readable SCSI error messages 274options USBVERBOSE # verbose USB device autoconfig messages 275options PNPBIOSVERBOSE # verbose PnP BIOS messages 276#options PNPBIOSDEBUG # more fulsome PnP BIOS debugging messages 277options MCAVERBOSE # verbose MCA device autoconfig messages 278options HDAUDIOVERBOSE # verbose HDAUDIO driver messages 279 280options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 281 282# 283# wscons options 284# 285# builtin terminal emulations 286options WSEMUL_SUN # sun terminal emulation 287options WSEMUL_VT100 # VT100 / VT220 emulation 288# customization of console and kernel output - see dev/wscons/wsdisplayvar.h 289options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8) 290options WS_DEFAULT_FG=WSCOL_WHITE 291options WS_DEFAULT_BG=WSCOL_BLACK 292options WS_DEFAULT_COLATTR="(0)" 293options WS_DEFAULT_MONOATTR="(0)" 294options WS_KERNEL_FG=WSCOL_GREEN 295options WS_KERNEL_BG=WSCOL_BLACK 296options WS_KERNEL_COLATTR="(0)" 297options WS_KERNEL_MONOATTR="(0)" 298# customization of console border color 299options WSDISPLAY_CUSTOM_BORDER # custom border colors via wsconsctl(8) 300options WSDISPLAY_BORDER_COLOR=WSCOL_BLUE # default color 301# compatibility to other console drivers 302options WSDISPLAY_COMPAT_PCVT # emulate some ioctls 303options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls 304options WSDISPLAY_COMPAT_USL # wsconscfg VT handling 305options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes 306options WSKBD_EVENT_AUTOREPEAT # auto repeat in event mode 307#options WSKBD_USONLY # strip off non-US keymaps 308# don't attach pckbd as the console if no PS/2 keyboard is found 309options PCKBD_CNATTACH_MAY_FAIL 310# see dev/pckbport/wskbdmap_mfii.c for implemented layouts 311options PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver 312options UKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for ukbd driver 313# allocate a number of virtual screens at autoconfiguration time 314options WSDISPLAY_DEFAULTSCREENS=4 315# use a large software cursor that doesn't blink 316options PCDISPLAY_SOFTCURSOR 317# modify the screen type of the console; defaults to "80x25" 318options VGA_CONSOLE_SCREENTYPE="\"80x24\"" 319# work around a hardware bug that loaded fonts don't work; found on ATI cards 320options VGA_CONSOLE_ATI_BROKEN_FONTSEL 321# console scrolling support. 322options WSDISPLAY_SCROLLSUPPORT 323# enable VGA raster mode capable of displaying multilingual text on console 324#options VGA_RASTERCONSOLE 325# enable splash screen support; requires hw driver support 326#options SPLASHSCREEN 327 328# Keylock support 329options KEYLOCK 330options secmodel_keylock # Requires options KEYLOCK 331 332# Kernel root file system and dump configuration. 333config netbsd root on ? type ? 334#config netbsd root on sd0a type ffs 335#config netbsd root on ? type nfs 336 337# 338# Device configuration 339# 340 341#apm0 at mainbus0 # Advanced power management 342 343# Tuning for power management, see apm(4) for more details. 344#options APM_V10_ONLY # Use only the APM 1.0 calls 345#options APM_NO_POWEROFF # Don't power off on halt(8) 346#options APM_POWER_PRINT # Print stats on the console 347#options APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts 348 349 350# Basic Bus Support 351 352#IPMI support 353ipmi0 at mainbus? 354 355# Advanced Configuration and Power Interface 356 357# This option can be used to retrieve CPU and APIC information. 358# that I/O APICs can be used if ACPI is enabled below. 359options ACPI_SCANPCI # find PCI roots using ACPI 360options MPBIOS # configure CPUs and APICs using MPBIOS 361options MPBIOS_SCANPCI # MPBIOS configures PCI roots 362options PCI_INTR_FIXUP # PCI interrupt routing via ACPI 363options PCI_BUS_FIXUP # fixup PCI bus numbering 364options PCI_ADDR_FIXUP # fixup PCI I/O addresses 365options ACPI_ACTIVATE_DEV # If set, activate inactive devices 366options VGA_POST # in-kernel support for VGA POST 367 368acpi0 at mainbus0 369 370# ACPI devices 371apm* at acpi? # ACPI apm emulation 372acpiacad* at acpi? # ACPI AC Adapter 373acpibat* at acpi? # ACPI Battery 374acpibut* at acpi? # ACPI Button 375acpidalb* at acpi? # ACPI Direct Application Launch Button 376acpiec* at acpi? # ACPI Embedded Controller (late) 377acpiecdt* at acpi? # ACPI Embedded Controller (early) 378acpifan* at acpi? # ACPI Fan 379acpilid* at acpi? # ACPI Lid Switch 380acpipmtr* at acpi? # ACPI Power Meter (experimental) 381# XXX Do not enable this in a real kernel unless you also disable any 382# XXX "native" i2c controller. Otherwise you'll have two accessors to 383# XXX the same bus, and bad things (tm) will happen! 384acpismbus* at acpi? # ACPI SMBus CMI (experimental) 385acpitz* at acpi? # ACPI Thermal Zone 386acpivga* at acpi? # ACPI Display Adapter 387acpiout* at acpivga? # ACPI Display Output Device 388acpiwdrt* at acpi? # ACPI Watchdog Resource Table 389acpiwmi* at acpi? # ACPI WMI Mapper 390 391# Mainboard devices 392aibs* at acpi? # ASUSTeK AI Booster hardware monitor 393applesmc* at acpi? # Apple System Management Controller 394asus* at acpi? # ASUS hotkeys 395attimer* at acpi? # AT Timer 396com* at acpi? # Serial communications interface 397fdc* at acpi? # Floppy disk controller 398fujbp* at acpi? # Fujitsu Brightness & Pointer 399fujhk* at acpi? # Fujitsu Hotkeys 400hpacel* at acpi? # HP 3D DriveGuard accelerometer 401hpqlb* at acpi? # HP Quick Launch Buttons 402hpet* at acpihpetbus? # High Precision Event Timer (table) 403hpet* at acpinodebus? # High Precision Event Timer (device) 404joy* at acpi? # Joystick/Game port 405lpt* at acpi? # Parallel port 406mpu* at acpi? # Roland MPU-401 MIDI UART 407pckbc* at acpi? # PC keyboard controller 408pcppi* at acpi? # AT-style speaker sound 409sdhc* at acpi? # SD Host Controller 410sony* at acpi? # Sony Notebook Controller 411spic* at acpi? # Sony Programmable I/O Controller 412wsmouse* at spic? # mouse 413thinkpad* at acpi? # IBM/Lenovo Thinkpad hotkeys 414tpm* at acpi? # ACPI TPM (Experimental) 415ug* at acpi? # Abit uGuru Hardware monitor 416valz* at acpi? # Toshiba Dynabook hotkeys 417wb* at acpi? # Winbond W83L518D SD/MMC reader 418sdmmc* at wb? # SD/MMC bus 419sdhc* at acpi? # SD Host Controller 420sony* at acpi? # Sony Notebook Controller 421wmidell* at acpiwmibus? # Dell WMI mappings 422wmieeepc* at acpiwmibus? # Asus Eee PC WMI mappings 423wmihp* at acpiwmibus? # HP WMI mappings 424wmimsi* at acpiwmibus? # MSI WMI mappings 425wss* at acpi? # NeoMagic 256AV in wss mode 426ym* at acpi? # Yamaha OPL3-SA[23] audio 427 428# Apple System Management Controller devices 429applesmcfan* at applesmcbus? 430applesmctemp* at applesmcbus? 431 432# PCI bus support 433pci* at mainbus? bus ? 434pci* at pchb? bus ? 435pci* at ppb? bus ? 436 437# Configure PCI using BIOS information 438options PCIBIOS # PCI BIOS support 439options PCIBIOSVERBOSE # PCI BIOS verbose info 440options PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11 441options PCIBIOS_INTR_GUESS # see pcibios(4) 442options PCIBIOS_LIBRETTO_FIXUP # this code makes the Toshiba Libretto 443 # L2/L3 work, but should not be enabled 444 # on anything else. 445options PCIBIOS_SHARP_MM20_FIXUP # this code makes the Sharp MM 20 446 # work, but should not be enabled 447 # on anything else. 448#options PCIINTR_DEBUG # super-verbose PCI interrupt fixup 449 450# Temperatures 451amdnb_misc* at pci? # AMD NB Misc Configuration 452amdtemp* at amdnb_misc? # AMD CPU Temperature sensors 453 454# PCI bridges 455rdcpcib* at pci? dev ? function ? # RDC Vortex86/PMX-1000 PCI-ISA w/ 456pchb* at pci? dev ? function ? # PCI-Host bridges 457options AGP_X86 458pcib* at pci? dev ? function ? # PCI-ISA bridges 459ppb* at pci? dev ? function ? # PCI-PCI bridges 460# XXX 'puc's aren't really bridges, but there's no better place for them here 461puc* at pci? dev ? function ? # PCI "universal" comm. cards 462 463amdpcib* at pci? dev ? function ? # AMD 8111 PCI-ISA w/ HPET 464hpet* at amdpcib? 465 466pwdog* at pci? dev ? function ? # QUANCOM PWDOG1 467 468ichlpcib* at pci? dev ? function ? # Intel ICH PCI-LPC w/ timecounter, 469 # watchdog, gpio, Speedstep and HPET 470fwhrng* at ichlpcib? # Intel 82802 FWH Random Number Generator 471hpet* at ichlpcib? 472tco* at ichlpcib? # TCO watch dog timer 473 474aapic* at pci? dev ? function ? # AMD 8131 IO apic 475 476agp* at pchb? 477 478# ISA bus support 479isa0 at mainbus? 480isa0 at pcib? 481isa0 at amdpcib? 482isa0 at ichlpcib? 483isa0 at rdcpcib? 484isa0 at rdcpcib? 485 486# IBM 4810 BSP cash drawer port 487ibmcd* at pci? dev ? function ? 488gpio* at ibmcd? 489 490# CardBus bridge support 491cbb* at pci? dev ? function ? 492cardslot* at cbb? 493 494# CardBus bus support 495cardbus* at cardslot? 496pcmcia* at cardslot? 497 498# Coprocessor Support 499 500# Console Devices 501 502# wscons 503pckbc0 at isa? # PC keyboard controller 504pckbd* at pckbc? # PC keyboard 505pms* at pckbc? # PS/2 mouse for wsmouse 506options PMS_SYNAPTICS_TOUCHPAD # Enable support for Synaptics Touchpads 507options PMS_ELANTECH_TOUCHPAD # Enable support for Elantech Touchpads 508vga0 at isa? 509vga* at pci? dev ? function ? 510genfb* at pci? dev ? function ? 511options VCONS_DRAW_INTR 512wsdisplay* at vga? console ? 513wsdisplay* at wsemuldisplaydev? 514pcdisplay0 at isa? # CGA, MDA, EGA, HGA 515wskbd* at pckbd? console ? 516wsmouse* at pms? mux 0 517 518chipsfb* at pci? dev ? function ? 519genfb* at pci? dev ? function ? 520gffb* at pci? dev ? function ? 521igsfb* at pci? dev ? function ? 522machfb* at pci? dev ? function ? 523pm2fb* at pci? dev ? function ? 524r128fb* at pci? dev ? function ? 525radeonfb* at pci? dev ? function ? 526tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics 527unichromefb* at pci? dev ? function ? # VIA Unichrome framebuffer console 528voodoofb* at pci? dev ? function ? 529wcfb* at pci? dev ? function ? 530 531# DRI legacy drivers 532#i915drm* at drm? # Intel i915, i945 DRM driver 533#mach64drm* at drm? # mach64 (3D Rage Pro, Rage) DRM driver 534#mgadrm* at drm? # Matrox G[24]00, G[45]50 DRM driver 535#r128drm* at drm? # ATI Rage 128 DRM driver 536#radeondrm* at drm? # ATI Radeon DRM driver 537#savagedrm* at drm? # S3 Savage DRM driver 538#sisdrm* at drm? # SiS DRM driver 539#tdfxdrm* at drm? # 3dfx (voodoo) DRM driver 540#vboxdrm* at drm? # VirtualBox DRM driver 541#viadrm* at drm? # VIA UniChrome DRM driver 542 543# DRMKMS drivers 544i915drmkms* at pci? dev ? function ? 545intelfb* at intelfbbus? 546 547radeon* at pci? dev ? function ? 548radeondrmkmsfb* at radeonfbbus? 549 550nouveau* at pci? dev ? function ? 551nouveaufb* at nouveaufbbus? 552 553attimer0 at isa? 554pcppi0 at isa? 555sysbeep0 at pcppi? 556 557# Serial Devices 558 559# PCI serial interfaces 560com* at puc? port ? # 16x50s on "universal" comm boards 561cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards 562cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards 563 564# PCMCIA serial interfaces 565com* at pcmcia? function ? # Modems and serial cards 566 567pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 568com* at pcmcom? slave ? # ...and the slave devices 569 570# CardBus serial interfaces 571com* at cardbus? function ? # Modems and serial cards 572 573# Cardbus bridges 574#ppb* at cardbus? function ? # Cardbus-PCI bridges (www.magma.com) 575 576# ISA serial interfaces 577#options COM_HAYESP # adds Hayes ESP serial board support 578com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports 579com1 at isa? port 0x2f8 irq 3 580com2 at isa? port 0x3e8 irq 5 581com3 at isa? port 0x2e8 irq 9 582ast0 at isa? port 0x1a0 irq 5 # AST 4-port serial cards 583com* at ast? slave ? 584boca0 at isa? port 0x100 irq 5 # BOCA 8-port serial cards 585boca0 at isa? port 0x100 irq 5 # BOCA 16-port serial cards (BB2016) 586boca1 at isa? port 0x140 irq 5 # this line is also needed for BB2016 587com* at boca? slave ? 588tcom0 at isa? port 0x100 irq 7 # TC-800 8-port serial cards 589com* at tcom? slave ? 590rtfps0 at isa? port 0x1230 irq 10 # RT 4-port serial cards 591com* at rtfps? slave ? 592cy0 at isa? iomem 0xd4000 irq 12 # Cyclades serial cards 593addcom0 at isa? port 0x108 irq 5 # Addonics FlexPort 8S 594com* at addcom? slave ? 595moxa0 at isa? port 0x100 irq 5 # MOXA C168H serial card (experimental) 596com* at moxa? slave ? 597ioat* at isa? port 0x220 irq 5 # BOCA IOAT66 6-port serial card 598com* at ioat? slave ? 599 600# Parallel Printer Interfaces 601 602# PCI parallel printer interfaces 603lpt* at puc? port ? # || ports on "universal" comm boards 604 605# ISA parallel printer interfaces 606lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports 607lpt1 at isa? port 0x278 608lpt2 at isa? port 0x3bc 609 610# Hardware monitors 611 612amdnb_misc* at pci? # AMD NB Misc Configuration 613amdtemp* at amdnb_misc? # AMD CPU Temperature sensors 614 615# Winbond LPC Super I/O 616wbsio* at isa? port 0x2e 617wbsio* at isa? port 0x4e 618 619# IBM Hawk Integrated Systems Management Processor 620ibmhawk0 at iic? addr 0x37 621 622# LM7[89] and compatible hardware monitors 623# Use flags to select temp sensor type (see lm(4) man page for details) 624lm0 at isa? port 0x290 flags 0x0 # other common ports: 0x280, 0x310 625lm* at wbsio? 626 627# SMSC LPC47B397 hardware monitor functions 628smsc0 at isa? port 0x02e 629 630# SMSC LPC47M192 hardware monitor 631smscmon* at iic? addr 0x2c 632smscmon* at iic? addr 0x2d # (alternate address) 633 634# AMD 768 and 8111 power/ACPI controllers 635amdpm* at pci? dev ? function ? # RNG and SMBus 1.0 interface 636iic* at amdpm? # sensors below are on this bus 637 638# Acer Labs M7101 SMBus controller 639alipm* at pci? dev ? function ? 640iic* at alipm? 641 642# Intel ICH SMBus controller 643ichsmb* at pci? dev ? function ? 644iic* at ichsmb? 645 646# NVIDIA nForce2/3/4 SMBus controller 647nfsmbc* at pci? dev ? function ? 648nfsmb* at nfsmbc? 649iic* at nfsmb? 650 651# Intel PIIX4 power management controllers 652piixpm* at pci? dev ? function ? # PIIX4 compatible PM controller 653iic* at piixpm? # SMBus on PIIX4 654 655# dbCool Thermal monitor and fan controller 656dbcool* at iic? addr 0x2C # Unknown other motherboard(s) 657dbcool* at iic? addr 0x2D # Tyan S2881 658dbcool* at iic? addr 0x2E # Tyan S2882-D 659 660# IBM Hawk Integrated Systems Management Processor 661ibmhawk0 at iic? addr 0x37 662 663# LM7[89] and compatible hardware monitors 664# Use flags to select temp sensor type (see lm(4) man page for details) 665lm0 at iic? addr 0x2e flags 0x0 666 667# SMSC LPC47M192 hardware monitor 668smscmon* at iic? addr 0x2c 669#smscmon* at iic? addr 0x2d # (alternate address) 670 671# IBM Thinkpad Active Protection System 672aps0 at isa? port 0x1600 673 674# Fintek Super I/O with hardware monitor 675finsio0 at isa? port 0x4e 676 677# iTE IT87xxF Super I/O with watchdog and sensors support 678itesio0 at isa? port 0x2e 679 680# Winbond LPC Super I/O 681wbsio* at isa? port 0x2e 682wbsio* at isa? port 0x4e 683 684# LM7[89] and compatible hardware monitors 685lm0 at isa? port 0x290 flags 0x0 # other common: 0x280, 0x310 686lm* at wbsio? 687 688# SMSC LPC47B397 hardware monitor functions 689smsc0 at isa? port 0x02e 690 691# PC87366 hardware monitor 692nsclpcsio* at isa? 693gpio* at nsclpcsio? 694 695# Abit uGuru Hardware system monitor 696ug0 at isa? port 0xe0 697 698# VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer 699viaenv* at pci? dev ? function ? 700 701# Serial Presence Detect capable memory modules and optional temp sensors 702spdmem* at iic? addr 0x50 703spdmem* at iic? addr 0x51 704spdmem* at iic? addr 0x52 705spdmem* at iic? addr 0x53 706spdmem* at iic? addr 0x54 707spdmem* at iic? addr 0x55 708spdmem* at iic? addr 0x56 709spdmem* at iic? addr 0x57 710sdtemp* at iic? addr 0x18 711sdtemp* at iic? addr 0x19 712sdtemp* at iic? addr 0x1a 713sdtemp* at iic? addr 0x1b 714sdtemp* at iic? addr 0x1c 715sdtemp* at iic? addr 0x1d 716sdtemp* at iic? addr 0x1e 717sdtemp* at iic? addr 0x1f 718 719# I2O devices 720iop* at pci? dev ? function ? # I/O processor 721iopsp* at iop? tid ? # SCSI/FC-AL ports 722ld* at iop? tid ? # block devices 723dpti* at iop? tid 0 # DPT/Adaptec control interface 724 725# GPIO devices 726gpio* at gpiosim? 727 728# 1-Wire support 729gpioow* at gpio? offset ? mask ? # 1-wire bitbanging via gpio 730gpioow* at gpio? 731onewire* at gpioow? 732 733# 1-Wire devices 734owtemp* at onewire? # Temperature sensors 735 736# I2C support 737gpioiic* at gpio? 738iic* at gpioiic? 739 740# Keylock support 741gpiolock* at gpio? 742 743# Pulsing GPIO pins in software 744gpiopwm* at gpio? 745 746# Soekris 6501 GPIO/LED driver (provides gpiobus, needs gpio) 747soekrisgpio0 at isa? port 0x680 748 749# SCSI Controllers and Devices 750 751# PCI SCSI controllers 752adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 753adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI 754ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI 755ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI 756bha* at pci? dev ? function ? # BusLogic 9xx SCSI 757dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID 758iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI 759isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel 760mfi* at pci? dev ? function ? # LSI MegaRAID SAS 761mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID 762mpt* at pci? dev ? function ? # LSILogic 9x9 and 53c1030 (Fusion-MPT) 763mpii* at pci? dev ? function ? # LSI Logic Fusion-MPT II 764nca* at pci? dev ? function ? # Domex DMX-3191D 765njs* at pci? dev ? function ? # Workbit NinjaSCSI-32 766pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI 767siop* at pci? dev ? function ? # Symbios 53c8xx SCSI 768esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer 769options SIOP_SYMLED # drive the act. LED in software 770trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI 771 772# PCMCIA SCSI controllers 773aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 774esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 775nca* at pcmcia? function ? # NCR53C400 SCSI 776spc* at pcmcia? function ? # Fujitsu MB87030/MB89352 SCSI 777 778# ISA SCSI controllers 779adv0 at isa? port ? irq ? drq ? # AdvanSys APB-514[02] SCSI 780aha0 at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI 781aha1 at isa? port 0x334 irq ? drq ? 782aic0 at isa? port 0x340 irq 11 # Adaptec 152[02] SCSI 783bha0 at isa? port 0x330 irq ? drq ? # BusLogic [457]4X SCSI 784bha1 at isa? port 0x334 irq ? drq ? 785# The "nca" and "dpt" probes might give false hits or hang your machine. 786dpt0 at isa? port 0x170 irq ? drq ? # DPT SmartCache/SmartRAID 787esp0 at isa? port 0x230 irq ? # Emulex ESP406 and Qlogic FAS408 SCSI 788nca0 at isa? port 0x360 irq 15 # Port-mapped NCR 53C80 controller 789nca1 at isa? iomem 0xd8000 irq 5 # Memory-mapped controller (T128, etc.) 790sea0 at isa? iomem 0xc8000 irq 5 # Seagate/Future Domain SCSI 791uha0 at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI 792uha1 at isa? port 0x340 irq ? drq ? 793wds0 at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers 794wds1 at isa? port 0x358 irq 11 drq 5 795 796# CardBus SCSI cards 797adv* at cardbus? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI 798ahc* at cardbus? function ? # Adaptec ADP-1480 799njs* at cardbus? function ? # Workbit NinjaSCSI-32 800 801# SCSI bus support 802scsibus* at scsi? 803 804# SCSI devices 805sd* at scsibus? target ? lun ? # SCSI disk drives 806st* at scsibus? target ? lun ? # SCSI tape drives 807cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 808ch* at scsibus? target ? lun ? # SCSI autochangers 809ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 810ss* at scsibus? target ? lun ? # SCSI scanners 811se* at scsibus? target ? lun ? # SCSI ethernet adapters 812uk* at scsibus? target ? lun ? # SCSI unknown 813 814# SCSI NIC 815se* at scsibus? target ? lun ? 816 817# RAID controllers and devices 818aac* at pci? dev ? function ? # Adaptec AAC family 819amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID 820arcmsr* at pci? dev ? function ? # Areca SATA RAID controllers 821cac* at pci? dev ? function ? # Compaq PCI array controllers 822ciss* at pci? dev ? function ? # HP Smart Array controllers 823icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID 824mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family 825twa* at pci? dev ? function ? # 3ware Escalade 95xx RAID controllers 826twe* at pci? dev ? function ? # 3ware Escalade RAID controllers 827 828ld* at aac? unit ? # logical disk devices 829ld* at amr? unit ? 830ld* at cac? unit ? 831ld* at icp? unit ? 832ld* at twa? unit ? 833ld* at twe? unit ? 834ld* at mlx? unit ? 835 836icpsp* at icp? unit ? # SCSI pass-through 837 838# IDE and related devices 839# PCI IDE controllers - see pciide(4) for supported hardware. 840# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know 841# how to set up DMA modes for this chip. This may work, or may cause 842# a machine hang with some controllers. 843pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver 844acardide* at pci? dev ? function ? # Acard IDE controllers 845aceride* at pci? dev ? function ? # Acer Lab IDE controllers 846ahcisata* at pci? dev ? function ? # AHCI SATA controllers 847artsata* at pci? dev ? function ? # Intel i31244 SATA controller 848cmdide* at pci? dev ? function ? # CMD tech IDE controllers 849cypide* at pci? dev ? function ? # Cypress IDE controllers 850geodeide* at pci? dev ? function ? # AMD Geode IDE controllers 851hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers 852iteide* at pci? dev ? function ? # IT Express IDE controllers 853ixpide* at pci? dev ? function ? # ATI IXP IDE controllers 854jmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers 855ahcisata* at jmide? 856mvsata* at pci? dev ? function ? # Marvell Hercules-I/II 857optiide* at pci? dev ? function ? # Opti IDE controllers 858piixide* at pci? dev ? function ? # Intel IDE controllers 859pdcide* at pci? dev ? function ? # Promise IDE controllers 860pdcsata* at pci? dev ? function ? # Promise SATA150 controllers 861rccide* at pci? dev ? function ? # ServerWorks IDE controllers 862rdcide* at pci? dev ? function ? # RDC PMX-1000 IDE controllers 863satalink* at pci? dev ? function ? # SiI SATALink controllers 864schide* at pci? dev ? function ? # Intel SCH IDE controllers 865siisata* at pci? dev ? function ? # SiI SteelVine controllers 866siside* at pci? dev ? function ? # SiS IDE controllers 867slide* at pci? dev ? function ? # Symphony Labs IDE controllers 868svwsata* at pci? dev ? function ? # ServerWorks SATA controllers 869stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers 870toshide* at pci? dev ? function ? # TOSHIBA PICCOLO controllers 871viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers 872 873# PCMCIA IDE controllers 874wdc* at pcmcia? function ? 875 876# CardBus IDE controllers 877njata* at cardbus? function ? flags 0x01 # Workbit NinjaATA-32 878siisata* at cardbus? function ? # SiI SteelVine controllers 879 880# ISA ST506, ESDI, and IDE controllers 881# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will 882# fall back to 16bits I/O if 32bits I/O are not functional). 883# Some controllers pass the initial 32bit test, but will fail later. 884wdc0 at isa? port 0x1f0 irq 14 flags 0x00 885wdc1 at isa? port 0x170 irq 15 flags 0x00 886 887# ATA (IDE) bus support 888atabus* at ata? 889options ATADEBUG 890 891# IDE drives 892# Flags are used only with controllers that support DMA operations 893# and mode settings (e.g. some pciide controllers) 894# The lowest order four bits (rightmost digit) of the flags define the PIO 895# mode to use, the next set of four bits the DMA mode and the third set the 896# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode 897# to use, and the last bit must be 1 for this setting to be used. 898# For DMA and UDMA, 0xf (1111) means 'disable'. 899# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'. 900# (0xc=1100, 0xa=1010, 0xf=1111) 901# 0x0000 means "use whatever the drive claims to support". 902wd* at atabus? drive ? flags 0x0000 903 904# ATA RAID configuration support, as found on some Promise controllers. 905pseudo-device ataraid 906ld* at ataraid? vendtype ? unit ? 907 908# ATAPI bus support 909atapibus* at atapi? 910 911# ATAPI devices 912# flags have the same meaning as for IDE drives. 913cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives 914sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives 915st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives 916uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown 917 918 919# NVM Express controllers and devices 920nvme* at pci? dev ? function ? 921ld* at nvme? nsid ? 922 923 924# Miscellaneous mass storage devices 925 926# ISA floppy 927fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers 928#fdc1 at isa? port 0x370 irq ? drq ? 929fd* at fdc? drive ? # the drives themselves 930# some machines need you to do this instead of fd* 931fd0 at fdc0 drive 0 932 933# ISA CD-ROM devices 934mcd0 at isa? port 0x300 irq 10 # Mitsumi CD-ROM drives 935 936# ISA tape devices 937# note: the wt driver conflicts unpleasantly with SMC boards at the 938# same I/O address. The probe reprograms their EEPROMs. Don't 939# uncomment it unless you are actually using it. 940wt0 at isa? port 0x308 irq 5 drq 1 # Archive and Wangtek QIC tape drives 941 942# Network Interfaces 943 944# PCI network interfaces 945age* at pci? dev ? function ? # Attansic/Atheros L1 Gigabit Ethernet 946alc* at pci? dev ? function ? # Attansic/Atheros L1C/L2C Ethernet 947ale* at pci? dev ? function ? # Attansic/Atheros L1E Ethernet 948an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 949ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11 950athn* at pci? dev ? function ? # Atheros AR9k (802.11a/g/n) 951atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11) 952bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet 953bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 954bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet 955bwi* at pci? dev ? function ? # Broadcom BCM43xx wireless 956cas* at pci? dev ? function ? # Sun Cassini/Cassini+ Ethernet 957dge* at pci? dev ? function ? # Intel 82597 10GbE LR 958en* at pci? dev ? function ? # ENI/Adaptec ATM 959ep* at pci? dev ? function ? # 3Com 3c59x 960epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 961esh* at pci? dev ? function ? # Essential HIPPI card 962et* at pci? dev ? function ? # Agere/LSI ET1310/ET1301 Gigabit 963ex* at pci? dev ? function ? # 3Com 3c90x[BC] 964fpa* at pci? dev ? function ? # DEC DEFPA FDDI 965fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 966gem* at pci? dev ? function ? # Apple GMAC and Sun ERI gigabit enet 967gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 968hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 969ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100 970iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG 971iwm* at pci? dev ? function ? # Intel Wireless WiFi Link 7xxx 972iwn* at pci? dev ? function ? # Intel PRO/Wireless 4965AGN 973ixg* at pci? dev ? function ? # Intel 8259x 10 gigabit 974ixv* at pci? dev ? function ? # Intel 8259x 10G virtual function 975jme* at pci? dev ? function ? # JMicron JMC2[56]0 ethernet 976hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 977le* at pci? dev ? function ? # PCnet-PCI Ethernet 978lii* at pci? dev ? function ? # Atheros L2 Fast-Ethernet 979lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 980malo* at pci? dev ? function ? # Marvell Libertas Wireless 981mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet 982msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet 983mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 984#ndis* at pci? dev ? function ? # Experimental - NDIS Network Driver 985ne* at pci? dev ? function ? # NE2000-compatible Ethernet 986nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet 987ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 988pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 989ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g 990re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S 991rtk* at pci? dev ? function ? # Realtek 8129/8139 992rtw* at pci? dev ? function ? # Realtek 8180L (802.11) 993rtwn* at pci? dev ? function ? # Realtek 8188CE/8192CE 802.11b/g/n 994sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 995sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 996skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 997sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 998ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 999stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 1000ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 1001tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 1002tlp* at pci? dev ? function ? # DECchip 21x4x and clones 1003txp* at pci? dev ? function ? # 3com 3cr990 1004vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet 1005vmx* at pci? dev ? function ? # VMware VMXNET3 1006vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 1007vte* at pci? dev ? function ? # Vortex86 RDC R6040 Fast Ethernet 1008wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 1009wm* at pci? dev ? function ? # Intel 8254x gigabit 1010wpi* at pci? dev ? function ? # Intel PRO/Wireless 3945ABG 1011xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE 1012 1013# PCMCIA network interfaces 1014an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 1015awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 1016cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 1017cs* at pcmcia? function ? # CS89xx Ethernet 1018ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 1019malo* at pcmcia? function ? # Marvell Libertas 1020mbe* at pcmcia? function ? # MB8696x based Ethernet 1021ne* at pcmcia? function ? # NE2000-compatible Ethernet 1022ray* at pcmcia? function ? # Raytheon Raylink (802.11) 1023sm* at pcmcia? function ? # Megahertz Ethernet 1024# tr at pcmcia has problems with Cardbus bridges 1025tr* at pcmcia? function ? # TROPIC based Token-Ring 1026wi* at pcmcia? function ? # Lucent/Intersil WaveLAN/IEEE (802.11) 1027xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 1028com* at xirc? 1029xi* at xirc? 1030mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 1031com* at mhzc? 1032sm* at mhzc? 1033 1034# ISA network interfaces 1035ate0 at isa? port 0x2a0 irq ? # AT1700 1036cs0 at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet 1037ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet 1038eg0 at isa? port 0x280 irq 9 # 3c505 Ethernet cards 1039el0 at isa? port 0x300 irq 9 # 3c501 Ethernet cards 1040ep* at isa? port ? irq ? # 3c509 Ethernet cards 1041ef0 at isa? port 0x360 iomem 0xd0000 irq 7 # 3c507 1042ai0 at isa? port 0x360 iomem 0xd0000 irq 7 # StarLAN 1043fmv0 at isa? port 0x2a0 irq ? # FMV-181/182 1044ix0 at isa? port 0x300 irq 10 # EtherExpress/16 1045iy0 at isa? port 0x360 irq ? # EtherExpress PRO 10 ISA 1046lc0 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC) 1047depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5 # DEPCA 1048le* at depca? 1049nele0 at isa? port 0x320 irq 9 drq 7 # NE2100 1050le* at nele? 1051ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1 # Riscom/N2 sync serial 1052bicc0 at isa? port 0x320 irq 10 drq 7 # BICC IsoLan 1053le* at bicc? 1054ne0 at isa? port 0x280 irq 9 # NE[12]000 Ethernet cards 1055ne1 at isa? port 0x300 irq 10 1056sm0 at isa? port 0x300 irq 10 # SMC91C9x Ethernet 1057tr0 at isa? port 0xa20 iomem 0xd8000 irq ? # IBM TROPIC based Token-Ring 1058tr1 at isa? port 0xa24 iomem 0xd0000 irq ? # IBM TROPIC based Token-Ring 1059tr* at isa? port ? irq ? # 3Com TROPIC based Token-Ring 1060we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet 1061we1 at isa? port 0x300 iomem 0xcc000 irq 10 1062 1063# CardBus network cards 1064ath* at cardbus? function ? # Atheros 5210/5211/5212 802.11 1065athn* at cardbus? function ? # Atheros AR9k (802.11a/g/n) 1066atw* at cardbus? function ? # ADMtek ADM8211 (802.11) 1067ex* at cardbus? function ? # 3Com 3c575TX 1068fxp* at cardbus? function ? # Intel i8255x 1069ral* at cardbus? function ? # Ralink Technology RT25x0 802.11a/b/g 1070re* at cardbus? function ? # Realtek 8139C+/8169/8169S/8110S 1071rtk* at cardbus? function ? # Realtek 8129/8139 1072rtw* at cardbus? function ? # Realtek 8180L (802.11) 1073tlp* at cardbus? function ? # DECchip 21143 1074 1075# MII/PHY support 1076acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 1077amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 1078atphy* at mii? phy ? # Attansic/Atheros PHYs 1079bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 1080brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 1081ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs 1082dmphy* at mii? phy ? # Davicom DM9101 PHYs 1083etphy* at mii? phy ? # Agere/LSI ET1011 TruePHY Gig-E PHYs 1084exphy* at mii? phy ? # 3Com internal PHYs 1085gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 1086glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 1087gphyter* at mii? phy ? # NS83861 Gig-E PHY 1088icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 1089igphy* at mii? phy ? # Intel IGP01E1000 1090ihphy* at mii? phy ? # Intel 82577 PHYs 1091ikphy* at mii? phy ? # Intel 82563 PHYs 1092inphy* at mii? phy ? # Intel 82555 PHYs 1093iophy* at mii? phy ? # Intel 82553 PHYs 1094lxtphy* at mii? phy ? # Level One LXT-970 PHYs 1095makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 1096nsphy* at mii? phy ? # NS83840 PHYs 1097nsphyter* at mii? phy ? # NS83843 PHYs 1098pnaphy* at mii? phy ? # generic HomePNA PHYs 1099qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 1100rdcphy* at mii? phy ? # RDC R6040 internal PHY 1101rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs 1102rlphy* at mii? phy ? # Realtek 8139/8201L PHYs 1103sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 1104tlphy* at mii? phy ? # ThunderLAN PHYs 1105tqphy* at mii? phy ? # TDK Semiconductor PHYs 1106ukphy* at mii? phy ? # generic unknown PHYs 1107urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 1108 1109 1110# USB Controller and Devices 1111 1112# PCI USB controllers 1113xhci* at pci? dev ? function ? # eXtensible Host Controller 1114 # xhci is at best experimental 1115ehci* at pci? dev ? function ? # Enhanced Host Controller 1116ohci* at pci? dev ? function ? # Open Host Controller 1117uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 1118xhci* at pci? dev ? function ? # eXtensible Host Controller 1119 1120# CardBus USB controllers 1121ehci* at cardbus? function ? # Enhanced Host Controller 1122ohci* at cardbus? function ? # Open Host Controller 1123uhci* at cardbus? function ? # Universal Host Controller (Intel) 1124 1125# ISA USB controllers 1126slhci0 at isa? port 0x300 irq 5 # ScanLogic SL811HS 1127 1128# PCMCIA USB controllers 1129slhci* at pcmcia? function ? # ScanLogic SL811HS 1130 1131# USB bus support 1132usb* at xhci? 1133usb* at ehci? 1134usb* at ohci? 1135usb* at slhci? 1136usb* at uhci? 1137usb* at xhci? 1138 1139# USB Hubs 1140uhub* at usb? 1141uhub* at uhub? port ? 1142 1143# USB HID device 1144uhidev* at uhub? port ? configuration ? interface ? 1145 1146# USB Mice 1147ums* at uhidev? reportid ? 1148wsmouse* at ums? mux 0 1149 1150# USB Touchscreens 1151uts* at uhidev? reportid ? 1152wsmouse* at uts? mux 0 1153 1154# USB eGalax touch-panel 1155uep* at uhub? port ? 1156wsmouse* at uep? mux 0 1157 1158# USB Apple trackpad 1159uatp* at uhidev? reportid ? 1160wsmouse* at uatp? mux 0 1161 1162uyurex* at uhidev? reportid ? 1163 1164# USB Keyboards 1165ukbd* at uhidev? reportid ? 1166wskbd* at ukbd? console ? mux 1 1167 1168# USB TEMPer and TEMPerHUM 1169uthum* at uhidev? reportid ? 1170 1171# USB serial adapter 1172ucycom* at uhidev? reportid ? 1173 1174# USB Generic HID devices 1175uhid* at uhidev? reportid ? 1176 1177# USB LCDs and USB-VGA adaptors 1178udl* at uhub? port ? # DisplayLink DL-1x0/1x5 1179wsdisplay* at udl? 1180 1181# USB Printer 1182ulpt* at uhub? port ? configuration ? interface ? 1183 1184# USB Modem 1185umodem* at uhub? port ? configuration ? 1186ucom* at umodem? 1187 1188# Option N.V. Wireless WAN modems 1189uhso* at uhub? port ? configuration ? 1190 1191# USB Mass Storage 1192umass* at uhub? port ? configuration ? interface ? 1193wd* at umass? 1194 1195# USB audio 1196uaudio* at uhub? port ? configuration ? 1197 1198# USB MIDI 1199umidi* at uhub? port ? configuration ? 1200 1201# USB IrDA 1202# USB-IrDA bridge spec 1203uirda* at uhub? port ? configuration ? interface ? 1204irframe* at uirda? 1205 1206stuirda* at uhub? port ? configuration ? interface ? 1207irframe* at stuirda? 1208 1209# SigmaTel STIr4200 USB/IrDA Bridge 1210ustir* at uhub? port ? 1211irframe* at ustir? 1212 1213# KingSun/DonShine USB/IrDA Bridge 1214udsir* at uhub? port ? 1215irframe* at udsir? 1216 1217# Windows Media Center IR tranceiver 1218irmce* at uhub? port ? 1219cir* at irmce? 1220 1221# USB Ethernet adapters 1222aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 1223axe* at uhub? port ? # ASIX AX88172 based adapters 1224axen* at uhub? port ? # ASIX AX88178a/AX88179 based adapters 1225cdce* at uhub? port ? # CDC, Ethernet Networking Control Model 1226cue* at uhub? port ? # CATC USB-EL1201A based adapters 1227kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 1228#mos* at uhub? port ? # Moschip MCS7730/MCS7830/MCS7832 based adapters 1229udav* at uhub? port ? # Davicom DM9601 based adapters 1230url* at uhub? port ? # Realtek RTL8150L based adapters 1231urndis* at uhub? port ? # Microsoft RNDIS specification 1232 1233# USB 802.11 adapters 1234atu* at uhub? port ? # Atmel AT76C50XX based adapters 1235athn* at uhub? port ? # Atheros AR9002U 1236otus* at uhub? port ? # Atheros AR9001U 1237ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g 1238rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g 1239run* at uhub? port ? # Ralink Technology RT(2[78]|30)00 802.11a/b/g/n 1240upgt* at uhub? port ? # Intersil PrismGT 1241urtw* at uhub? port ? # Realtek RTL8187/RTL8187B 802.11b/g 1242urtwn* at uhub? port ? # Realtek RTL8188CU/RTL8192CU 802.11b/g/n 1243zyd* at uhub? port ? # Zydas ZD1211 1244 1245# Prolific PL2301/PL2302 host-to-host adapter 1246upl* at uhub? port ? 1247 1248# Serial adapters 1249uark* at uhub? port ? # ArkMicroChips 3116 serial adapter 1250ucom* at uark? portno? 1251 1252ubsa* at uhub? port ? # Belkin serial adapter 1253ucom* at ubsa? portno ? 1254 1255uchcom* at uhub? port ? # WinChipHead CH341/CH340 serial adapter 1256ucom* at uchcom? portno ? 1257 1258uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 1259ucom* at uftdi? portno ? 1260 1261uipaq* at uhub? port ? # iPAQ PDAs 1262ucom* at uipaq? portno ? 1263 1264umct* at uhub? port ? # MCT USB-RS232 serial adapter 1265ucom* at umct? portno ? 1266 1267uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 1268ucom* at uplcom? portno ? 1269 1270uslsa* at uhub? port ? # Silicon Labs USB-RS232 serial adapter 1271ucom* at uslsa? portno ? 1272 1273uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 1274ucom* at uvscom? portno ? 1275 1276uark* at uhub? port ? 1277ucom* at uark? portno ? 1278 1279moscom* at uhub? port ? 1280ucom* at moscom? portno ? 1281 1282uhmodem* at uhub? 1283ucom* at uhmodem? portno ? 1284 1285# RIM BlackBerry 1286uberry* at uhub? port ? 1287 1288# Apple iPad 1289uipad* at uhub? port ? 1290 1291# Diamond Multimedia Rio 500 1292urio* at uhub? port ? 1293 1294# USB Handspring Visor 1295uvisor* at uhub? port ? 1296ucom* at uvisor? 1297 1298# Kyocera AIR-EDGE PHONE 1299ukyopon* at uhub? port ? 1300ucom* at ukyopon? portno ? 1301 1302# USB scanners 1303uscanner* at uhub? port ? 1304 1305# USB scanners that use SCSI emulation, e.g., HP5300 1306usscanner* at uhub? port ? 1307 1308# Topfield TF5000PVR range of DVB recorders 1309utoppy* at uhub? port ? 1310 1311# Y@P firmware loader 1312uyap* at uhub? port ? 1313 1314# D-Link DSB-R100 USB radio 1315udsbr* at uhub? port ? 1316radio* at udsbr? 1317 1318# USB Generic driver 1319ugen* at uhub? port ? 1320 1321# USB 3G datacards 1322umodeswitch* at uhub? port ? 1323u3g* at uhub? port ? 1324ucom* at u3g? 1325 1326# USB generic serial port (e.g., data over cellular) 1327ugensa* at uhub? port ? 1328ucom* at ugensa? 1329 1330# Araneus Alea I/II TRNG 1331ualea* at uhub? port ? configuration ? interface ? 1332 1333# IrDA and Consumer Ir devices 1334 1335# Toshiba Oboe 1336oboe* at pci? dev ? function ? 1337irframe* at oboe? 1338 1339 1340# PCI IEEE1394 controllers 1341fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller 1342 1343# CardBus IEEE1394 controllers 1344fwohci* at cardbus? function ? # IEEE1394 Open Host Controller 1345 1346ieee1394if* at fwohci? 1347fwip* at ieee1394if? # IP over IEEE1394 1348sbp* at ieee1394if? euihi ? euilo ? # SCSI over IEEE1394 1349 1350 1351# SD/MMC/SDIO Controller and Device support 1352 1353# PCI SD/MMC controller 1354sdhc* at pci? # SD Host Controller 1355 1356# CardBus SD/MMC controller 1357sdhc* at cardbus? function ? # SD Host Controller 1358 1359sdmmc* at sdhc? # SD/MMC bus 1360ld* at sdmmc? 1361 1362 1363# Audio Devices 1364 1365# PCI audio devices 1366auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio 1367auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio 1368auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio 1369autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio 1370auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio 1371azalia* at pci? dev ? function ? # High Definition Audio 1372clcs* at pci? dev ? function ? # Cirrus Logic CS4280 1373clct* at pci? dev ? function ? # Cirrus Logic CS4281 1374cmpci* at pci? dev ? function ? # C-Media CMI8338/8738 1375eap* at pci? dev ? function ? # Ensoniq AudioPCI 1376emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512 1377esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio 1378esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator 1379eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive 1380fms* at pci? dev ? function ? # Forte Media FM801 1381gcscaudio* at pci? dev ? function ? # AMD Geode CS5536 Companion Audio 1382neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio 1383sv* at pci? dev ? function ? # S3 SonicVibes 1384yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio 1385 1386# ISA audio devices 1387# the "aria" probe might give false hits 1388aria0 at isa? port 0x290 irq 10 # Aria 1389ess0 at isa? port 0x220 irq 5 drq 1 drq2 5 # ESS 18XX 1390gus0 at isa? port 0x220 irq 7 drq 1 drq2 6 # Gravis Ultra Sound 1391pas0 at isa? port 0x220 irq 7 drq 1 # ProAudio Spectrum 1392sb0 at isa? port 0x220 irq 5 drq 1 drq2 5 # SoundBlaster 1393wss0 at isa? port 0x530 irq 10 drq 0 drq2 1 # Windows Sound System 1394cms0 at isa? port 0x220 # Creative Music System 1395 1396# OPL[23] FM synthesizers 1397opl0 at isa? port 0x388 # use only if not attached to sound card 1398opl* at cmpci? flags 1 1399opl* at eso? 1400opl* at ess? 1401opl* at fms? 1402opl* at sb? 1403opl* at sv? 1404opl* at wss? 1405opl* at yds? 1406opl* at ym? 1407 1408# High Definition Audio 1409hdaudio* at pci? dev ? function ? # High Definition Audio 1410hdafg* at hdaudiobus? 1411 1412# Audio support 1413audio* at audiobus? 1414 1415# MPU 401 UARTs 1416mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card 1417mpu* at cmpci? 1418mpu* at eso? 1419mpu* at fms? 1420mpu* at sb? 1421mpu* at yds? 1422mpu* at ym? 1423 1424# MIDI support 1425midi* at midibus? 1426midi* at pcppi? # MIDI interface to the PC speaker 1427 1428# The spkr driver provides a simple tone interface to the built in speaker. 1429spkr* at pcppi? # PC speaker 1430spkr* at audio? # PC speaker (synthesized) 1431wsbell* at spkr? # Bell for wscons display 1432 1433 1434# FM-Radio devices 1435# ISA radio devices 1436az0 at isa? port 0x350 # Aztech/PackardBell FM Radio Card 1437az1 at isa? port 0x358 1438rt0 at isa? port 0x20c # AIMS Lab Radiotrack & compatible 1439rt1 at isa? port 0x284 1440rt2 at isa? port 0x30c 1441rt3 at isa? port 0x384 1442rtii0 at isa? port 0x20c # AIMS Lab Radiotrack II FM Radio Card 1443rtii1 at isa? port 0x30c 1444sf2r0 at isa? port 0x384 # SoundForte RadioLink SF16-FMR2 FM Radio Card 1445 1446# PCI radio devices 1447gtp* at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card 1448 1449# Radio support 1450radio* at az? 1451radio* at gtp? 1452radio* at rt? 1453radio* at rtii? 1454radio* at sf2r? 1455 1456 1457# Video capture devices 1458 1459auvitek* at uhub? # Auvitek AU0828 USB TV 1460coram* at pci? dev ? function ? # Conexant CX23885 PCI-E TV 1461cxdtv* at pci? dev ? function ? # Conexant CX2388[0-3] PCI TV 1462emdtv* at uhub? # Empia EM28xx USB TV 1463cir* at emdtv? 1464pseye* at uhub? # Sony PLAYSTATION(R) Eye webcam 1465uvideo* at uhub? # USB Video Class capture devices 1466 1467video* at videobus? 1468dtv* at dtvbus? 1469 1470 1471# TV cards 1472 1473# Brooktree 848/849/878/879 based TV cards 1474bktr* at pci? dev ? function ? 1475radio* at bktr? 1476 1477# Conexant CX2388[0-3]-based DTV cards 1478cxdtv* at pci? dev ? function ? 1479iic* at cxdtv? 1480 1481# Conexant CX23885-based TV cards 1482coram* at pci? dev ? function ? 1483iic* at coram? 1484 1485isv* at isa? port 0x3e0 # IDEC Supervision/16 image capture 1486 1487# Bluetooth Controller and Device support 1488 1489# Bluetooth PCMCIA Controllers 1490bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A 1491btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139 1492 1493# Bluetooth SDIO Controller 1494sbt* at sdmmc? 1495 1496# Bluetooth USB Controllers 1497ubt* at uhub? port ? 1498aubtfwl* at uhub? port ? 1499 1500# Bluetooth Device Hub 1501bthub* at bcsp? 1502bthub* at bt3c? 1503bthub* at btbc? 1504bthub* at btuart? 1505bthub* at sbt? 1506bthub* at ubt? 1507 1508# Bluetooth HID support 1509bthidev* at bthub? 1510 1511# Bluetooth Mouse 1512btms* at bthidev? reportid ? 1513wsmouse* at btms? mux 0 1514 1515# Bluetooth Keyboard 1516btkbd* at bthidev? reportid ? 1517wskbd* at btkbd? console ? mux 1 1518 1519# Bluetooth Apple Magic Mouse 1520btmagic* at bthub? 1521wsmouse* at btmagic? mux 0 1522 1523# Bluetooth Audio support 1524btsco* at bthub? 1525 1526 1527# Mice 1528 1529# Cryptographic Devices 1530 1531# PCI cryptographic devices 1532hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 1533ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 1534 1535 1536# Trusted Platform Module 1537tpm* at isa? iomem 0xfed40000 irq 7 1538#tpm* at isa? port 0x02e 1539#tpm* at isa? port 0x04e 1540#tpm* at isa? port 0x07e 1541#tpm* at isa? port 0x0ee 1542 1543# Joysticks 1544 1545# PCI joysticks 1546joy* at pci? # Game ports (usually on audio cards) 1547joy* at eap? # See CAVEATS in eap(4) before enabling 1548joy* at eso? # ESS Solo-1 on-board joystick 1549 1550# ISA joysticks. Probe is a little strange; add only if you have one. 1551joy0 at isa? port 0x201 1552 1553 1554# Planetconnect Satellite receiver driver. 1555satlink0 at isa? port 0x300 drq 1 1556 1557# Middle Digital, Inc. PCI-Weasel serial console board control 1558# devices (watchdog timer, etc.) 1559weasel* at pci? 1560 1561# Virtio devices 1562virtio* at pci? dev ? function ? # Virtio PCI device 1563viomb* at virtio? # Virtio memory balloon device 1564ld* at virtio? # Virtio disk device 1565vioif* at virtio? # Virtio network device 1566viornd* at virtio? # Virtio entropy device 1567vioscsi* at virtio? # Virtio SCSI device 1568 1569# Flash subsystem 1570flash* at flashbus? 1571 1572# NAND subsystem 1573nand* at nandbus? 1574 1575# Pull in optional local configuration 1576#include "arch/amd64/conf/ALL.local" 1577 1578 1579# Pseudo-Devices 1580 1581pseudo-device crypto # /dev/crypto device 1582pseudo-device swcrypto # software crypto implementation 1583 1584# disk/mass storage pseudo-devices 1585pseudo-device bio # RAID control device driver 1586pseudo-device ccd # concatenated/striped disk devices 1587pseudo-device cgd # cryptographic disk devices 1588pseudo-device raid # RAIDframe disk driver 1589options RAID_AUTOCONFIG # auto-configuration of RAID components 1590# Options to enable various other RAIDframe RAID types. 1591options RF_INCLUDE_EVENODD=1 1592options RF_INCLUDE_RAID5_RS=1 1593options RF_INCLUDE_PARITYLOGGING=1 1594options RF_INCLUDE_CHAINDECLUSTER=1 1595options RF_INCLUDE_INTERDECLUSTER=1 1596options RF_INCLUDE_PARITY_DECLUSTERING=1 1597options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 1598pseudo-device fss # file system snapshot device 1599 1600pseudo-device md # memory disk device (ramdisk) 1601options MEMORY_DISK_HOOKS # enable root ramdisk 1602options MEMORY_DISK_DYNAMIC # loaded via kernel module(7) 1603 1604pseudo-device vnd # disk-like interface to files 1605options VND_COMPRESSION # compressed vnd(4) 1606 1607pseudo-device dm # device-mapper disk driver 1608 1609# network pseudo-devices 1610pseudo-device bpfilter # Berkeley packet filter 1611pseudo-device carp # Common Address Redundancy Protocol 1612pseudo-device ipfilter # IP filter (firewall) and NAT 1613pseudo-device mpls # MPLS pseudo-interface 1614pseudo-device loop # network loopback 1615pseudo-device ppp # Point-to-Point Protocol 1616pseudo-device pppoe # PPP over Ethernet (RFC 2516) 1617options PPPOE_SERVER # Enable PPPoE server via link0 1618pseudo-device sl # Serial Line IP 1619pseudo-device strip # Starmode Radio IP (Metricom) 1620pseudo-device irframetty # IrDA frame line discipline 1621pseudo-device tap # virtual Ethernet 1622pseudo-device tun # network tunneling over tty 1623pseudo-device gre # generic L3 over IP tunnel 1624pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933) 1625pseudo-device faith # IPv[46] tcp relay translation i/f 1626pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 1627pseudo-device vlan # IEEE 802.1q encapsulation 1628pseudo-device bridge # simple inter-network bridging 1629options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 1630pseudo-device agr # IEEE 802.3ad link aggregation 1631pseudo-device l2tp # L2TPv3 interface 1632#pseudo-device pf # PF packet filter 1633#pseudo-device pflog # PF log if 1634#pseudo-device pfsync # PF sync if 1635pseudo-device npf # NPF packet filter 1636pseudo-device kttcp 1637pseudo-device etherip # EtherIP 1638# srt is EXPERIMENTAL 1639pseudo-device srt # source-address-based routing 1640 1641pseudo-device canloop # CAN loopback interface 1642 1643# 1644# accept filters, built as module(7)s by default 1645pseudo-device accf_data # "dataready" accept filter 1646pseudo-device accf_http # "httpready" accept filter 1647 1648# miscellaneous pseudo-devices 1649pseudo-device pty # pseudo-terminals 1650pseudo-device sequencer # MIDI sequencer 1651# rnd works; RND_COM does not on port amd64 yet. 1652options RND_COM # use "com" randomness as well (BROKEN) 1653pseudo-device clockctl # user control of clock subsystem 1654pseudo-device ksyms # /dev/ksyms 1655pseudo-device lockstat # lock profiling 1656pseudo-device bcsp # BlueCore Serial Protocol 1657pseudo-device btuart # Bluetooth HCI UART (H4) 1658pseudo-device gpiosim 1 # GPIO simulator 1659 1660pseudo-device filemon # process monitor for make(1) 1661 1662# a pseudo device needed for Coda # also needs CODA (above) 1663pseudo-device vcoda # coda minicache <-> venus comm. 1664 1665# a pseudo device needed for SMBFS 1666pseudo-device nsmb # experimental - SMB requester 1667 1668# iSCSI initiator 1669pseudo-device iscsi 1670 1671# wscons pseudo-devices 1672pseudo-device wsmux # mouse & keyboard multiplexor 1673pseudo-device wsfont 1674 1675# software watchdog driver - swwdog(4) 1676pseudo-device swwdog 1677 1678#software environmental sensor - swsensor(4) 1679pseudo-device swsensor 1680 1681# pseudo audio device driver 1682pseudo-device pad 1683 1684# userland interface to drivers, including autoconf and properties retrieval 1685pseudo-device drvctl 1686 1687# Pass-to-Userspace Transporter 1688pseudo-device putter 1689 1690# Userspace block/char drivers 1691pseudo-device pud 1692 1693# Hardware-assisted data mover interface 1694pseudo-device dmoverio 1695 1696pseudo-device nandemulator 1697 1698options FILEASSOC # fileassoc(9) - required for Veriexec 1699 # and PAX_SEGVGUARD 1700 1701# Veriexec 1702pseudo-device veriexec 1703# 1704# Uncomment the fingerprint methods below that are desired. Note that 1705# removing fingerprint methods will have almost no impact on the kernel 1706# code size. 1707# 1708options VERIFIED_EXEC_FP_RMD160 1709options VERIFIED_EXEC_FP_SHA256 1710options VERIFIED_EXEC_FP_SHA384 1711options VERIFIED_EXEC_FP_SHA512 1712options VERIFIED_EXEC_FP_SHA1 1713options VERIFIED_EXEC_FP_MD5 1714 1715options PAX_SEGVGUARD=0 # PaX Segmentation fault guard 1716options PAX_MPROTECT=1 # PaX mprotect(2) restrictions 1717options PAX_MPROTECT_DEBUG=1 # PaX mprotect debug 1718options PAX_ASLR=1 # PaX Address Space Layout Randomization 1719options PAX_ASLR_DEBUG=1 # PaX ASLR debug 1720 1721# 1722# NetBSD: GENERIC_ISDN,v 1.16 2010/01/03 03:53:34 dholland Exp 1723# 1724 1725#--------------------------------------------------------------------- 1726# Various ISDN board drivers: 1727#--------------------------------------------------------------------- 1728# Legacy ISA cards (no P&P support): 1729# 1730# Teles S0/8 or Niccy 1008 1731options ISICISA_TEL_S0_8 1732#isic0 at isa? iomem 0xd0000 irq 2 1733# Teles S0/16 or Creatix ISDN-S0 or Niccy 1016 1734options ISICISA_TEL_S0_16 1735#isic0 at isa? port 0xd80 iomem 0xd0000 irq 9 1736# Teles S0/16.3 1737options ISICISA_TEL_S0_16_3 1738#isic0 at isa? port 0xd80 irq 12 1739# AVM A1 or AVM Fritz!Card 1740options ISICISA_AVM_A1 1741isic0 at isa? port 0x340 irq 10 1742# USRobotics Sportster ISDN TA intern 1743options ISICISA_USR_STI 1744#isic0 at isa? port 0x268 irq 10 1745# ITK ix1 micro 1746options ISICISA_ITKIX1 1747#isic0 at isa? port 0x398 irq 10 1748# 1749# XXX not ready yet: 1750# Active EICON/Diehl Cards: S, SX, SXn, SCOM or QUADRO 1751#daic0 at isa? iomem 0xd8000 irq 10 1752# 1753# 1754#--------------------------------------------------------------------- 1755# Supported PCI cards: 1756# 1757isic* at pci? 1758 1759# Winbond W6692 1760iwic* at pci? 1761 1762# AVM Fritz!PCI card 1763ifpci* at pci? 1764 1765# AVM Fritz!PCI V2 card 1766ifritz* at pci? 1767 1768# AVM B1/T1 PCI card 1769iavc* at pci? 1770 1771# 1772#--------------------------------------------------------------------- 1773# Supported PCMCIA cards: 1774# 1775options ISICPCMCIA_AVM_A1 # Fritz!Card PCMCIA Version 1776options ISICPCMCIA_ELSA_ISDNMC # ELSA MicroLink ISDN/MC 1777options ISICPCMCIA_ELSA_MCALL # ELSA MicroLink MC/all 1778options ISICPCMCIA_SBSPEEDSTAR2 # Sedlbauer speed star II 1779isic* at pcmcia? function ? 1780# 1781 1782#--------------------------------------------------------------------- 1783# ISDN user land devices, drivers and pseudo-devices. 1784#--------------------------------------------------------------------- 1785# 1786pseudo-device isdn # communication with userland daemon 1787pseudo-device isdntrc 2 # userland driver to do ISDN tracing 1788pseudo-device isdnctl # userland driver to control the whole thing 1789pseudo-device isdnbchan 4 # userland driver for access to raw B channel 1790pseudo-device isdntel 2 # userland driver for telephony 1791options IRIP_VJ # compile support for VJ compression 1792pseudo-device irip 2 # network driver for IP over raw HDLC ISDN 1793pseudo-device ippp 2 # synchronous PPP over ISDN 1794#--------------------------------------------------------------------- 1795 1796options ATHHAL_DEBUG 1797options A9PCIC_DEBUG 1798options AAC_DEBUG 1799options AAU_DEBUG 1800options AC97_DEBUG 1801options AC97_IO_DEBUG 1802options ACPI_APM_DEBUG 1803# 1804# ACPI_DEBUG_ALLOC can not be used with ACPI 1805# kernel modules. It requires also ACPI_DEBUG. 1806# ACPI_DEBUG_MUTEX is only for ACPICA debugging. 1807# 1808options ACPI_DEBUG 1809options ACPI_DEBUG_ALLOC 1810options ACPI_MUTEX_DEBUG 1811options ADB_DEBUG 1812options ADM1030_DEBUG 1813options ADT7467_DEBUG 1814options AE_DEBUG 1815options AGP_DEBUG 1816options AHADEBUG 1817options AHBDEBUG 1818options AHC_DEBUG=1 1819options AHD_DEBUG 1820options AHD_DEBUG_OPTS=1 1821options AH_DEBUG_ALQ 1822options AIC_DEBUG 1823options ALTQ_DEBUG 1824options AMD756_DEBUG 1825options AMRR_DEBUG 1826options AN_DEBUG 1827options APMDEBUG 1828options APMDEBUG_VALUE=1 1829options ARCKBD_DEBUG 1830options ARGO_DEBUG 1831options ARP_DEBUG 1832options ASC_DEBUG 1833options ATAPI_DEBUG_PROBE 1834options ATA_DEBUG 1835options ATA_RAID_DEBUG 1836options ATE_DEBUG 1837options ATMEL_DEBUG 1838options ATPPC_DEBUG 1839options ATW_BBPDEBUG 1840options ATW_DEBUG 1841options ATW_SYNDEBUG 1842options AUACER_DEBUG 1843options AUCCDEBUG 1844options AUCONV_DEBUG 1845options AUDIO_DEBUG 1846options AUE_DEBUG 1847options AUICH_DEBUG 1848options AUICH_MODEM_DEBUG 1849options AURATECONV_DEBUG 1850options AUSMBUS_PSC_DEBUG 1851options AWACS_DEBUG 1852options AWI_DEBUG 1853options AXE_DEBUG 1854options AZALIA_DEBUG 1855options BAH_DEBUG 1856options BCACHE_DEBUG 1857options BDEBUG 1858options BEDEBUG 1859options BHADEBUG 1860options BIOS_MEMORY_DEBUG 1861options BIT3DEBUG 1862options BKTR_RADIO_DEBUG 1863options BLUETOOTH_DEBUG 1864options BMAC_DEBUG 1865options BMD_DEBUG 1866options BOOTP_DEBUG 1867options BOOTP_DEBUGx 1868options BOOTXX_DEBUG 1869options BOOT_DEBUG 1870options BT463_DEBUG 1871options BTDEBUG 1872options BTHSET_DEBUG 1873options BTLBDEBUG 1874options BTNMGRDEBUG 1875options BUS_DMA_DEBUG 1876options BUS_SPACE_DEBUG 1877options CACHE_DEBUG 1878options CARDBUS_DEBUG 1879options CD18XXDEBUG 1880options CGSIX_DEBUG 1881options CHANGER_DEBUG 1882options CISS_DEBUG 1883options CKSUMDEBUG 1884options CLOCKDEBUG 1885options CLOCK_DEBUG 1886options CNW_DEBUG 1887options COMDEBUG 1888options COMVRIPDEBUG 1889options COM_DEBUG 1890options COM_HPCIODEBUG 1891options CONSDEBUG 1892options CRYPTO_DEBUG 1893options CS4280_DEBUG 1894options CS_DEBUG 1895options CUE_DEBUG 1896options CY_DEBUG 1897options CZ_DEBUG 1898options DAIC_DEBUG 1899options DBRI_DEBUG 1900options DDB_DEBUG 1901options DEBUGBUG 1902options DEBUGGER_THREADING 1903options DEBUGTERM 1904options DEBUGXXX 1905options DEBUG_1284 1906options DEBUG_1543 1907options DEBUG_A4000 1908options DEBUG_ALIGN 1909options DEBUG_ALLOC 1910options DEBUG_AMIGA_IF_ED 1911options DEBUG_AOUTM68K 1912options DEBUG_BEFOREMMU 1913options DEBUG_BIOSCALL 1914options DEBUG_CHUNK_DIR 1915options DEBUG_CLOCK 1916options DEBUG_COFF 1917options DEBUG_CP0_ACCESS 1918options DEBUG_CURSOR 1919options DEBUG_DDB 1920options DEBUG_DR 1921options DEBUG_EMUL 1922options DEBUG_ET4000 1923options DEBUG_EXEC 1924options DEBUG_EXT2 1925options DEBUG_FAULT_CORRECTION 1926options DEBUG_FFB 1927options DEBUG_FIND_COMPORT 1928options DEBUG_FIND_PCIC 1929options DEBUG_FIND_PCIC_I82365SL_ONLY 1930options DEBUG_FPE 1931options DEBUG_GPIO 1932options DEBUG_GPIO2 1933options DEBUG_HPUX 1934options DEBUG_IBCS2 1935options DEBUG_IPR_VJ 1936options DEBUG_ISAPNP 1937options DEBUG_ISSIGNAL 1938options DEBUG_KERNADDR_ACCESS 1939options DEBUG_KERNEL_START 1940options DEBUG_KGDB 1941options DEBUG_LED 1942options DEBUG_LINUX 1943options DEBUG_LINUX_FUTEX 1944options DEBUG_MEMLOAD 1945options DEBUG_MEMORY_LIST 1946options DEBUG_MEMSIZE 1947options DEBUG_NEG 1948options DEBUG_NFS_BOOT_DHCP 1949options DEBUG_P9100 1950options DEBUG_PAGE0 1951options DEBUG_PCI_MACHDEP 1952options DEBUG_PGRP 1953options DEBUG_POOL 1954options DEBUG_PORTF 1955options DEBUG_PROM 1956options DEBUG_PTM 1957options DEBUG_RAWFS 1958options DEBUG_RPC 1959options DEBUG_SNAPPER 1960options DEBUG_SVR4 1961options DEBUG_SYNC 1962options DEBUG_TERM 1963options DEBUG_UL 1964options DEBUG_VAL 1965options DEBUG_WITH_STDIO 1966options DEVSW_DEBUG 1967options DEV_DEBUG 1968options DISKLABEL_DEBUG 1969options DISK_DEBUG 1970options DL_DEBUG 1971options DMAC_DEBUG 1972options DMA_DEBUG 1973options DMCDEBUG 1974options DO_I4B_MAXDEBUG 1975options DRACORAWKEYDEBUG 1976options EARLY_DEBUG_EVENT 1977options EBUS_DEBUG 1978options EDC_DEBUG 1979options EDEBUG 1980options ED_DEBUG 1981options EFINET_DEBUG 1982options EGAFONTDEBUG 1983options EGDEBUG 1984options EHCI_DEBUG 1985options EL_DEBUG 1986options EMAC3_DEBUG 1987options EMUXKI_DEBUG 1988options EM_DEBUG 1989options EN_DEBUG 1990options EN_DEBUG_RANGE 1991options EPGPIO_DEBUG 1992options EPICMEDIADEBUG 1993options EPPCIC_DEBUG 1994options ESDEBUG 1995options ESP_DEBUG 1996options ESP_SBUS_DEBUG 1997options ESS_ISA_DEBUG 1998options ETHER_DEBUG 1999options EWSKBD_DEBUG 2000options EXEC_DEBUG 2001options EXTENT_DEBUG 2002options EXTREME_DEBUG 2003options EXTREME_EXTREME_DEBUG 2004options FBDEBUG 2005options FDDEBUG 2006options FD_DEBUG 2007options FFBDEBUG 2008options FILECORE_DEBUG 2009options FILECORE_DEBUG_BR 2010options FIRESTARDEBUG 2011options FLASH_DEBUG 2012options FLP_DEBUG 2013options FMV_DEBUG 2014options FOO_DEBUG 2015options FPU_DEBUG 2016options GDROMDEBUG 2017options GEM_DEBUG 2018options GEM_DEBUG1 2019options GEODE_DEBUG 2020options GEOM_DEBUG 2021options GE_DEBUG 2022options GMAC_DEBUG 2023options GPIO_DEBUG 2024options GRE_DEBUG 2025options GSFB_DEBUG_MONITOR 2026options GTFDEBUG 2027options HD64461PCMCIA_DEBUG 2028options HD64461VIDEO_DEBUG 2029options HD64465PCMCIA_DEBUG 2030options HDAUDIO_DEBUG 2031options HDAFG_DEBUG 2032options HDLCDEBUG 2033options HIFN_DEBUG 2034options HMEDEBUG 2035options HPCAPMDEBUG 2036options HPC_DEBUG_INTERRUPT_MONITOR 2037options HPC_DEBUG_LCD 2038options HP_DEBUG 2039options HSCXADEBUG 2040options HSCXBDEBUG 2041options I2ODEBUG 2042options I4BISPPPDEBUG 2043options I4B_MBUF_DEBUG 2044options I4B_MBUF_TYPE_DEBUG 2045options IBCS2_DEBUG 2046options ICONV_DEBUG 2047options ICP_DEBUG 2048options IEDEBUG 2049options IEEE80211_DEBUG_REFCNT 2050options IFAREF_DEBUG 2051options IFA_STATS 2052options IFMEDIA_DEBUG 2053options IHA_DEBUG_STATE 2054options INTRDEBUG 2055options INTR_DEBUG 2056options IPAQ_LCD_DEBUG 2057options IPF_DEBUG 2058options IPSEC_DEBUG 2059options IPW_DEBUG 2060options IP_RCMD_PROXY_DEBUG 2061options IRFRAMET_DEBUG 2062options IRFRAME_DEBUG 2063options IRQ_DEBUG 2064options ISACDEBUG 2065options ISADMA_DEBUG 2066options ISO_DEBUG 2067options IT8368DEBUG 2068options ITE8181DEBUG 2069options ITK_PROBE_DEBUG 2070options IWI_DEBUG 2071options IWM_DEBUG 2072options IYDEBUG 2073options IYMEMDEBUG 2074options J6X0TP_DEBUG 2075options J720TP_DEBUG 2076options KBD_DEBUG 2077options KB_DEBUG 2078options KERNEL_DEBUG 2079options KLOADER_DEBUG 2080options KSTACK_DEBUG 2081options KSYMS_DEBUG 2082options KUE_DEBUG 2083options LANA_DEBUG 2084options LCD_DEBUG 2085options LDT_DEBUG 2086options LEDEBUG 2087options LE_DEBUG 2088options LIFDEBUG 2089options LINUX_SG_DEBUG 2090options LLCDEBUG 2091options LLC_DEBUG 2092options LOADER_DEBUG 2093options LOAD_DEBUG_INFO 2094options LOCKF_DEBUG 2095options LPT_DEBUG 2096options MAGMA_DEBUG 2097options MAPLE_DEBUG 2098options MB8795_DEBUG 2099options MCDDEBUG 2100options MCDEBUG 2101options MCHAIN_DEBUG 2102options MEC_DEBUG 2103options MEDIABAY_DEBUG 2104options MEMORY_MAP_DEBUG 2105options MESH_DEBUG 2106options MIDI_DEBUG 2107options MLYDEBUG 2108options MMEYEPCMCIADEBUG 2109options MOUSE_DEBUG 2110options MPDEBUG 2111options MQ200_DEBUG 2112options MRT6DEBUG 2113options MSDOSFS_DEBUG 2114options MSG_DEBUG_OK 2115options MULAW_DEBUG 2116options MYDEV_DEBUG 2117options NB_DEBUG 2118options NCR5380_DEBUG 2119options NCR53C9X_DEBUG 2120options ND6_DEBUG 2121options NDEBUG 2122options ND_DEBUG 2123options NETATALKDEBUG 2124options NETDOCK_DEBUG_DRIVER 2125options NETIF_DEBUG 2126options NET_DEBUG 2127options NET_MPSAFE 2128options NFE_DEBUG 2129options NFS_DEBUG 2130options NFS_DEBUG_COMMIT 2131options NIDEBUG 2132options NJSC32_DEBUG 2133options NON_DEBUG 2134options NOTDEF_DEBUG 2135options NOT_DEBUG 2136options NSIODEBUG 2137options NTFS_DEBUG 2138options OBOE_DEBUG 2139options OFW_DEBUG 2140options OHCI_DEBUG 2141options OLD_ELF_DEBUG 2142options ONEWIRE_DEBUG 2143options ONOE_DEBUG 2144options OPTPOINTDEBUG 2145options OSIOP_DEBUG 2146options OST_DEBUG 2147options P1212_DEBUG 2148options PARDEBUG 2149options PBMS_DEBUG 2150options PCIINTR_DEBUG 2151options PCI_DEBUG 2152options PCKBCDEBUG 2153options PCKBPORTDEBUG 2154options PCMCIACISDEBUG 2155options PCMCIADEBUG 2156options PDCDEBUG 2157options PDINFO_DEBUG 2158options PFCKBD_DEBUG 2159options PFDEBUG 2160options PFLOGDEBUG 2161options PHYSMEMDEBUG 2162options PI1PPC_DEBUG 2163options PIIXPM_DEBUG 2164options PIIX_DEBUG 2165options PIOC_DEBUG 2166options PLCOM_DEBUG 2167options PLD_WDOG_DEBUG 2168options PLIP_DEBUG 2169options PLUMICUDEBUG 2170options PLUMIOBUSDEBUG 2171options PLUMPCMCIA_DEBUG 2172options PLUMPOWERDEBUG 2173options PLUMVIDEODEBUG 2174options PMAPDEBUG 2175options PMAP_COUNT_DEBUG 2176options PMAP_DEBUG 2177options PMAP_DEBUG_MODIFIED 2178options PMON_DEBUG 2179options PMSDEBUG 2180options PNPBIOSDEBUG 2181options PNPBIOSDEBUG_VALUE=1 2182options PNPBIOSEVENTSDEBUG 2183options PORT_DEBUG 2184options PPBUS_DEBUG 2185options PPPOE_DEBUG 2186options PROFILER_DEBUG 2187options PSH3TP_DEBUG 2188options PWCTLDEBUG 2189options QEDEBUG 2190options QN_DEBUG 2191options QN_DEBUG1 2192options QTDEBUG 2193options RAL_DEBUG 2194options RARP_DEBUG 2195options RBUS_DEBUG 2196options RCONS_DEBUG 2197options RDDEBUG 2198options REALLYDEBUG 2199options RND_DEBUG 2200options ROMDEBUG 2201options RPC_DEBUG 2202options RQDEBUG 2203options RTC_DEBUG 2204options RTSOCK_DEBUG 2205options RTW_DEBUG 2206options SACKBCDEBUG 2207options SBC_DEBUG 2208options SBJCN_DEBUG 2209options SBMACDEBUG 2210options SBSCN_DEBUG 2211options SCC_DEBUG 2212options SCHED_DEBUG 2213options SCIF_DEBUG 2214options SCI_DEBUG 2215options SCR_DEBUG 2216options SCSIDEBUG 2217options SCSIPI_DEBUG 2218options SCSI_DEBUG 2219options SCTP_DEBUG 2220options SD_DEBUG 2221options SEA_DEBUG 2222options SEA_DEBUGQUEUE 2223options SEDEBUG 2224options SED_DEBUG 2225options SEEQ8005_DEBUG 2226options SEM_DEBUG 2227options SEQUENCER_DEBUG 2228options SER_DEBUG 2229options SFAS_DEBUG 2230options SGMAP_DEBUG 2231options SHMDEBUG 2232options SIF_DEBUG 2233options SIOP_DEBUG 2234options SIOP_DEBUG_DR 2235options SIOP_DEBUG_INTR 2236options SIOP_DEBUG_SCHED 2237options SK_DEBUG 2238options SLHCI_DEBUG 2239options SMAP_DEBUG 2240options SMB_IOD_DEBUG 2241options SMB_SOCKETDATA_DEBUG 2242options SMB_SOCKET_DEBUG 2243options SMB_VNODE_DEBUG 2244options SNAPPER_DEBUG 2245options SNDEBUG 2246options SOCKBUF_DEBUG 2247options SOFTINT_INTR 2248options SONIC_DEBUG 2249options SPARC_PCI_DEBUG 2250options SPC_DEBUG 2251options SPIC_DEBUG 2252options SPIFI_DEBUG 2253options SPKRDEBUG 2254options SPLDEBUG 2255options SPPDEBUG 2256options SSCOM_DEBUG 2257options STIDEBUG 2258options STP4020_DEBUG 2259options SUNSCPAL_DEBUG 2260options SYNAPTICSDEBUG 2261options SYSCALL_DEBUG 2262options SYSCTL_DEBUG_CREATE 2263options SYSCTL_DEBUG_SETUP 2264options SYSVBFS_VNOPS_DEBUG 2265options TC5165DEBUG 2266options TCICDEBUG 2267options TCICISADEBUG 2268options TCPISS_DEBUG 2269options TCPREASS_DEBUG 2270options TCTRLDEBUG 2271options TIMECOUNTER_DEBUG 2272options TIMEKEEPER_DEBUG 2273options TLDEBUG 2274options TLDEBUG_ADDR 2275options TLDEBUG_RX 2276options TLDEBUG_TX 2277options TLP_DEBUG 2278options TP_DEBUG 2279options TRACE_DEBUG 2280options TRAPDEBUG 2281options TRAP_SIGDEBUG 2282options TRISADEBUG 2283options TRM_DEBUG 2284options TROPICDEBUG 2285options TRTCMISADEBUG 2286options TSDEBUG 2287options TSLOT_DEBUG 2288options TTY_DEBUG 2289options TUDEBUG 2290options TULIP_DEBUG 2291options TWA_DEBUG 2292options TWE_DEBUG 2293options TX3912VIDEO_DEBUG 2294options TX39BIU_DEBUG 2295options TX39CLOCK_DEBUG 2296options TX39ICU_DEBUG 2297options TX39ICU_DEBUG_PRINT_PENDING_INTERRUPT 2298options TX39IO_DEBUG 2299options TX39IRDEBUG 2300options TX39POWER_DEBUG 2301options TX39SIBDEBUG 2302options TX39UARTDEBUG 2303options TX39UART_DEBUG 2304options UAUDIO_DEBUG 2305options UBSA_DEBUG 2306options UBSEC_DEBUG 2307options UBT_DEBUG 2308options UCB1200_DEBUG 2309options UCBIO_DEBUG 2310options UCBSNDDEBUG 2311options UCBTPDEBUG 2312options UCOM_DEBUG 2313options UCYCOM_DEBUG 2314options UDAV_DEBUG 2315options UDSBR_DEBUG 2316options UFTDI_DEBUG 2317options UGENSA_DEBUG 2318options UGEN_DEBUG 2319options UHADEBUG 2320options UHCI_DEBUG 2321options UHIDEV_DEBUG 2322options UHID_DEBUG 2323options UHUB_DEBUG 2324options UIPAQ_DEBUG 2325options UIRDA_DEBUG 2326options UISDATA_DEBUG 2327options UKBD_DEBUG 2328options UKYOPON_DEBUG 2329options ULPT_DEBUG 2330options UL_DEBUG 2331options UMASS_DEBUG 2332options UMCT_DEBUG 2333options UMIDIQUIRK_DEBUG 2334options UMIDI_DEBUG 2335options UMODEM_DEBUG 2336options UNIV_DEBUG 2337options UPLCOM_DEBUG 2338options UPL_DEBUG 2339options URIO_DEBUG 2340options URLPHY_DEBUG 2341options URL_DEBUG 2342options USB_DEBUG 2343options USCANNER_DEBUG 2344options USEFULL_DEBUG 2345options USSCANNER_DEBUG 2346options USTIR_DEBUG 2347options UTOPPY_DEBUG 2348options UVIDEO_DEBUG 2349options UVISOR_DEBUG 2350options UVSCOM_DEBUG 2351options VCONS_DEBUG 2352options VERYLOWDEBUG 2353options VGAFONTDEBUG 2354options VIA8231_DEBUG 2355options VIAENV_DEBUG 2356options VIAPCIB_DEBUG 2357options VIDCAUDIO_DEBUG 2358options VMEDEBUG 2359options VOODOOFB_DEBUG 2360options VR4181AIU_DEBUG 2361options VRAIU_DEBUG 2362options VRBCUDEBUG 2363options VRC2GPIODEBUG 2364options VRC2PWMDEBUG 2365options VRC4173BCU_DEBUG 2366options VRDCU_DEBUG 2367options VRDMAAU_DEBUG 2368options VRGIUDEBUG 2369options VRIP_DEBUG 2370options VRISADEBUG 2371options VRKIUDEBUG 2372options VRLEDDEBUG 2373options VRPIUDEBUG 2374options VRPMUDEBUG 2375options VRRTCDEBUG 2376options VS_DEBUG 2377options VT100_DEBUG 2378options VTOC_DEBUG 2379options WDCNDELAY_DEBUG 2380options WDSDEBUG 2381options WE_DEBUG 2382options WFQ_DEBUG 2383options WI_DEBUG 2384options WI_RING_DEBUG 2385options WM_DEBUG 2386options WSKBD_DEBUG 2387options WSMUX_DEBUG 2388options XBD_DEBUG 2389options XDC_DEBUG 2390options XDDEBUG 2391options XDEBUG 2392options XENDEBUG 2393options XENDEBUG_LOW 2394options XENDEBUG_NET 2395options XENDEBUG_VBD 2396options XENNET_DEBUG 2397options XENNET_DEBUG_DUMP 2398options XEN_CLOCK_DEBUG 2399options XE_DEBUG 2400options XHCI_DEBUG 2401options XXXXENDEBUG_LOW 2402options XYC_DEBUG 2403options ZSKBD_DEBUG 2404options ZSMACDEBUG 2405options xSCSI_DEBUG 2406options xSD_DEBUG 2407