GENERIC revision 1.293
11.293Shubertf#	$NetBSD: GENERIC,v 1.293 2000/01/23 23:46:12 hubertf Exp $
21.1Smycroft#
31.1Smycroft#	GENERIC -- everything that's currently supported
41.1Smycroft#
51.1Smycroft
61.61Sfvdlinclude "arch/i386/conf/std.i386"
71.293Shubertf
81.293Shubertf#ident 		"GENERIC-$Revision: 1.293 $"
91.14Scgd
101.110Sthorpejmaxusers	32		# estimated number of users
111.150Sthorpej
121.110Sthorpej# CPU support.  At least one is REQUIRED.
131.110Sthorpejoptions 	I386_CPU
141.82Smellonoptions 	I486_CPU
151.82Smellonoptions 	I586_CPU
161.154Senamioptions 	I686_CPU
171.110Sthorpej
181.110Sthorpej# CPU-related options.
191.82Smellonoptions 	MATH_EMULATE	# floating point emulation
201.102Smycroft#options 	VM86		# virtual 8086 emulation
211.102Smycroftoptions 	USER_LDT	# user-settable LDT; used by WINE
221.112Sperry# eliminate delay no-ops in I/O; recommended on all but very old machines
231.112Sperry#options 	DUMMY_NOPS
241.191Sbouyer
251.197Slukem# delay between "rebooting ..." message and hardware reset, in milliseconds
261.191Sbouyer#options 	CPURESET_DELAY=2000
271.110Sthorpej
281.110Sthorpej# Misc. i386-specific options
291.110Sthorpejoptions 	XSERVER		# X server support in console drivers
301.177Smycroft#options 	XSERVER_DDB	# PF12 gets you into DDB when X is running
311.110Sthorpej
321.110Sthorpej# This option allows you to force a serial console at the specified
331.121Sdrochner# I/O address.   see console(4) for details.
341.175Srvb#options 	"CONSDEVNAME=\"com\"",CONADDR=0x2f8,CONSPEED=57600
351.175Srvb#	you don't want the option below ON iff you are using the
361.184Sdrochner#	serial console option of the new boot strap code.
371.175Srvb#options	CONS_OVERRIDE	# Always use above! independent of boot info
381.32Sthorpej
391.101Smycroft# The following options override the memory sizes passed in from the boot
401.101Smycroft# block.  Use them *only* if the boot block is unable to determine the correct
411.111Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
421.101Smycroft# memory if the extended BIOS data area is located at the top of base memory
431.101Smycroft# (as is the case on most recent systems).
441.185Smycroft#options 	REALBASEMEM=639		# size of base memory (in KB)
451.185Smycroft#options 	REALEXTMEM=15360	# size of extended memory (in KB)
461.1Smycroft
471.110Sthorpej# Standard system options
481.110Sthorpej
491.110Sthorpejoptions 	UCONSOLE	# users can use TIOCCONS (for xconsole)
501.110Sthorpejoptions 	INSECURE	# disable kernel security levels
511.1Smycroft
521.82Smellonoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
531.216Scjsoptions 	NTP		# NTP phase/frequency locked loop
541.1Smycroft
551.98Smikeloptions 	KTRACE		# system call tracing via ktrace(1)
561.1Smycroft
571.82Smellonoptions 	SYSVMSG		# System V-like message queues
581.82Smellonoptions 	SYSVSEM		# System V-like semaphores
591.82Smellonoptions 	SYSVSHM		# System V-like memory sharing
601.82Smellon#options 	SHMMAXPGS=1024	# 1024 pages is the default
611.82Smellon
621.110Sthorpejoptions 	LKM		# loadable kernel modules
631.110Sthorpej
641.110Sthorpej# Diagnostic/debugging support options
651.110Sthorpejoptions 	DIAGNOSTIC	# cheap kernel consistency checks
661.110Sthorpej#options 	DEBUG		# expensive debugging checks/support
671.127Stv#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
681.110Sthorpejoptions 	DDB		# in-kernel debugger
691.122Slukem#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
701.110Sthorpej#options 	KGDB		# remote debugger
711.110Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
721.110Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
731.110Sthorpej
741.116Smikel# Compatibility options
751.82Smellonoptions 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
761.82Smellonoptions 	COMPAT_09	# NetBSD 0.9,
771.82Smellonoptions 	COMPAT_10	# NetBSD 1.0,
781.82Smellonoptions 	COMPAT_11	# NetBSD 1.1,
791.55Smycroftoptions 	COMPAT_12	# NetBSD 1.2,
801.125Skleinkoptions 	COMPAT_13	# NetBSD 1.3,
811.245Saugustssoptions 	COMPAT_14	# NetBSD 1.4,
821.82Smellonoptions 	COMPAT_43	# and 4.3BSD
831.139Smycroftoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
841.1Smycroft
851.82Smellonoptions 	COMPAT_SVR4	# binary compatibility with SVR4
861.82Smellonoptions 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
871.82Smellonoptions 	COMPAT_LINUX	# binary compatibility with Linux
881.82Smellonoptions 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
891.240Sfvdl
901.240Sfvdloptions 	COMPAT_AOUT	# binary compat for NetBSD a.out binaries
911.1Smycroft
921.110Sthorpej# File systems
931.71Sthorpejfile-system 	FFS		# UFS
941.80Sperryfile-system 	EXT2FS		# second extended file system (linux)
951.71Sthorpejfile-system 	LFS		# log-structured file system
961.71Sthorpejfile-system 	MFS		# memory file system
971.71Sthorpejfile-system 	NFS		# Network File System client
981.251Sjdolecekfile-system 	NTFS		# Windows/NT file system (experimental)
991.71Sthorpejfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1001.71Sthorpejfile-system 	MSDOSFS		# MS-DOS file system
1011.71Sthorpejfile-system 	FDESC		# /dev/fd
1021.71Sthorpejfile-system 	KERNFS		# /kern
1031.71Sthorpejfile-system 	NULLFS		# loopback file system
1041.292Swrstudenfile-system 	OVERLAY		# overlay file system
1051.71Sthorpejfile-system 	PORTAL		# portal filesystem (still experimental)
1061.71Sthorpejfile-system 	PROCFS		# /proc
1071.71Sthorpejfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1081.71Sthorpejfile-system 	UNION		# union file system
1091.187Srvbfile-system	CODA		# Coda File System; also needs vcoda (below)
1101.71Sthorpej
1111.110Sthorpej# File system options
1121.82Smellonoptions 	QUOTA		# UFS quotas
1131.261Sitohy#options 	FFS_EI		# FFS Endian Independent support
1141.276Sfvdl#options 	SOFTDEP         # FFS soft updates support.
1151.82Smellonoptions 	NFSSERVER	# Network File System server
1161.81Sveego#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1171.80Sperry				# immutable) behave as system flags.
1181.116Smikel
1191.274Sperry# Pull in config fragments for kernel crypto.  This is required for
1201.274Sperry# options IPSEC etc. to work. If you want to run with IPSEC, uncomment
1211.274Sperry# one of these, based on whether you use crypto-us or crypto-intl, and
1221.274Sperry# adjust the prefixes as necessary.
1231.273Sperry
1241.273Sperry#prefix ../crypto-us/sys
1251.273Sperry#cinclude "conf/files.crypto-us"
1261.273Sperry#prefix
1271.273Sperry
1281.273Sperry#prefix ../crypto-intl/sys
1291.273Sperry#cinclude "conf/files.crypto-intl"
1301.273Sperry#prefix
1311.273Sperry
1321.110Sthorpej# Networking options
1331.82Smellon#options 	GATEWAY		# packet forwarding
1341.82Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1351.273Sperryoptions 	INET6		# IPV6
1361.273Sperry#options 	IPSEC		# IP security
1371.273Sperry#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1381.273Sperry#options 	IPSEC_DEBUG	# debug for IP security
1391.82Smellon#options 	MROUTING	# IP multicast routing
1401.82Smellonoptions 	NS		# XNS
1411.82Smellon#options 	NSIP		# XNS tunneling over IP
1421.82Smellonoptions 	ISO,TPIP	# OSI
1431.82Smellonoptions 	EON		# OSI tunneling over IP
1441.82Smellonoptions 	CCITT,LLC,HDLC	# X.25
1451.110Sthorpejoptions 	NETATALK	# AppleTalk networking protocols
1461.242Schristosoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1471.242Schristosoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1481.242Schristosoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1491.242Schristosoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1501.242Schristosoptions 	IPFILTER_LOG	# ipmon(8) log support
1511.1Smycroft
1521.116Smikel# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
1531.110Sthorpej#options 	TCP_COMPAT_42
1541.1Smycroft
1551.112Sperry# These options enable verbose messages for several subsystems.
1561.112Sperry# Warning, these may compile large string tables into the kernel!
1571.112Sperryoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
1581.112Sperryoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1591.110Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1601.112Sperryoptions 	SCSIVERBOSE	# human readable SCSI error messages
1611.162Saugustssoptions 	USBVERBOSE	# verbose USB device autoconfig messages
1621.275Sdrochner#options 	PNPBIOSVERBOSE	# verbose PnP BIOS messages
1631.128Sdrochner
1641.271Smycroftoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
1651.110Sthorpej
1661.221Sdrochner#
1671.217Sdrochner# wscons options
1681.221Sdrochner#
1691.221Sdrochner# builtin terminal emulations
1701.217Sdrochner#options 	WSEMUL_SUN		# sun terminal emulation
1711.217Sdrochneroptions 	WSEMUL_VT100		# VT100 / VT220 emulation
1721.217Sdrochner# different kernel output - see dev/wscons/wsdisplayvar.h
1731.217Sdrochneroptions 	WS_KERNEL_FG=WSCOL_GREEN
1741.230Sdrochner#options 	WS_KERNEL_BG=WSCOL_BLACK
1751.221Sdrochner# compatibility to other console drivers
1761.217Sdrochneroptions 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
1771.217Sdrochneroptions 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
1781.217Sdrochneroptions 	WSDISPLAY_COMPAT_USL		# VT handling
1791.218Scjsoptions 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
1801.217Sdrochner# see dev/pckbc/wskbdmap_mfii.c for implemented layouts
1811.217Sdrochner#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
1821.221Sdrochner# allocate a number of virtual screens at autoconfiguration time
1831.221Sdrochner#options 	WSDISPLAY_DEFAULTSCREENS=4
1841.258Sad# use a large software cursor that doesn't blink
1851.265Sitojunoptions 	PCDISPLAY_SOFTCURSOR
1861.217Sdrochner
1871.110Sthorpej# Kernel root file system and dump configuration.
1881.110Sthorpejconfig		netbsd	root on ? type ?
1891.110Sthorpej#config		netbsd	root on sd0a type ffs
1901.110Sthorpej#config		netbsd	root on ? type nfs
1911.110Sthorpej
1921.110Sthorpej#
1931.110Sthorpej# Device configuration
1941.110Sthorpej#
1951.63Sthorpej
1961.31Scgdmainbus0 at root
1971.31Scgd
1981.110Sthorpej#apm0	at mainbus0			# Advanced power management
1991.272Shubertf
2001.272Shubertf# Tuning for power management, see apm(4) for more details.
2011.272Shubertf#options 	APM_NO_IDLE		# Don't call BIOS CPU idle function
2021.272Shubertf#options 	APM_V10_ONLY		# Use only the APM 1.0 calls
2031.272Shubertf#options 	APM_NO_POWEROFF		# Don't power off on halt(8)
2041.272Shubertf#options 	APM_NO_POWER_PRINT	# Don't print stats on the console
2051.285Shubertf#options	APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
2061.1Smycroft
2071.112Sperry
2081.112Sperry# Basic Bus Support
2091.112Sperry
2101.110Sthorpej# PCI bus support
2111.110Sthorpejpci*	at mainbus? bus ?
2121.110Sthorpejpci*	at pchb? bus ?
2131.30Scgdpci*	at ppb? bus ?
2141.110Sthorpej
2151.112Sperry# PCI bridges
2161.63Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
2171.135Sthorpejpceb*	at pci? dev ? function ?	# PCI-EISA bridges
2181.63Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
2191.110Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
2201.160Scgd# XXX 'puc's aren't really bridges, but there's no better place for them here
2211.160Scgdpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
2221.110Sthorpej
2231.110Sthorpej# EISA bus support
2241.110Sthorpejeisa*	at mainbus?
2251.135Sthorpejeisa*	at pceb?
2261.110Sthorpej
2271.110Sthorpej# ISA bus support
2281.110Sthorpejisa*	at mainbus?
2291.135Sthorpejisa*	at pceb?
2301.110Sthorpejisa*	at pcib?
2311.63Sthorpej
2321.112Sperry# PCMCIA bus support
2331.112Sperrypcmcia*	at pcic? controller ? socket ?
2341.223Sbadpcmcia*	at tcic? controller ? socket ?
2351.112Sperry
2361.112Sperry# ISA PCMCIA controllers
2371.112Sperrypcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
2381.112Sperrypcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
2391.223Sbadtcic0	at isa? port 0x240 iomem 0xd0000 iosiz 0x4000
2401.211Snathanw
2411.211Snathanw# PCI PCMCIA controllers
2421.211Snathanwpcic0	at pci? dev? function ?
2431.112Sperry
2441.112Sperry# ISA Plug-and-Play bus support
2451.112Sperryisapnp0	at isa?
2461.112Sperry
2471.156Ssommerfe# ISA Plug-and-Play PCMCIA controllers
2481.156Ssommerfepcic*	at isapnp?
2491.112Sperry
2501.112Sperry# Coprocessor Support
2511.112Sperry
2521.112Sperry# Math Coprocessor support
2531.112Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
2541.112Sperry
2551.112Sperry
2561.112Sperry# Console Devices
2571.112Sperry
2581.112Sperry# ISA console.  You can only configure one of these!
2591.217Sdrochner#pc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
2601.112Sperry#vt0	at isa? port 0x60 irq 1		# PCVT console driver
2611.165Sbouyer
2621.165Sbouyer# Keyboard layout configuration for pccons
2631.167Sbouyer#options 	FRENCH_KBD
2641.166Sbouyer#options 	FINNISH_KBD
2651.167Sbouyer#options 	GERMAN_KBD
2661.168Sperry#options 	NORWEGIAN_KBD
2671.110Sthorpej
2681.217Sdrochner# wscons
2691.238Stronpckbc0		at isa?			# pc keyboard controller
2701.238Stronpckbd*		at pckbc?		# PC keyboard
2711.217Sdrochner# "opms" should not be enabled together with "pms" or "pmsi"
2721.243Stronpms*		at pckbc?		# PS/2 mouse for wsmouse
2731.253Saugustsspmsi*		at pckbc?		# PS/2 "Intelli"mouse for wsmouse
2741.243Stron#opms*		at pckbc?		# backwards compatible PS/2 mouse
2751.217Sdrochnervga0		at isa?
2761.217Sdrochnervga*		at pci?
2771.217Sdrochnerpcdisplay0	at isa?			# CGA, MDA, EGA, HGA
2781.217Sdrochnerwsdisplay*	at vga? console ?
2791.217Sdrochnerwsdisplay*	at pcdisplay? console ?
2801.238Stronwskbd* 		at pckbd? console ?
2811.246Saugustsswsmouse*	at pms? mux 0
2821.246Saugustsswsmouse*	at pmsi? mux 0
2831.217Sdrochner
2841.146Sdrochnerpcppi0	at isa?
2851.146Sdrochnersysbeep0	at pcppi?
2861.110Sthorpej
2871.112Sperry# Serial Devices
2881.63Sthorpej
2891.112Sperry# PCI serial interfaces
2901.282Ssorencom*	at puc? port ?			# 16x50s on "universal" comm boards
2911.112Sperrycy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
2921.30Scgd
2931.112Sperry# ISA Plug-and-Play serial interfaces
2941.112Sperrycom*	at isapnp?			# Modems and serial boards
2951.1Smycroft
2961.112Sperry# PCMCIA serial interfaces
2971.112Sperrycom*	at pcmcia? function ?		# Modems and serial cards
2981.188Sthorpej
2991.188Sthorpejpcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
3001.188Sthorpejcom*	at pcmcom? slave ?		# ...and the slave devices
3011.1Smycroft
3021.110Sthorpej# ISA serial interfaces
3031.89Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
3041.112Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
3051.2Smycroftcom1	at isa? port 0x2f8 irq 3
3061.2Smycroftcom2	at isa? port 0x3e8 irq 5
3071.2Smycroft#com3	at isa? port 0x2e8 irq 9
3081.8Smycroft#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
3091.34Scgd#com*	at ast? slave ?
3101.8Smycroft#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
3111.284Sitojun#boca0	at isa? port 0x100 irq 5	# BOCA 16-port serial cards (BB2016)
3121.284Sitojun#boca1	at isa? port 0x140 irq 5	# this line is also needed for BB2016
3131.8Smycroft#com*	at boca? slave ?
3141.210Schristos#tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
3151.210Schristos#com*	at tcom? slave ?
3161.1Smycroft#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
3171.1Smycroft#com*	at rtfps? slave ?
3181.58Schristos#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
3191.88Smikel
3201.1Smycroft
3211.112Sperry# Parallel Printer Interfaces
3221.160Scgd
3231.160Scgd# PCI parallel printer interfaces
3241.160Scgdlpt*	at puc? port ?			# || ports on "universal" comm boards
3251.110Sthorpej
3261.112Sperry# ISA parallel printer interfaces
3271.110Sthorpejlpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
3281.110Sthorpejlpt1	at isa? port 0x278
3291.110Sthorpejlpt2	at isa? port 0x3bc
3301.1Smycroft
3311.40Sperry
3321.112Sperry# SCSI Controllers and Devices
3331.68Schristos
3341.112Sperry# PCI SCSI controllers
3351.186Sdanteadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
3361.186Sdanteadw*	at pci? dev ? function ?	# AdvanSys 9xxUW SCSI
3371.277Sdante#options 	ADW_WDTR_DISABLE	# 	disable Wide Data Tranfer
3381.277Sdante#options 	ADW_SDTR_DISABLE	# 	disable Syncronous Data Transfer
3391.277Sdante#options 	ADW_TAGQ_DISABLE	# 	disable Tag Queuing
3401.112Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
3411.112Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
3421.259Saddpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
3431.112Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
3441.112Sperryncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
3451.212Sthorpejpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
3461.110Sthorpej
3471.112Sperry# EISA SCSI controllers
3481.112Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
3491.112Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
3501.112Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
3511.263Saddpt*	at eisa? slot ?			# DPT EATA SCSI
3521.112Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
3531.105Sthorpej
3541.112Sperry# PCMCIA SCSI controllers
3551.110Sthorpejaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
3561.145Senami
3571.145Senami# ISA Plug-and-Play SCSI controllers
3581.205Schristosaha*	at isapnp? 			# Adaptec AHA-154[02
3591.145Senamiaic*	at isapnp?			# Adaptec AHA-1520B
3601.110Sthorpej
3611.112Sperry# ISA SCSI controllers
3621.236Sdanteadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02]
3631.112Sperryaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
3641.112Sperryaha1	at isa? port 0x334 irq ? drq ?
3651.112Sperryahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
3661.112Sperryaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
3671.116Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
3681.112Sperrybha1	at isa? port 0x334 irq ? drq ?
3691.262Sdrochner# The "nca" probe might give false hits or hang your machine.
3701.262Sdrochner#nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 contoller
3711.262Sdrochner#nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
3721.112Sperrysea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
3731.112Sperryuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
3741.129Sdrochneruha1	at isa? port 0x340 irq ? drq ?
3751.112Sperrywds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
3761.112Sperrywds1	at isa? port 0x358 irq 11 drq 5
3771.110Sthorpej
3781.110Sthorpej# SCSI bus support
3791.179Sdantescsibus* at adv?
3801.186Sdantescsibus* at adw?
3811.110Sthorpejscsibus* at aha?
3821.110Sthorpejscsibus* at ahb?
3831.110Sthorpejscsibus* at ahc?
3841.110Sthorpejscsibus* at aic?
3851.110Sthorpejscsibus* at bha?
3861.259Sadscsibus* at dpt?
3871.110Sthorpejscsibus* at isp?
3881.264Sdrochner#scsibus* at nca?
3891.110Sthorpejscsibus* at ncr?
3901.212Sthorpejscsibus* at pcscp?
3911.110Sthorpejscsibus* at sea?
3921.110Sthorpejscsibus* at uha?
3931.110Sthorpejscsibus* at wds?
3941.110Sthorpej
3951.110Sthorpej# SCSI devices
3961.110Sthorpejsd*	at scsibus? target ? lun ?	# SCSI disk drives
3971.110Sthorpejst*	at scsibus? target ? lun ?	# SCSI tape drives
3981.110Sthorpejcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
3991.110Sthorpejch*	at scsibus? target ? lun ?	# SCSI autochangers
4001.110Sthorpejss*	at scsibus? target ? lun ?	# SCSI scanners
4011.110Sthorpejuk*	at scsibus? target ? lun ?	# SCSI unknown
4021.110Sthorpej
4031.112Sperry
4041.220Sabs# IDE and related devices
4051.228Skleink# PCI IDE controllers - see pciide(4) for supported hardware.
4061.194Sbouyer# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
4071.194Sbouyer# how to set up DMA modes for this chip. This may work, or may cause
4081.194Sbouyer# a machine hang with some controllers.
4091.202Sbouyerpciide* at pci ? dev ? function ? flags 0x0000
4101.132Smycroft
4111.132Smycroft# ISA Plug-and-Play IDE controllers
4121.192Sbouyerwdc*	at isapnp? 
4131.131Smycroft
4141.131Smycroft# PCMCIA IDE controllers
4151.190Senamiwdc*	at pcmcia? function ?
4161.112Sperry
4171.189Sbouyer# ISA ST506, ESDI, and IDE controllers
4181.235Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
4191.261Sitohy# fall back to 16bits I/O if 32bits I/O are not functional).
4201.235Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
4211.235Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
4221.235Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
4231.112Sperry
4241.220Sabs# IDE drives
4251.220Sabs# Flags are used only with controllers that support DMA operations
4261.206Sbouyer# and mode settings (e.g. some pciide controllers)
4271.220Sabs# The lowest order four bits (rightmost digit) of the flags define the PIO
4281.220Sabs# mode to use, the next set of four bits the DMA mode and the third set the
4291.220Sabs# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
4301.220Sabs# to use, and the last bit must be 1 for this setting to be used.
4311.220Sabs# For DMA and UDMA, 0xf (1111) means 'disable'.
4321.220Sabs# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
4331.220Sabs# (0xc=1100, 0xa=1010, 0xf=1111)
4341.220Sabs# 0x0000 means "use whatever the drive claims to support".
4351.206Sbouyerwd*	at wdc? channel ? drive ? flags 0x0000
4361.206Sbouyerwd*	at pciide? channel ? drive ? flags 0x0000
4371.112Sperry
4381.110Sthorpej# ATAPI bus support
4391.189Sbouyeratapibus* at wdc? channel ?
4401.202Sbouyeratapibus* at pciide? channel ?
4411.110Sthorpej
4421.110Sthorpej# ATAPI devices
4431.206Sbouyer# flags have the same meaning as for IDE drives.
4441.206Sbouyercd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
4451.206Sbouyersd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
4461.206Sbouyeruk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
4471.110Sthorpej
4481.112Sperry
4491.112Sperry# Miscellaneous mass storage devices
4501.112Sperry
4511.112Sperry# ISA floppy
4521.112Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
4531.112Sperry#fdc1	at isa? port 0x370 irq ? drq ?
4541.112Sperryfd*	at fdc? drive ?			# the drives themselves
4551.112Sperry# some machines need you to do this instead of fd*
4561.112Sperry#fd0	at fdc0 drive 0
4571.112Sperry
4581.112Sperry# ISA CD-ROM devices
4591.112Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
4601.112Sperry
4611.112Sperry# ISA tape devices
4621.157Sbouyer# note: the wt driver conflicts unpleasantly with SMC boards at the
4631.116Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
4641.112Sperry# uncomment it unless you are actually using it.
4651.129Sdrochner#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
4661.112Sperry
4671.112Sperry
4681.112Sperry# Network Interfaces
4691.112Sperry
4701.112Sperry# PCI network interfaces
4711.112Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
4721.112Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
4731.200Sfvdlep*	at pci? dev ? function ?	# 3Com 3c59x
4741.200Sfvdlex*	at pci? dev ? function ?	# 3Com 90x[B]
4751.150Sthorpejepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
4761.152Smjacobesh*	at pci? dev ? function ?	# Essential HIPPI card
4771.112Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
4781.112Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
4791.112Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
4801.112Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
4811.287Schoppsntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
4821.250Sthorpejsip*	at pci? dev ? function ?	# SiS 900 Ethernet
4831.115Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
4841.260Sthorpejtlp*	at pci? dev ? function ?	# DECchip 21x4x (and clones) Ethernet
4851.270Sthorpej#options 	TLP_MATCH_21040
4861.270Sthorpej#options 	TLP_MATCH_21041
4871.270Sthorpej#options 	TLP_MATCH_21140
4881.270Sthorpej#options 	TLP_MATCH_21142
4891.213Ssakamotovr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
4901.225Sexplorerlmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
4911.255Sdrochnerrl*	at pci? dev ? function ?	# Realtek 8129/8139
4921.112Sperry
4931.112Sperry# EISA network interfaces
4941.112Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
4951.112Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
4961.270Sthorpejtlp*	at eisa? slot ?			# DEC DE-425 Ethernet
4971.112Sperry
4981.112Sperry# ISA Plug-and-Play network interfaces
4991.112Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
5001.112Sperryne*	at isapnp?			# NE2000-compatible Ethernet
5011.222Sbadtr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
5021.112Sperry
5031.112Sperry# PCMCIA network interfaces
5041.269Ssommerfeawi*	at pcmcia? function ?		# BayStack 650 (802.11FH)
5051.280Sitojuncnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
5061.112Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
5071.144Senamimbe*	at pcmcia? function ?		# MB8696x based Ethernet
5081.112Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
5091.112Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
5101.252Sbouyerwi*	at pcmcia? function ?		# Lucent WaveLan IEEE (802.11)
5111.288Sjoda#xe*	at pcmcia? function ?		# Xircom PCMCIA cards
5121.260Sthorpej
5131.260Sthorpejmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
5141.260Sthorpejcom*	at mhzc?
5151.260Sthorpejsm*	at mhzc?
5161.112Sperry
5171.112Sperry# ISA network interfaces
5181.143Senamiate0	at isa? port 0x2a0 irq ?		# AT1700
5191.164Sthorpejcs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
5201.117Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
5211.120Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
5221.112Sperryel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
5231.112Sperryep0	at isa? port ? irq ?			# 3C509 ethernet cards
5241.140Spkef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
5251.140Spkai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
5261.143Senamifmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
5271.140Spkix0	at isa? port 0x300 irq 10		# EtherExpress/16
5281.121Sdrochneriy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
5291.123Sthorpejlc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
5301.146Sdrochner#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
5311.146Sdrochner#le*	at depca?
5321.147Sdrochnernele0	at isa? port 0x320 irq 9 drq 7		# NE2100
5331.287Schopps#ntwoc0	at isa? port 0x300 irq 5 iomem 0xc8000 flags 1	# Riscom/N2 sync serial
5341.146Sdrochnerle*	at nele?
5351.146Sdrochnerbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
5361.146Sdrochnerle*	at bicc?
5371.112Sperryne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
5381.112Sperryne1	at isa? port 0x300 irq 10
5391.119Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
5401.222Sbadtr0	at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
5411.222Sbadtr1	at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
5421.222Sbadtr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
5431.118Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
5441.118Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
5451.112Sperry
5461.172Sthorpej# MII/PHY support
5471.195Sthorpejexphy*	at mii? phy ?			# 3Com internal PHYs
5481.198Sthorpejicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
5491.172Sthorpejinphy*	at mii? phy ?			# Intel 82555 PHYs
5501.270Sthorpejiophy*	at mii? phy ?			# Intel 82553 PHYs
5511.195Sthorpejlxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
5521.172Sthorpejnsphy*	at mii? phy ?			# NS83840 PHYs
5531.281Sthorpejnsphyter* at mii? phy ?			# NS83843 PHYs
5541.172Sthorpejqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
5551.199Sthorpejsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
5561.172Sthorpejtlphy*	at mii? phy ?			# ThunderLAN PHYs
5571.270Sthorpejtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
5581.201Sthorpejukphy*	at mii? phy ?			# generic unknown PHYs
5591.112Sperry
5601.162Saugustss# USB Controller and Devices
5611.162Saugustss
5621.162Saugustss# PCI USB controllers
5631.278Saugustssuhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
5641.278Saugustssohci*	at pci?	dev ? function ?	# Open Host Controller
5651.162Saugustss
5661.162Saugustss# USB bus support
5671.162Saugustssusb*	at uhci?
5681.162Saugustssusb*	at ohci?
5691.162Saugustss
5701.162Saugustss# USB Hubs
5711.162Saugustssuhub*	at usb?
5721.207Saugustssuhub*	at uhub? port ? configuration ? interface ?
5731.162Saugustss
5741.162Saugustss# USB Mice
5751.207Saugustssums*	at uhub? port ? configuration ? interface ?
5761.246Saugustsswsmouse*	at ums? mux 0
5771.162Saugustss
5781.162Saugustss# USB Keyboards
5791.207Saugustssukbd*	at uhub? port ? configuration ? interface ?
5801.246Saugustsswskbd*	at ukbd? console ? mux 1
5811.162Saugustss
5821.162Saugustss# USB Generic HID devices
5831.207Saugustssuhid*	at uhub? port ? configuration ? interface ?
5841.162Saugustss
5851.162Saugustss# USB Printer
5861.207Saugustssulpt*	at uhub? port ? configuration ? interface ?
5871.162Saugustss
5881.254Saugustss# USB Modem
5891.254Saugustssumodem*	at uhub? port ? configuration ?
5901.256Sthorpej
5911.256Sthorpej# USB Mass Storage
5921.256Sthorpejumass*	at uhub? port ? configuration ? interface ?
5931.256Sthorpejscsibus* at umass? channel ?
5941.254Saugustss
5951.257Saugustss# USB audio
5961.257Saugustssuaudio*	at uhub? port ? configuration ?
5971.257Saugustss
5981.289Saugustss# USB Ethernet adapters
5991.289Saugustssaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
6001.291Saugustsscue*	at uhub? port ?		# CATC USB-EL1201A based adapters
6011.290Saugustsskue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
6021.289Saugustss
6031.162Saugustss# USB Generic driver
6041.244Saugustssugen*	at uhub? port ?
6051.275Sdrochner
6061.275Sdrochner
6071.275Sdrochner# Plug-and-Play BIOS and attached devices
6081.275Sdrochner
6091.275Sdrochner#pnpbios0 at mainbus0
6101.275Sdrochner
6111.275Sdrochner# mainboard audio chips
6121.275Sdrochner#sb*	at pnpbios0 index ?	# NeoMagic 256AV in sb mode
6131.275Sdrochner#wss*	at pnpbios0 index ?	# NeoMagic 256AV in wss mode
6141.275Sdrochner#ym*	at pnpbios0 index ?	# OPL3-SA3
6151.275Sdrochner
6161.275Sdrochner# com port
6171.275Sdrochner#com*	at pnpbios0 index ?
6181.275Sdrochner
6191.275Sdrochner# parallel port
6201.275Sdrochner#lpt*	at pnpbios0 index ?
6211.275Sdrochner
6221.275Sdrochner# IDE controller on Toshiba Portege 3000 series (crippled PCI device)
6231.275Sdrochner#pciide* at pnpbios0 index ?
6241.275Sdrochner
6251.162Saugustss
6261.112Sperry# Audio Devices
6271.112Sperry
6281.148Saugustss# PCI audio devices
6291.283Saugustssclcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
6301.148Saugustsseap*	at pci? dev ? function ?	# Ensoniq AudioPCI
6311.241Skleinkeso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
6321.268Saugustssfms*	at pci? dev ? function ?	# Forte Media FM801
6331.289Saugustss#sbl*	at pci? dev ? function ?	# SoundBlaster Live!
6341.209Saugustsssv*	at pci? dev ? function ?	# S3 SonicVibes
6351.148Saugustss
6361.112Sperry# ISA Plug-and-Play audio devices
6371.173Saugustssess*	at isapnp?			# ESS Tech ES1887, ES1888, ES888 audio
6381.112Sperryguspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
6391.112Sperrysb*	at isapnp?			# SoundBlaster-compatible audio
6401.169Saugustsswss*	at isapnp?			# Windows Sound System
6411.149Saugustssym*	at isapnp?			# Yamaha OPL3-SA3 audio
6421.112Sperry
6431.112Sperry# ISA audio devices
6441.232Sdrochner# the "aria" probe might give false hits
6451.232Sdrochner#aria0	at isa? port 0x290 irq 10 		# Aria
6461.237Saugustss#ess0	at isa? port 0x220 irq 5 drq 1 drq2 5	# ESS 18XX
6471.112Sperrygus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
6481.112Sperrypas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
6491.112Sperrypss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
6501.112Sperrysp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
6511.161Sperrysb0	at isa? port 0x220 irq 5 drq 1 drq2 5	# SoundBlaster
6521.112Sperrywss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
6531.112Sperry
6541.261Sitohy# OPL[23] FM synthesizers
6551.178Saugustss#opl0	at isa? port 0x388	# use only if not attached to sound card
6561.241Skleinkopl*	at eso?
6571.178Saugustssopl*	at ess?
6581.268Saugustssopl*	at fms?
6591.176Saugustssopl*	at sb?
6601.209Saugustssopl*	at sv?
6611.253Saugustssopl*	at wss?
6621.261Sitohyopl*	at ym?
6631.176Saugustss
6641.112Sperry# Audio support
6651.233Sdrochner#audio*	at aria?
6661.283Saugustssaudio*	at clcs?
6671.155Senamiaudio*	at eap?
6681.241Skleinkaudio*	at eso?
6691.176Saugustssaudio*	at ess?
6701.268Saugustssaudio*	at fms?
6711.112Sperryaudio*	at gus?
6721.112Sperryaudio*	at guspnp?
6731.112Sperryaudio*	at pas?
6741.112Sperryaudio*	at sb?
6751.289Saugustss#audio*	at sbl?
6761.112Sperryaudio*	at sp?
6771.209Saugustssaudio*	at sv?
6781.257Saugustssaudio*	at uaudio?
6791.112Sperryaudio*	at wss?
6801.149Saugustssaudio*	at ym?
6811.112Sperry
6821.249Saugustss# MPU 401 UARTs
6831.249Saugustss#mpu*	at isa? port 0x330 irq 9        # MPU401 or compatible card
6841.249Saugustssmpu*	at eso?
6851.268Saugustssmpu*	at fms?
6861.248Saugustssmpu*	at sb?
6871.261Sitohympu*	at ym?
6881.247Saugustss
6891.170Saugustss# MIDI support
6901.266Saugustssmidi*	at eap?			# 137[01] MIDI port
6911.248Saugustssmidi*	at mpu?			# MPU 401
6921.248Saugustssmidi*	at opl?			# OPL FM synth
6931.173Saugustssmidi*	at pcppi?		# MIDI interface to the PC speaker
6941.248Saugustssmidi*	at sb?			# SB1 MIDI port
6951.170Saugustss
6961.112Sperry# The spkr driver provides a simple tone interface to the built in speaker.
6971.146Sdrochner#spkr0	at pcppi?		# PC speaker
6981.112Sperry
6991.112Sperry
7001.112Sperry# Mice
7011.112Sperry
7021.112Sperry# ISA busmice
7031.243Stronlms0	at isa? port 0x23c irq 5	# Logitech bus mouse
7041.243Stronlms1	at isa? port 0x238 irq 5
7051.243Stronmms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
7061.243Stronmms1	at isa? port 0x238 irq 5
7071.246Saugustsswsmouse*	at lms? mux 0
7081.246Saugustsswsmouse*	at mms? mux 0
7091.217Sdrochner# backwards compatible versions
7101.243Stron#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
7111.243Stron#olms1	at isa? port 0x238 irq 5
7121.243Stron#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
7131.243Stron#omms1	at isa? port 0x238 irq 5
7141.217Sdrochner#opms0	at pc? irq 12		# PS/2 auxiliary port mouse
7151.215Sdrochner#opms0	at vt? irq 12		# PS/2 auxiliary port mouse
7161.112Sperry
7171.112Sperry
7181.112Sperry# Joysticks
7191.112Sperry
7201.112Sperry# ISA Plug-and-Play joysticks
7211.112Sperryjoy*	at isapnp?			# Game ports (usually on audio cards)
7221.112Sperry
7231.112Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
7241.112Sperry#joy0	at isa? port 0x201
7251.112Sperry
7261.112Sperry
7271.112Sperry# Miscellaneous Devices
7281.112Sperry
7291.112Sperry# Planetconnect Satellite receiver driver.
7301.112Sperry#satlink0 at isa? port 0x300 drq 1
7311.112Sperry
7321.112Sperry
7331.110Sthorpej# Pull in optional local configuration
7341.57Smycroftinclude	"arch/i386/conf/GENERIC.local"
7351.1Smycroft
7361.112Sperry
7371.112Sperry# Pseudo-Devices
7381.112Sperry
7391.112Sperry# disk/mass storage pseudo-devices
7401.112Sperrypseudo-device	ccd		4	# concatenated/striped disk devices
7411.204Soster#pseudo-device	raid		4	# RAIDframe disk driver
7421.112Sperrypseudo-device	md		1	# memory disk device (ramdisk)
7431.112Sperrypseudo-device	vnd		4	# disk-like interface to files
7441.112Sperry
7451.112Sperry# network pseudo-devices
7461.110Sthorpejpseudo-device	bpfilter	8	# Berkeley packet filter
7471.110Sthorpejpseudo-device	ipfilter		# IP filter (firewall) and NAT
7481.110Sthorpejpseudo-device	loop			# network loopback
7491.110Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
7501.112Sperrypseudo-device	sl		2	# Serial Line IP
7511.112Sperrypseudo-device	strip		2	# Starmode Radio IP (Metricom)
7521.112Sperrypseudo-device	tun		2	# network tunneling over tty
7531.183Shwrpseudo-device	gre		2	# generic L3 over IP tunnel
7541.214Stronpseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
7551.273Sperrypseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
7561.279Sitojun#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
7571.112Sperry
7581.112Sperry# miscellaneous pseudo-devices
7591.110Sthorpejpseudo-device	pty		64	# pseudo-terminals
7601.113Sexplorerpseudo-device	tb		1	# tablet line discipline
7611.170Saugustsspseudo-device	sequencer	1	# MIDI sequencer
7621.227Sexplorer# rnd works; RND_COM does not on port i386 yet.
7631.227Sexplorerpseudo-device	rnd			# /dev/random and in-kernel generator
7641.114Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
7651.181Srvb
7661.182Srvb# a pseudo device needed for Coda	# also needs CODA (above)
7671.187Srvbpseudo-device	vcoda		4	# coda minicache <-> venus comm.
7681.246Saugustss
7691.246Saugustss# mouse & keyboard multiplexor pseudo-devices
7701.246Saugustsspseudo-device	wsmux		2
771