INSTALL revision 1.66
11.66Slukem#	$NetBSD: INSTALL,v 1.66 1997/11/17 01:57:52 lukem Exp $
21.2Stls#
31.54Sthorpej#	INSTALL - Installation kernel.
41.2Stls#
51.54Sthorpej#	This kernel should be derived from GENERIC with some features
61.54Sthorpej#	commented out.
71.54Sthorpej#
81.54Sthorpej#	This kernel does NOT support X, mice, audio devices, non-NetBSD
91.37Sperry#	emulation.
101.54Sthorpej#
111.2Stls
121.25Sfvdlinclude "arch/i386/conf/std.i386"
131.2Stls
141.54Sthorpej# Enable the hooks used for initializing the root memory-disk.
151.54Sthorpejoptions 	MEMORY_DISK_HOOKS
161.54Sthorpejoptions 	MEMORY_DISK_IS_ROOT	# force root on memory disk
171.54Sthorpejoptions 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
181.54Sthorpejoptions 	MINIROOTSIZE=3074	# size of memory disk, in blocks
191.54Sthorpej#options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
201.54Sthorpej
211.54Sthorpejmaxusers	32		# estimated number of users
221.54Sthorpej
231.54Sthorpej# CPU support.  At least one is REQUIRED.
241.54Sthorpejoptions 	I386_CPU
251.39Smellonoptions 	I486_CPU
261.39Smellonoptions 	I586_CPU
271.54Sthorpejoptions 	I686_CPU	
281.54Sthorpej
291.54Sthorpej# CPU-related options.
301.39Smellonoptions 	MATH_EMULATE	# floating point emulation
311.50Smycroft#options 	VM86		# virtual 8086 emulation
321.50Smycroft#options 	USER_LDT	# user-settable LDT; used by WINE
331.56Sperry# eliminate delay no-ops in I/O; recommended on all but very old machines
341.56Sperry#options 	DUMMY_NOPS
351.54Sthorpej
361.54Sthorpej# Misc. i386-specific options
371.54Sthorpej#options 	XSERVER		# X server support in console drivers
381.54Sthorpej
391.54Sthorpej# This option allows you to force a serial console at the specified
401.54Sthorpej# I/O address.
411.54Sthorpej#options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
421.7Sthorpej
431.49Smycroft# The following options override the memory sizes passed in from the boot
441.49Smycroft# block.  Use them *only* if the boot block is unable to determine the correct
451.55Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
461.49Smycroft# memory if the extended BIOS data area is located at the top of base memory
471.49Smycroft# (as is the case on most recent systems).
481.49Smycroft#options 	REALBASEMEM=...	# size of base memory
491.49Smycroft#options 	REALEXTMEM=...	# size of extended memory
501.2Stls
511.54Sthorpej# Standard system options
521.54Sthorpej
531.54Sthorpej#options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
541.54Sthorpejoptions 	INSECURE	# disable kernel security levels
551.2Stls
561.39Smellonoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
571.39Smellon#options 	NTP		# NTP phase/frequency locked loop
581.2Stls
591.47Smikel#options 	KTRACE		# system call tracing via ktrace(1)
601.2Stls
611.39Smellon#options 	SYSVMSG		# System V-like message queues
621.39Smellon#options 	SYSVSEM		# System V-like semaphores
631.39Smellon#options 	SYSVSHM		# System V-like memory sharing
641.39Smellon#options 	SHMMAXPGS=1024	# 1024 pages is the default
651.39Smellon
661.54Sthorpej#options 	LKM		# loadable kernel modules
671.54Sthorpej
681.54Sthorpej# Diagnostic/debugging support options
691.54Sthorpej#options 	DIAGNOSTIC	# cheap kernel consistency checks
701.54Sthorpej#options 	DEBUG		# expensive debugging checks/support
711.54Sthorpej#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
721.54Sthorpej#options 	DDB		# in-kernel debugger
731.66Slukem#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
741.54Sthorpej#options 	KGDB		# remote debugger
751.54Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
761.54Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
771.54Sthorpej
781.61Smikel# Compatibility options
791.39Smellon#options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
801.39Smellon#options 	COMPAT_09	# NetBSD 0.9,
811.39Smellonoptions 	COMPAT_10	# NetBSD 1.0,
821.39Smellonoptions 	COMPAT_11	# NetBSD 1.1,
831.39Smellonoptions 	COMPAT_12	# NetBSD 1.2,
841.39Smellon#options 	COMPAT_43	# and 4.3BSD
851.39Smellon
861.39Smellon#options 	COMPAT_SVR4	# binary compatibility with SVR4
871.39Smellon#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
881.39Smellon#options 	COMPAT_LINUX	# binary compatibility with Linux
891.39Smellon#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
901.23Smycroft
911.54Sthorpej# Executable format options
921.39Smellon#options 	EXEC_ELF32	# 32-bit ELF executables (SVR4, Linux)
931.2Stls
941.54Sthorpej# File systems
951.32Sthorpejfile-system 	FFS		# UFS
961.48Sperryfile-system 	EXT2FS		# second extended file system (linux)
971.43Smikel#file-system 	LFS		# log-structured file system
981.32Sthorpejfile-system 	MFS		# memory file system
991.32Sthorpejfile-system 	NFS		# Network File System client
1001.32Sthorpejfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1011.32Sthorpejfile-system 	MSDOSFS		# MS-DOS file system
1021.59Sperry#file-system 	FDESC		# /dev/fd
1031.32Sthorpejfile-system 	KERNFS		# /kern
1041.43Smikel#file-system 	NULLFS		# loopback file system
1051.43Smikel#file-system 	PORTAL		# portal filesystem (still experimental)
1061.43Smikel#file-system 	PROCFS		# /proc
1071.43Smikel#file-system 	UMAPFS		# NULLFS + uid and gid remapping
1081.43Smikel#file-system 	UNION		# union file system
1091.2Stls
1101.54Sthorpej# File system options
1111.39Smellon#options 	QUOTA		# UFS quotas
1121.39Smellon#options 	NFSSERVER	# Network File System server
1131.39Smellonoptions 	FIFO		# FIFOs; RECOMMENDED
1141.37Sperry#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1151.37Sperry				# immutable) behave as system flags.
1161.61Smikel
1171.54Sthorpej# Networking options
1181.39Smellon#options 	GATEWAY		# packet forwarding
1191.39Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1201.39Smellon#options 	MROUTING	# IP multicast routing
1211.39Smellon#options 	NS		# XNS
1221.39Smellon#options 	NSIP		# XNS tunneling over IP
1231.39Smellon#options 	ISO,TPIP	# OSI
1241.39Smellon#options 	EON		# OSI tunneling over IP
1251.39Smellon#options 	CCITT,LLC,HDLC	# X.25
1261.54Sthorpej#options 	NETATALK	# AppleTalk networking protocols
1271.54Sthorpej#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1281.54Sthorpej#options 	PPP_DEFLATE	# Deflate compression support for PPP
1291.54Sthorpej#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1301.43Smikel#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1311.2Stls
1321.61Smikel# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
1331.54Sthorpej#options 	TCP_COMPAT_42
1341.2Stls
1351.56Sperry# These options enable verbose messages for several subsystems.
1361.56Sperry# Warning, these may compile large string tables into the kernel!
1371.56Sperry#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
1381.56Sperry#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
1391.54Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1401.56Sperry#options 	SCSIVERBOSE	# human readable SCSI error messages
1411.54Sthorpej
1421.54Sthorpej# Kernel root file system and dump configuration.
1431.54Sthorpejconfig		netbsd	root on ? type ?
1441.54Sthorpej#config		netbsd	root on sd0a type ffs
1451.54Sthorpej#config		netbsd	root on ? type nfs
1461.54Sthorpej
1471.54Sthorpej#
1481.54Sthorpej# Device configuration
1491.54Sthorpej#
1501.43Smikel
1511.6Scgdmainbus0 at root
1521.6Scgd
1531.54Sthorpej#apm0	at mainbus0			# Advanced power management
1541.2Stls
1551.56Sperry
1561.56Sperry# Basic Bus Support
1571.56Sperry
1581.54Sthorpej# PCI bus support
1591.54Sthorpejpci*	at mainbus? bus ?
1601.54Sthorpejpci*	at pchb? bus ?
1611.5Scgdpci*	at ppb? bus ?
1621.54Sthorpej
1631.56Sperry# PCI bridges
1641.27Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
1651.27Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
1661.54Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
1671.27Sthorpej
1681.54Sthorpej# EISA bus support
1691.54Sthorpejeisa*	at mainbus?
1701.27Sthorpej
1711.54Sthorpej# ISA bus support
1721.54Sthorpejisa*	at mainbus?
1731.54Sthorpejisa*	at pcib?
1741.54Sthorpej
1751.56Sperry# PCMCIA bus support
1761.56Sperrypcmcia*	at pcic? controller ? socket ?
1771.56Sperry
1781.56Sperry# ISA PCMCIA controllers
1791.56Sperrypcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
1801.56Sperrypcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
1811.56Sperry
1821.56Sperry# ISA Plug-and-Play bus support
1831.56Sperryisapnp0	at isa?
1841.56Sperry
1851.56Sperry
1861.56Sperry# Coprocessor Support
1871.56Sperry
1881.56Sperry# Math Coprocessor support
1891.56Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
1901.56Sperry
1911.56Sperry
1921.56Sperry# Console Devices
1931.56Sperry
1941.56Sperry# ISA console.  You can only configure one of these!
1951.56Sperrypc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
1961.56Sperry#vt0	at isa? port 0x60 irq 1		# PCVT console driver
1971.56Sperry
1981.56Sperry
1991.56Sperry# Serial Devices
2001.56Sperry
2011.56Sperry# PCI serial interfaces
2021.56Sperry#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
2031.54Sthorpej
2041.56Sperry# ISA Plug-and-Play serial interfaces
2051.56Sperrycom*	at isapnp?			# Modems and serial boards
2061.56Sperry
2071.56Sperry# PCMCIA serial interfaces
2081.56Sperrycom*	at pcmcia? function ?		# Modems and serial cards
2091.56Sperry
2101.56Sperry# ISA serial interfaces
2111.56Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
2121.56Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
2131.56Sperrycom1	at isa? port 0x2f8 irq 3
2141.56Sperrycom2	at isa? port 0x3e8 irq 5
2151.56Sperry#com3	at isa? port 0x2e8 irq 9
2161.56Sperry#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
2171.56Sperry#com*	at ast? slave ?
2181.56Sperry#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
2191.56Sperry#com*	at boca? slave ?
2201.56Sperry#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
2211.56Sperry#com*	at rtfps? slave ?
2221.56Sperry#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
2231.56Sperry
2241.56Sperry
2251.56Sperry# Parallel Printer Interfaces
2261.56Sperry
2271.56Sperry# ISA parallel printer interfaces
2281.56Sperry#lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
2291.56Sperry#lpt1	at isa? port 0x278
2301.56Sperry#lpt2	at isa? port 0x3bc
2311.56Sperry
2321.56Sperry
2331.56Sperry# SCSI Controllers and Devices
2341.5Scgd
2351.56Sperry# PCI SCSI controllers
2361.56Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2371.56Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
2381.56Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
2391.56Sperryncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
2401.2Stls
2411.56Sperry# EISA SCSI controllers
2421.56Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
2431.56Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
2441.56Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
2451.56Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
2461.2Stls
2471.56Sperry# PCMCIA SCSI controllers
2481.56Sperryaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
2491.54Sthorpej
2501.54Sthorpej# ISA SCSI controllers
2511.54Sthorpejaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
2521.54Sthorpejaha1	at isa? port 0x334 irq ? drq ?
2531.54Sthorpejahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
2541.54Sthorpejaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
2551.61Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
2561.54Sthorpejbha1	at isa? port 0x334 irq ? drq ?
2571.54Sthorpejsea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
2581.54Sthorpejuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
2591.54Sthorpejuha1	at isa? port 0x334 irq ? drq ?
2601.54Sthorpejwds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
2611.54Sthorpejwds1	at isa? port 0x358 irq 11 drq 5
2621.54Sthorpej
2631.56Sperry# SCSI bus support
2641.56Sperryscsibus* at aha?
2651.56Sperryscsibus* at ahb?
2661.56Sperryscsibus* at ahc?
2671.56Sperryscsibus* at aic?
2681.56Sperryscsibus* at bha?
2691.56Sperryscsibus* at isp?
2701.56Sperryscsibus* at ncr?
2711.56Sperryscsibus* at sea?
2721.56Sperryscsibus* at uha?
2731.56Sperryscsibus* at wds?
2741.56Sperry
2751.56Sperry# SCSI devices
2761.56Sperrysd*	at scsibus? target ? lun ?	# SCSI disk drives
2771.56Sperryst*	at scsibus? target ? lun ?	# SCSI tape drives
2781.56Sperrycd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
2791.56Sperry#ch*	at scsibus? target ? lun ?	# SCSI autochangers
2801.56Sperry#ss*	at scsibus? target ? lun ?	# SCSI scanners
2811.56Sperry#uk*	at scsibus? target ? lun ?	# SCSI unknown
2821.56Sperry
2831.56Sperry
2841.56Sperry# IDE and Related Devices
2851.56Sperry
2861.56Sperry# ISA IDE controllers
2871.56Sperrywdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
2881.56Sperrywdc1	at isa? port 0x170 irq 15
2891.56Sperry
2901.56Sperry# IDE drives
2911.61Smikelwd*	at wdc? drive ?			# the drives themselves
2921.56Sperry
2931.56Sperry# ATAPI bus support
2941.56Sperryatapibus* at wdc?
2951.56Sperry
2961.56Sperry# ATAPI devices
2971.56Sperrycd*	at atapibus? drive ?		# ATAPI CD-ROM drives
2981.56Sperry
2991.56Sperry
3001.56Sperry# Miscellaneous mass storage devices
3011.56Sperry
3021.56Sperry# ISA floppy
3031.56Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
3041.56Sperry#fdc1	at isa? port 0x370 irq ? drq ?
3051.56Sperryfd*	at fdc? drive ?			# the drives themselves
3061.56Sperry# some machines need you to do this instead of fd*
3071.56Sperry#fd0	at fdc0 drive 0
3081.56Sperry
3091.56Sperry# ISA CD-ROM devices
3101.56Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
3111.56Sperry
3121.56Sperry# ISA tape devices
3131.56Sperry# note: the wt driver conflicts unpleasantly with ed devices at the
3141.61Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
3151.56Sperry# uncomment it unless you are actually using it.
3161.56Sperry#wt0	at isa? port 0x300 irq 5 drq 1	# Archive and Wangtek QIC tape drives
3171.56Sperry
3181.56Sperry
3191.56Sperry# Network Interfaces
3201.56Sperry
3211.56Sperry# PCI network interfaces
3221.56Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
3231.56Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
3241.56Sperryep*	at pci? dev ? function ?	# 3Com 3c59x/3c90x Ethernet
3251.56Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
3261.56Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
3271.56Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
3281.56Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
3291.60Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
3301.2Stls
3311.56Sperry# EISA network interfaces
3321.56Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
3331.56Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
3341.2Stls
3351.56Sperry# ISA Plug-and-Play network interfaces
3361.56Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
3371.56Sperryne*	at isapnp?			# NE2000-compatible Ethernet
3381.20Smycroft
3391.56Sperry# PCMCIA network interfaces
3401.56Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
3411.56Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
3421.56Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
3431.54Sthorpej
3441.54Sthorpej# ISA network interfaces
3451.62Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
3461.65Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
3471.54Sthorpejel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
3481.54Sthorpejep0	at isa? port ? irq ?			# 3C509 ethernet cards
3491.54Sthorpejfe0	at isa? port 0x2a0 irq ?		# AT1700
3501.54Sthorpejie0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN and 3C507
3511.54Sthorpejie1	at isa? port 0x300 irq 10		# EtherExpress
3521.54Sthorpejiy0	at isa? port ? irq ?			# EtherExpress PRO 10 ISA
3531.54Sthorpejlc0	at isa? port ? iomem ? irq ?		# DEC EtherWORKS III (LEMAC)
3541.54Sthorpej#le0	at isa? port 0x320 irq 10 drq 7		# IsoLan, NE2100, and DEPCA
3551.54Sthorpejne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
3561.54Sthorpejne1	at isa? port 0x300 irq 10
3571.64Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
3581.63Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
3591.63Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
3601.54Sthorpej
3611.56Sperry# MII bus support
3621.56Sperrymii*	at tl?
3631.54Sthorpej
3641.56Sperry# MII PHY network interfaces
3651.60Sbouyertlphy*	at mii? dev ?			# ThunderLAN PHYs
3661.56Sperrynsphy*	at mii? dev ?			# NS and compatible PHYs
3671.54Sthorpej
3681.54Sthorpej
3691.56Sperry# Audio Devices
3701.54Sthorpej
3711.56Sperry# ISA Plug-and-Play audio devices
3721.54Sthorpej#guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
3731.54Sthorpej#sb*	at isapnp?			# SoundBlaster-compatible audio
3741.54Sthorpej
3751.56Sperry# ISA audio devices
3761.56Sperry#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
3771.56Sperry#pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
3781.56Sperry#pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
3791.56Sperry#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
3801.56Sperry#sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
3811.56Sperry#wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
3821.54Sthorpej
3831.54Sthorpej# Audio support
3841.54Sthorpej#audio*	at gus?
3851.54Sthorpej#audio*	at guspnp?
3861.54Sthorpej#audio*	at pas?
3871.54Sthorpej#audio*	at sb?
3881.54Sthorpej#audio*	at sp?
3891.54Sthorpej#audio*	at wss?
3901.54Sthorpej
3911.56Sperry# The spkr driver provides a simple tone interface to the built in speaker.
3921.56Sperry#spkr0	at pckbd? port 0x61		# PC speaker
3931.56Sperry
3941.56Sperry
3951.56Sperry# Mice
3961.56Sperry
3971.56Sperry# ISA busmice
3981.56Sperry#lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
3991.56Sperry#lms1	at isa? port 0x238 irq 5
4001.56Sperry#mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
4011.56Sperry#mms1	at isa? port 0x238 irq 5
4021.56Sperry#pms0	at pckbd? irq 12		# PS/2 auxiliary port mouse
4031.56Sperry
4041.56Sperry
4051.56Sperry# Joysticks
4061.56Sperry
4071.56Sperry# ISA Plug-and-Play joysticks
4081.56Sperry#joy*	at isapnp?			# Game ports (usually on audio cards)
4091.2Stls
4101.56Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
4111.56Sperry#joy0	at isa? port 0x201
4121.2Stls
4131.20Smycroft
4141.56Sperry# Miscellaneous Devices
4151.20Smycroft
4161.56Sperry# Planetconnect Satellite receiver driver.
4171.56Sperry#satlink0 at isa? port 0x300 drq 1
4181.43Smikel
4191.21Smycroft
4201.54Sthorpej# Pull in optional local configuration
4211.22Smycroftinclude	"arch/i386/conf/GENERIC.local"
4221.37Sperry
4231.56Sperry
4241.56Sperry# Pseudo-Devices
4251.56Sperry
4261.56Sperry# disk/mass storage pseudo-devices
4271.56Sperry#pseudo-device	ccd		4	# concatenated/striped disk devices
4281.56Sperrypseudo-device	md		1	# memory disk device (ramdisk)
4291.56Sperry#pseudo-device	vnd		4	# disk-like interface to files
4301.56Sperry
4311.56Sperry# network pseudo-devices
4321.54Sthorpej#pseudo-device	bpfilter	8	# Berkeley packet filter
4331.54Sthorpej#pseudo-device	ipfilter		# IP filter (firewall) and NAT
4341.54Sthorpejpseudo-device	loop			# network loopback
4351.54Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
4361.56Sperrypseudo-device	sl		2	# Serial Line IP
4371.56Sperry#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
4381.56Sperry#pseudo-device	tun		2	# network tunneling over tty
4391.56Sperry
4401.56Sperry# miscellaneous pseudo-devices
4411.54Sthorpejpseudo-device	pty		64	# pseudo-terminals
4421.57Sexplorer#pseudo-device	tb		1	# tablet line discipline
4431.57Sexplorer
4441.61Smikel# rnd is EXPERIMENTAL at this point.
4451.54Sthorpej#pseudo-device	rnd			# /dev/random and in-kernel generator
4461.58Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
447