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