INSTALL revision 1.117
11.117Sbouyer#	$NetBSD: INSTALL,v 1.117 1999/05/19 14:41:54 bouyer 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.103Sheoptions 	MINIROOTSIZE=3174	# size of memory disk, in blocks
191.54Sthorpej#options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
201.112Ssommerfe
211.112Ssommerfemakeoptions	COPTS="-Os"		# generates smaller code than -O2, -O1
221.54Sthorpej
231.54Sthorpejmaxusers	32		# estimated number of users
241.54Sthorpej
251.54Sthorpej# CPU support.  At least one is REQUIRED.
261.54Sthorpejoptions 	I386_CPU
271.39Smellonoptions 	I486_CPU
281.39Smellonoptions 	I586_CPU
291.86Senamioptions 	I686_CPU
301.54Sthorpej
311.54Sthorpej# CPU-related options.
321.101Srvboptions 	MATH_EMULATE	# floating point emulation
331.50Smycroft#options 	VM86		# virtual 8086 emulation
341.50Smycroft#options 	USER_LDT	# user-settable LDT; used by WINE
351.56Sperry# eliminate delay no-ops in I/O; recommended on all but very old machines
361.56Sperry#options 	DUMMY_NOPS
371.54Sthorpej
381.54Sthorpej# Misc. i386-specific options
391.54Sthorpej#options 	XSERVER		# X server support in console drivers
401.54Sthorpej
411.54Sthorpej# This option allows you to force a serial console at the specified
421.54Sthorpej# I/O address.
431.54Sthorpej#options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
441.7Sthorpej
451.49Smycroft# The following options override the memory sizes passed in from the boot
461.49Smycroft# block.  Use them *only* if the boot block is unable to determine the correct
471.55Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
481.49Smycroft# memory if the extended BIOS data area is located at the top of base memory
491.49Smycroft# (as is the case on most recent systems).
501.49Smycroft#options 	REALBASEMEM=...	# size of base memory
511.49Smycroft#options 	REALEXTMEM=...	# size of extended memory
521.102Smarc
531.102Smarc# Avoid irq 5 and 7, the most likely cause of problems on modern laptops.
541.102Smarcoptions		PCIC_ISA_INTR_ALLOC_MASK=0xff5f
551.2Stls
561.54Sthorpej# Standard system options
571.54Sthorpej
581.54Sthorpej#options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
591.54Sthorpejoptions 	INSECURE	# disable kernel security levels
601.2Stls
611.39Smellonoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
621.39Smellon#options 	NTP		# NTP phase/frequency locked loop
631.2Stls
641.47Smikel#options 	KTRACE		# system call tracing via ktrace(1)
651.2Stls
661.39Smellon#options 	SYSVMSG		# System V-like message queues
671.39Smellon#options 	SYSVSEM		# System V-like semaphores
681.39Smellon#options 	SYSVSHM		# System V-like memory sharing
691.39Smellon#options 	SHMMAXPGS=1024	# 1024 pages is the default
701.39Smellon
711.54Sthorpej#options 	LKM		# loadable kernel modules
721.89Sthorpej
731.54Sthorpej# Diagnostic/debugging support options
741.54Sthorpej#options 	DIAGNOSTIC	# cheap kernel consistency checks
751.54Sthorpej#options 	DEBUG		# expensive debugging checks/support
761.54Sthorpej#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
771.108Sheoptions 	DDB		# in-kernel debugger
781.108Sheoptions 	DDB_ONPANIC=0	# do not by default automatically drop to ddb
791.66Slukem#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
801.54Sthorpej#options 	KGDB		# remote debugger
811.54Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
821.54Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
831.54Sthorpej
841.61Smikel# Compatibility options
851.39Smellon#options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
861.39Smellon#options 	COMPAT_09	# NetBSD 0.9,
871.101Srvboptions 	COMPAT_10	# NetBSD 1.0,
881.101Srvboptions 	COMPAT_11	# NetBSD 1.1,
891.101Srvboptions 	COMPAT_12	# NetBSD 1.2,
901.101Srvboptions 	COMPAT_13	# NetBSD 1.3,
911.39Smellon#options 	COMPAT_43	# and 4.3BSD
921.84Sveegooptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
931.39Smellon
941.39Smellon#options 	COMPAT_SVR4	# binary compatibility with SVR4
951.39Smellon#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
961.39Smellon#options 	COMPAT_LINUX	# binary compatibility with Linux
971.39Smellon#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
981.23Smycroft
991.54Sthorpej# Executable format options
1001.111Schristosoptions 	EXEC_ELF32	# 32-bit ELF executables (SVR4, Linux)
1011.2Stls
1021.54Sthorpej# File systems
1031.32Sthorpejfile-system 	FFS		# UFS
1041.101Srvbfile-system 	EXT2FS		# second extended file system (linux)
1051.43Smikel#file-system 	LFS		# log-structured file system
1061.32Sthorpejfile-system 	MFS		# memory file system
1071.32Sthorpejfile-system 	NFS		# Network File System client
1081.116Schristosfile-system 	NTFS		# Windows/NT Filesystem
1091.101Srvbfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1101.101Srvbfile-system 	MSDOSFS		# MS-DOS file system
1111.59Sperry#file-system 	FDESC		# /dev/fd
1121.32Sthorpejfile-system 	KERNFS		# /kern
1131.43Smikel#file-system 	NULLFS		# loopback file system
1141.43Smikel#file-system 	PORTAL		# portal filesystem (still experimental)
1151.43Smikel#file-system 	PROCFS		# /proc
1161.43Smikel#file-system 	UMAPFS		# NULLFS + uid and gid remapping
1171.43Smikel#file-system 	UNION		# union file system
1181.2Stls
1191.54Sthorpej# File system options
1201.39Smellon#options 	QUOTA		# UFS quotas
1211.39Smellon#options 	NFSSERVER	# Network File System server
1221.37Sperry#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1231.37Sperry				# immutable) behave as system flags.
1241.61Smikel
1251.54Sthorpej# Networking options
1261.39Smellon#options 	GATEWAY		# packet forwarding
1271.39Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1281.39Smellon#options 	MROUTING	# IP multicast routing
1291.39Smellon#options 	NS		# XNS
1301.39Smellon#options 	NSIP		# XNS tunneling over IP
1311.39Smellon#options 	ISO,TPIP	# OSI
1321.39Smellon#options 	EON		# OSI tunneling over IP
1331.39Smellon#options 	CCITT,LLC,HDLC	# X.25
1341.54Sthorpej#options 	NETATALK	# AppleTalk networking protocols
1351.54Sthorpej#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1361.54Sthorpej#options 	PPP_DEFLATE	# Deflate compression support for PPP
1371.54Sthorpej#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1381.43Smikel#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1391.2Stls
1401.61Smikel# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
1411.54Sthorpej#options 	TCP_COMPAT_42
1421.2Stls
1431.56Sperry# These options enable verbose messages for several subsystems.
1441.56Sperry# Warning, these may compile large string tables into the kernel!
1451.56Sperry#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
1461.56Sperry#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
1471.54Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1481.56Sperry#options 	SCSIVERBOSE	# human readable SCSI error messages
1491.54Sthorpej
1501.54Sthorpej# Kernel root file system and dump configuration.
1511.54Sthorpejconfig		netbsd	root on ? type ?
1521.54Sthorpej#config		netbsd	root on sd0a type ffs
1531.54Sthorpej#config		netbsd	root on ? type nfs
1541.54Sthorpej
1551.54Sthorpej#
1561.54Sthorpej# Device configuration
1571.54Sthorpej#
1581.43Smikel
1591.6Scgdmainbus0 at root
1601.6Scgd
1611.54Sthorpej#apm0	at mainbus0			# Advanced power management
1621.2Stls
1631.56Sperry
1641.56Sperry# Basic Bus Support
1651.56Sperry
1661.54Sthorpej# PCI bus support
1671.54Sthorpejpci*	at mainbus? bus ?
1681.54Sthorpejpci*	at pchb? bus ?
1691.5Scgdpci*	at ppb? bus ?
1701.54Sthorpej
1711.56Sperry# PCI bridges
1721.27Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
1731.75Sthorpejpceb*	at pci? dev ? function ?	# PCI-EISA bridges
1741.27Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
1751.54Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
1761.88Scgd# XXX 'puc's aren't really bridges, but there's no better place for them here
1771.88Scgdpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
1781.27Sthorpej
1791.54Sthorpej# EISA bus support
1801.54Sthorpejeisa*	at mainbus?
1811.75Sthorpejeisa*	at pceb?
1821.27Sthorpej
1831.54Sthorpej# ISA bus support
1841.54Sthorpejisa*	at mainbus?
1851.75Sthorpejisa*	at pceb?
1861.54Sthorpejisa*	at pcib?
1871.54Sthorpej
1881.56Sperry# PCMCIA bus support
1891.56Sperrypcmcia*	at pcic? controller ? socket ?
1901.56Sperry
1911.56Sperry# ISA PCMCIA controllers
1921.56Sperrypcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
1931.56Sperrypcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
1941.56Sperry
1951.56Sperry# ISA Plug-and-Play bus support
1961.56Sperryisapnp0	at isa?
1971.56Sperry
1981.56Sperry
1991.56Sperry# Coprocessor Support
2001.56Sperry
2011.56Sperry# Math Coprocessor support
2021.56Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
2031.56Sperry
2041.56Sperry
2051.56Sperry# Console Devices
2061.56Sperry
2071.56Sperry# ISA console.  You can only configure one of these!
2081.56Sperrypc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
2091.56Sperry#vt0	at isa? port 0x60 irq 1		# PCVT console driver
2101.90Sbouyer
2111.90Sbouyer# Keyboard layout configuration for pccons
2121.92Sbouyer#options 	FRENCH_KBD
2131.91Sbouyer#options 	FINNISH_KBD
2141.92Sbouyer#options 	GERMAN_KBD
2151.93Sperry#options 	NORWEGIAN_KBD
2161.56Sperry
2171.82Sdrochner#pcppi0	at isa?
2181.82Sdrochner#sysbeep0	at pcppi?
2191.56Sperry
2201.56Sperry# Serial Devices
2211.56Sperry
2221.56Sperry# PCI serial interfaces
2231.88Scgdcom*	at puc? port ?			# 16x450s on "universal" comm boards
2241.56Sperry#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
2251.54Sthorpej
2261.56Sperry# ISA Plug-and-Play serial interfaces
2271.56Sperrycom*	at isapnp?			# Modems and serial boards
2281.56Sperry
2291.56Sperry# PCMCIA serial interfaces
2301.56Sperrycom*	at pcmcia? function ?		# Modems and serial cards
2311.98Sthorpej
2321.98Sthorpejpcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
2331.98Sthorpejcom*	at pcmcom? slave ?		# ...and the slave devices
2341.56Sperry
2351.56Sperry# ISA serial interfaces
2361.56Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
2371.56Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
2381.56Sperrycom1	at isa? port 0x2f8 irq 3
2391.56Sperrycom2	at isa? port 0x3e8 irq 5
2401.56Sperry#com3	at isa? port 0x2e8 irq 9
2411.56Sperry#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
2421.56Sperry#com*	at ast? slave ?
2431.56Sperry#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
2441.56Sperry#com*	at boca? slave ?
2451.56Sperry#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
2461.56Sperry#com*	at rtfps? slave ?
2471.56Sperry#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
2481.56Sperry
2491.56Sperry
2501.56Sperry# Parallel Printer Interfaces
2511.88Scgd
2521.88Scgd# PCI parallel printer interfaces
2531.88Scgd#lpt*	at puc? port ?			# || ports on "universal" comm boards
2541.56Sperry
2551.56Sperry# ISA parallel printer interfaces
2561.56Sperry#lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
2571.56Sperry#lpt1	at isa? port 0x278
2581.56Sperry#lpt2	at isa? port 0x3bc
2591.56Sperry
2601.56Sperry
2611.56Sperry# SCSI Controllers and Devices
2621.5Scgd
2631.56Sperry# PCI SCSI controllers
2641.97Sdanteadv*	at pci? dev ? function ?	# AdvanSys 1200A[B], 9xx[U,UA] SCSI
2651.97Sdanteadw*	at pci? dev ? function ?	# AdvanSys 9xxUW SCSI
2661.56Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2671.56Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
2681.56Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
2691.56Sperryncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
2701.105Sthorpejpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
2711.2Stls
2721.56Sperry# EISA SCSI controllers
2731.56Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
2741.56Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
2751.56Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
2761.56Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
2771.2Stls
2781.56Sperry# PCMCIA SCSI controllers
2791.56Sperryaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
2801.81Senami
2811.81Senami# ISA Plug-and-Play SCSI controllers
2821.81Senamiaic*	at isapnp?			# Adaptec AHA-1520B
2831.54Sthorpej
2841.54Sthorpej# ISA SCSI controllers
2851.54Sthorpejaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
2861.54Sthorpejaha1	at isa? port 0x334 irq ? drq ?
2871.54Sthorpejahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
2881.54Sthorpejaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
2891.61Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
2901.54Sthorpejbha1	at isa? port 0x334 irq ? drq ?
2911.54Sthorpejsea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
2921.54Sthorpejuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
2931.72Sdrochneruha1	at isa? port 0x340 irq ? drq ?
2941.54Sthorpejwds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
2951.54Sthorpejwds1	at isa? port 0x358 irq 11 drq 5
2961.54Sthorpej
2971.56Sperry# SCSI bus support
2981.95Sdantescsibus* at adv?
2991.97Sdantescsibus* at adw?
3001.56Sperryscsibus* at aha?
3011.56Sperryscsibus* at ahb?
3021.56Sperryscsibus* at ahc?
3031.56Sperryscsibus* at aic?
3041.56Sperryscsibus* at bha?
3051.56Sperryscsibus* at isp?
3061.56Sperryscsibus* at ncr?
3071.105Sthorpejscsibus* at pcscp?
3081.56Sperryscsibus* at sea?
3091.56Sperryscsibus* at uha?
3101.56Sperryscsibus* at wds?
3111.56Sperry
3121.56Sperry# SCSI devices
3131.56Sperrysd*	at scsibus? target ? lun ?	# SCSI disk drives
3141.56Sperryst*	at scsibus? target ? lun ?	# SCSI tape drives
3151.56Sperrycd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
3161.56Sperry#ch*	at scsibus? target ? lun ?	# SCSI autochangers
3171.56Sperry#ss*	at scsibus? target ? lun ?	# SCSI scanners
3181.56Sperry#uk*	at scsibus? target ? lun ?	# SCSI unknown
3191.56Sperry
3201.56Sperry
3211.110Sabs# IDE and related devices
3221.114Skleink# PCI IDE controllers - see pciide(4) for supported hardware.
3231.99Sbouyer# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
3241.99Sbouyer# how to set up DMA modes for this chip. This may work, or may cause
3251.99Sbouyer# a machine hang with some controllers.
3261.99Sbouyerpciide* at pci ? dev ? function ? flags 0x0000
3271.56Sperry
3281.99Sbouyer# ISA Plug-and-Play IDE controllers
3291.99Sbouyerwdc*    at isapnp?
3301.99Sbouyer
3311.99Sbouyer# PCMCIA IDE controllers
3321.99Sbouyerwdc*    at pcmcia? function ?   
3331.99Sbouyer
3341.99Sbouyer# ISA ST506, ESDI, and IDE controllers
3351.117Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
3361.117Sbouyer# fall back to 16bits I/O if 32bits I/O are not functionnal).
3371.117Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
3381.117Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
3391.117Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
3401.56Sperry
3411.56Sperry# IDE drives
3421.110Sabs# Flags are used only with controllers that support DMA operations
3431.110Sabs# and mode settings (e.g. some pciide controllers)
3441.110Sabs# The lowest order four bits (rightmost digit) of the flags define the PIO
3451.110Sabs# mode to use, the next set of four bits the DMA mode and the third set the
3461.110Sabs# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
3471.110Sabs# to use, and the last bit must be 1 for this setting to be used.
3481.110Sabs# For DMA and UDMA, 0xf (1111) means 'disable'.
3491.110Sabs# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
3501.110Sabs# (0xc=1100, 0xa=1010, 0xf=1111)
3511.110Sabs# 0x0000 means "use whatever the drive claims to support".
3521.99Sbouyerwd*	at pciide? channel ? drive ?
3531.99Sbouyerwd*	at wdc? channel ? drive ?
3541.56Sperry
3551.56Sperry# ATAPI bus support
3561.99Sbouyeratapibus* at pciide? channel ?
3571.99Sbouyeratapibus* at wdc? channel ?
3581.56Sperry
3591.56Sperry# ATAPI devices
3601.56Sperrycd*	at atapibus? drive ?		# ATAPI CD-ROM drives
3611.73Scgdsd*	at atapibus? drive ?		# ATAPI disk drives
3621.56Sperry
3631.56Sperry
3641.56Sperry# Miscellaneous mass storage devices
3651.56Sperry
3661.56Sperry# ISA floppy
3671.56Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
3681.56Sperry#fdc1	at isa? port 0x370 irq ? drq ?
3691.56Sperryfd*	at fdc? drive ?			# the drives themselves
3701.56Sperry# some machines need you to do this instead of fd*
3711.56Sperry#fd0	at fdc0 drive 0
3721.56Sperry
3731.56Sperry# ISA CD-ROM devices
3741.56Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
3751.56Sperry
3761.56Sperry# ISA tape devices
3771.56Sperry# note: the wt driver conflicts unpleasantly with ed devices at the
3781.61Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
3791.56Sperry# uncomment it unless you are actually using it.
3801.72Sdrochner#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
3811.56Sperry
3821.56Sperry
3831.56Sperry# Network Interfaces
3841.56Sperry
3851.56Sperry# PCI network interfaces
3861.56Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
3871.56Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
3881.104Sheep*	at pci? dev ? function ?	# 3Com 3c59x
3891.104Sheex*	at pci? dev ? function ?	# 3Com 90x[B]
3901.85Sthorpejepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
3911.56Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
3921.56Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
3931.56Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
3941.56Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
3951.60Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
3961.2Stls
3971.56Sperry# EISA network interfaces
3981.56Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
3991.56Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
4001.2Stls
4011.56Sperry# ISA Plug-and-Play network interfaces
4021.56Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
4031.56Sperryne*	at isapnp?			# NE2000-compatible Ethernet
4041.115Sbadtr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
4051.20Smycroft
4061.56Sperry# PCMCIA network interfaces
4071.56Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
4081.80Senamimbe*	at pcmcia? function ?		# MB8696x based Ethernet
4091.56Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
4101.56Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
4111.54Sthorpej
4121.54Sthorpej# ISA network interfaces
4131.79Senamiate0	at isa? port 0x2a0 irq ?		# AT1700
4141.89Sthorpejcs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
4151.62Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
4161.65Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
4171.54Sthorpejel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
4181.54Sthorpejep0	at isa? port ? irq ?			# 3C509 ethernet cards
4191.77Saugustssef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
4201.77Saugustssai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
4211.79Senamifmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
4221.77Saugustssix0	at isa? port 0x300 irq 10		# EtherExpress/16
4231.68Sthorpejiy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
4241.67Sthorpejlc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
4251.82Sdrochner#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
4261.82Sdrochner#le*	at depca?
4271.83Sdrochner#nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
4281.82Sdrochner#le*	at nele?
4291.82Sdrochner#bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
4301.82Sdrochner#le*	at bicc?
4311.54Sthorpejne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
4321.54Sthorpejne1	at isa? port 0x300 irq 10
4331.64Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
4341.115Sbadtr0	at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
4351.115Sbadtr1	at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
4361.115Sbadtr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
4371.63Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
4381.63Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
4391.54Sthorpej
4401.94Sthorpej# MII/PHY support
4411.104Sheexphy*	at mii? phy ?			# 3Com internal PHYs
4421.94Sthorpejnsphy*	at mii? phy ?			# NS83840 PHYs
4431.94Sthorpejqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
4441.104Sheicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
4451.104Sheinphy*	at mii? phy ?			# Intel 82555 PHYs
4461.104Shelxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
4471.104Shesqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
4481.94Sthorpejtlphy*	at mii? phy ?			# ThunderLAN PHYs
4491.104Sheukphy*	at mii? phy ?			# generic unknown PHYs
4501.54Sthorpej
4511.56Sperry# Audio Devices
4521.54Sthorpej
4531.56Sperry# ISA Plug-and-Play audio devices
4541.54Sthorpej#guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
4551.54Sthorpej#sb*	at isapnp?			# SoundBlaster-compatible audio
4561.54Sthorpej
4571.56Sperry# ISA audio devices
4581.56Sperry#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
4591.56Sperry#pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
4601.56Sperry#pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
4611.56Sperry#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
4621.56Sperry#sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
4631.56Sperry#wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
4641.54Sthorpej
4651.54Sthorpej# Audio support
4661.54Sthorpej#audio*	at gus?
4671.54Sthorpej#audio*	at guspnp?
4681.54Sthorpej#audio*	at pas?
4691.54Sthorpej#audio*	at sb?
4701.54Sthorpej#audio*	at sp?
4711.54Sthorpej#audio*	at wss?
4721.54Sthorpej
4731.56Sperry# The spkr driver provides a simple tone interface to the built in speaker.
4741.82Sdrochner#spkr0	at pcppi?		# PC speaker
4751.56Sperry
4761.56Sperry
4771.56Sperry# Mice
4781.56Sperry
4791.56Sperry# ISA busmice
4801.106Sdrochner#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
4811.106Sdrochner#olms1	at isa? port 0x238 irq 5
4821.106Sdrochner#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
4831.106Sdrochner#omms1	at isa? port 0x238 irq 5
4841.106Sdrochner#opms0	at pc? irq 12		# PS/2 auxiliary port mouse
4851.56Sperry
4861.56Sperry
4871.56Sperry# Joysticks
4881.56Sperry
4891.56Sperry# ISA Plug-and-Play joysticks
4901.56Sperry#joy*	at isapnp?			# Game ports (usually on audio cards)
4911.2Stls
4921.56Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
4931.56Sperry#joy0	at isa? port 0x201
4941.2Stls
4951.20Smycroft
4961.56Sperry# Miscellaneous Devices
4971.20Smycroft
4981.56Sperry# Planetconnect Satellite receiver driver.
4991.56Sperry#satlink0 at isa? port 0x300 drq 1
5001.43Smikel
5011.21Smycroft
5021.54Sthorpej# Pull in optional local configuration
5031.22Smycroftinclude	"arch/i386/conf/GENERIC.local"
5041.37Sperry
5051.56Sperry
5061.56Sperry# Pseudo-Devices
5071.56Sperry
5081.56Sperry# disk/mass storage pseudo-devices
5091.56Sperry#pseudo-device	ccd		4	# concatenated/striped disk devices
5101.56Sperrypseudo-device	md		1	# memory disk device (ramdisk)
5111.56Sperry#pseudo-device	vnd		4	# disk-like interface to files
5121.56Sperry
5131.56Sperry# network pseudo-devices
5141.54Sthorpej#pseudo-device	bpfilter	8	# Berkeley packet filter
5151.54Sthorpej#pseudo-device	ipfilter		# IP filter (firewall) and NAT
5161.54Sthorpejpseudo-device	loop			# network loopback
5171.54Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
5181.56Sperrypseudo-device	sl		2	# Serial Line IP
5191.56Sperry#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
5201.56Sperry#pseudo-device	tun		2	# network tunneling over tty
5211.56Sperry
5221.56Sperry# miscellaneous pseudo-devices
5231.54Sthorpejpseudo-device	pty		64	# pseudo-terminals
5241.57Sexplorer#pseudo-device	tb		1	# tablet line discipline
5251.54Sthorpej#pseudo-device	rnd			# /dev/random and in-kernel generator
5261.58Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
527