INSTALL_TINY revision 1.17
11.17Scgd#	$NetBSD: INSTALL_TINY,v 1.17 2000/03/22 00:58:20 cgd Exp $
21.1Sperry#
31.1Sperry#	INSTALL_TINY - Tiny Installation kernel, suitable for 4M machines.
41.1Sperry#
51.1Sperry#	This kernel should be derived from INSTALL (which is derived
61.1Sperry#	from GENERIC) with some features commented out.
71.1Sperry#
81.1Sperry#	This kernel does NOT support X, mice, audio devices, non-NetBSD
91.1Sperry#	emulation; additionally, unlike INSTALL, it does not support
101.1Sperry#	PCMCIA or PCI so that it may fit on a 1.2M boot floppy; it is
111.1Sperry#	assumed that no machines with 1.2M floppy drives have PCMCIA
121.1Sperry#	or PCI.  Furthermore, this kernel does NOT support SCSI,
131.1Sperry#	and has a bare minimum of file system buffers.
141.1Sperry#
151.1Sperry
161.1Sperryinclude "arch/i386/conf/std.i386"
171.1Sperry
181.1Sperry# Enable the hooks used for initializing the root memory-disk.
191.1Sperryoptions 	MEMORY_DISK_HOOKS
201.1Sperryoptions 	MEMORY_DISK_IS_ROOT	# force root on memory disk
211.1Sperryoptions 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
221.15Smycroftoptions 	MINIROOTSIZE=3072	# size of memory disk, in blocks
231.1Sperry#options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
241.5Ssommerfe
251.5Ssommerfemakeoptions	COPTS="-Os"		# generates smaller code than -O2, -O1
261.1Sperry
271.1Sperrymaxusers	2		# estimated number of users
281.1Sperry
291.1Sperry# CPU support.  At least one is REQUIRED.
301.1Sperryoptions 	I386_CPU
311.1Sperryoptions 	I486_CPU
321.1Sperry#options 	I586_CPU
331.1Sperry#options 	I686_CPU
341.1Sperry
351.1Sperry# CPU-related options.
361.1Sperryoptions 	MATH_EMULATE	# floating point emulation
371.1Sperry#options 	VM86		# virtual 8086 emulation
381.1Sperry#options 	USER_LDT	# user-settable LDT; used by WINE
391.1Sperry# eliminate delay no-ops in I/O; recommended on all but very old machines
401.1Sperry#options 	DUMMY_NOPS
411.1Sperry
421.1Sperry# Misc. i386-specific options
431.1Sperry#options 	XSERVER		# X server support in console drivers
441.1Sperry
451.1Sperry# This option allows you to force a serial console at the specified
461.1Sperry# I/O address.
471.1Sperry#options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
481.1Sperry
491.1Sperry# The following options override the memory sizes passed in from the boot
501.1Sperry# block.  Use them *only* if the boot block is unable to determine the correct
511.1Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
521.1Sperry# memory if the extended BIOS data area is located at the top of base memory
531.1Sperry# (as is the case on most recent systems).
541.1Sperry#options 	REALBASEMEM=...	# size of base memory
551.1Sperry#options 	REALEXTMEM=...	# size of extended memory
561.1Sperry
571.1Sperry#options 	UCONSOLE	# users can use TIOCCONS (for xconsole)
581.1Sperryoptions 	INSECURE	# disable kernel security levels
591.1Sperry
601.1Sperryoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
611.1Sperry#options 	NTP		# NTP phase/frequency locked loop
621.1Sperry
631.1Sperry#options 	KTRACE		# system call tracing via ktrace(1)
641.1Sperry
651.1Sperry#options 	SYSVSEM		# System V-like semaphores
661.1Sperry#options 	SYSVSHM		# System V-like memory sharing
671.1Sperry#options 	SHMMAXPGS=1024	# 1024 pages is the default
681.1Sperry
691.1Sperry#options 	LKM		# loadable kernel modules
701.1Sperry
711.1Sperry# Diagnostic/debugging support options
721.1Sperry#options 	DIAGNOSTIC	# cheap kernel consistency checks
731.1Sperry#options 	DEBUG		# expensive debugging checks/support
741.1Sperry#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
751.1Sperry#options 	DDB		# in-kernel debugger
761.1Sperry#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
771.1Sperry#options 	KGDB		# remote debugger
781.1Sperry#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
791.1Sperry#makeoptions	DEBUG="-g"	# compile full symbol table
801.1Sperry
811.1Sperry# Compatibility options
821.1Sperry#options 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
831.1Sperry#options 	COMPAT_09	# NetBSD 0.9,
841.1Sperryoptions 	COMPAT_10	# NetBSD 1.0,
851.1Sperryoptions 	COMPAT_11	# NetBSD 1.1,
861.1Sperryoptions 	COMPAT_12	# NetBSD 1.2,
871.1Sperryoptions 	COMPAT_13	# NetBSD 1.3,
881.10Saugustssoptions 	COMPAT_14	# NetBSD 1.4,
891.1Sperry#options 	COMPAT_43	# and 4.3BSD
901.1Sperryoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
911.1Sperry
921.1Sperry#options 	COMPAT_SVR4	# binary compatibility with SVR4
931.1Sperry#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
941.1Sperry#options 	COMPAT_LINUX	# binary compatibility with Linux
951.1Sperry#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
961.1Sperry
971.1Sperry# File systems
981.1Sperryfile-system 	FFS		# UFS
991.1Sperry#file-system 	EXT2FS		# second extended file system (linux)
1001.1Sperry#file-system 	LFS		# log-structured file system
1011.1Sperryfile-system 	MFS		# memory file system
1021.1Sperryfile-system 	NFS		# Network File System client
1031.1Sperryfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1041.1Sperryfile-system 	MSDOSFS		# MS-DOS file system
1051.1Sperry#file-system 	FDESC		# /dev/fd
1061.1Sperryfile-system 	KERNFS		# /kern
1071.1Sperry#file-system 	NULLFS		# loopback file system
1081.1Sperry#file-system 	PORTAL		# portal filesystem (still experimental)
1091.1Sperry#file-system 	PROCFS		# /proc
1101.1Sperry#file-system 	UMAPFS		# NULLFS + uid and gid remapping
1111.1Sperry#file-system 	UNION		# union file system
1121.1Sperry
1131.1Sperry# File system options
1141.1Sperry#options 	QUOTA		# UFS quotas
1151.1Sperry#options 	NFSSERVER	# Network File System server
1161.1Sperry#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1171.1Sperry				# immutable) behave as system flags.
1181.1Sperry
1191.1Sperry# Networking options
1201.1Sperry#options 	GATEWAY		# packet forwarding
1211.1Sperryoptions 	INET		# IP + ICMP + TCP + UDP
1221.1Sperry#options 	MROUTING	# IP multicast routing
1231.1Sperry#options 	NS		# XNS
1241.1Sperry#options 	NSIP		# XNS tunneling over IP
1251.1Sperry#options 	ISO,TPIP	# OSI
1261.1Sperry#options 	EON		# OSI tunneling over IP
1271.1Sperry#options 	CCITT,LLC,HDLC	# X.25
1281.1Sperry#options 	NETATALK	# AppleTalk networking protocols
1291.1Sperry#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1301.1Sperry#options 	PPP_DEFLATE	# Deflate compression support for PPP
1311.1Sperry#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1321.1Sperry#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1331.1Sperry
1341.1Sperry# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
1351.1Sperry#options 	TCP_COMPAT_42
1361.1Sperry
1371.1Sperry# These options enable verbose messages for several subsystems.
1381.1Sperry# Warning, these may compile large string tables into the kernel!
1391.1Sperry#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
1401.1Sperry#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
1411.17Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1421.1Sperry#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1431.1Sperry#options 	SCSIVERBOSE	# human readable SCSI error messages
1441.1Sperry
1451.1Sperry# Squeeze...
1461.1Sperryoptions 	NVNODE=50
1471.1Sperryoptions		NBUF=20
1481.1Sperryoptions		BUFPAGES=20
1491.1Sperry
1501.1Sperry# Kernel root file system and dump configuration.
1511.1Sperryconfig		netbsd	root on ? type ?
1521.1Sperry#config		netbsd	root on sd0a type ffs
1531.1Sperry#config		netbsd	root on ? type nfs
1541.1Sperry
1551.1Sperry#
1561.1Sperry# Device configuration
1571.1Sperry#
1581.1Sperry
1591.1Sperrymainbus0 at root
1601.1Sperry
1611.1Sperry#apm0	at mainbus0			# Advanced power management
1621.1Sperry
1631.1Sperry
1641.1Sperry# Basic Bus Support
1651.1Sperry
1661.1Sperry# PCI bus support
1671.1Sperry#pci*	at mainbus? bus ?
1681.1Sperry#pci*	at pchb? bus ?
1691.1Sperry#pci*	at ppb? bus ?
1701.1Sperry
1711.1Sperry# PCI bridges
1721.1Sperry#pchb*	at pci? dev ? function ?	# PCI-Host bridges
1731.1Sperry#pceb*	at pci? dev ? function ?	# PCI-EISA bridges
1741.1Sperry#pcib*	at pci? dev ? function ?	# PCI-ISA bridges
1751.1Sperry#ppb*	at pci? dev ? function ?	# PCI-PCI bridges
1761.1Sperry# XXX 'puc's aren't really bridges, but there's no better place for them here
1771.1Sperry#puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
1781.1Sperry
1791.1Sperry# EISA bus support
1801.1Sperry#eisa*	at mainbus?
1811.1Sperry#eisa*	at pceb?
1821.1Sperry
1831.1Sperry# ISA bus support
1841.1Sperryisa*	at mainbus?
1851.1Sperry#eisa*	at pceb?
1861.1Sperry#isa*	at pcib?
1871.1Sperry
1881.1Sperry# PCMCIA bus support
1891.1Sperry#pcmcia*	at pcic? controller ? socket ?
1901.1Sperry
1911.1Sperry# ISA PCMCIA controllers
1921.1Sperry#pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
1931.1Sperry#pcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
1941.1Sperry
1951.1Sperry# ISA Plug-and-Play bus support
1961.1Sperry#isapnp0	at isa?
1971.1Sperry
1981.1Sperry
1991.1Sperry# Coprocessor Support
2001.1Sperry
2011.1Sperry# Math Coprocessor support
2021.1Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
2031.1Sperry
2041.1Sperry
2051.1Sperry# Console Devices
2061.1Sperry
2071.1Sperry# ISA console.  You can only configure one of these!
2081.1Sperrypc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
2091.1Sperry#vt0	at isa? port 0x60 irq 1		# PCVT console driver
2101.1Sperry
2111.1Sperry#pcppi0	at isa?
2121.1Sperry#sysbeep0	at pcppi?
2131.1Sperry
2141.1Sperry
2151.1Sperry# Serial Devices
2161.1Sperry
2171.1Sperry# PCI serial interfaces
2181.12Ssoren#com*	at puc? port ?			# 16x50s on "universal" comm boards
2191.1Sperry#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
2201.1Sperry
2211.1Sperry# ISA Plug-and-Play serial interfaces
2221.1Sperry#com*	at isapnp?			# Modems and serial boards
2231.1Sperry
2241.1Sperry# PCMCIA serial interfaces
2251.1Sperry#com*	at pcmcia? function ?		# Modems and serial cards
2261.1Sperry
2271.1Sperry# ISA serial interfaces
2281.1Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
2291.1Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
2301.1Sperrycom1	at isa? port 0x2f8 irq 3
2311.1Sperrycom2	at isa? port 0x3e8 irq 5
2321.1Sperry#com3	at isa? port 0x2e8 irq 9
2331.1Sperry#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
2341.1Sperry#com*	at ast? slave ?
2351.1Sperry#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
2361.1Sperry#com*	at boca? slave ?
2371.1Sperry#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
2381.1Sperry#com*	at rtfps? slave ?
2391.1Sperry#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
2401.1Sperry
2411.1Sperry
2421.1Sperry# Parallel Printer Interfaces
2431.1Sperry
2441.1Sperry# PCI parallel printer interfaces
2451.1Sperry#lpt*	at puc? port ?			# || ports on "universal" comm boards
2461.1Sperry
2471.1Sperry# ISA parallel printer interfaces
2481.1Sperry#lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
2491.1Sperry#lpt1	at isa? port 0x278
2501.1Sperry#lpt2	at isa? port 0x3bc
2511.1Sperry
2521.1Sperry
2531.1Sperry# SCSI Controllers and Devices
2541.1Sperry
2551.1Sperry# PCI SCSI controllers
2561.1Sperry#ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2571.1Sperry#bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
2581.11Sad#dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
2591.1Sperry#isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
2601.1Sperry#ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
2611.1Sperry
2621.1Sperry# EISA SCSI controllers
2631.1Sperry#ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
2641.1Sperry#ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
2651.1Sperry#bha*	at eisa? slot ?			# BusLogic 7xx SCSI
2661.13Sad#dpt*	at eisa? slot ?			# DPT SmartCache/SmartRAID
2671.1Sperry#uha*	at eisa? slot ?			# UltraStor 24f SCSI
2681.1Sperry
2691.1Sperry# PCMCIA SCSI controllers
2701.1Sperry#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
2711.1Sperry
2721.1Sperry# ISA Plug-and-Play SCSI controllers
2731.1Sperry#aic*	at isapnp?			# Adaptec AHA-1520B
2741.1Sperry
2751.1Sperry# ISA SCSI controllers
2761.1Sperry#aha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
2771.1Sperry#aha1	at isa? port 0x334 irq ? drq ?
2781.1Sperry#ahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
2791.1Sperry#aic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
2801.1Sperry#bha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
2811.1Sperry#bha1	at isa? port 0x334 irq ? drq ?
2821.14Sad# The "nca" and "dpt" probes might give false hits or hang your machine.
2831.14Sad#dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
2841.14Sad#nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 contoller
2851.14Sad#nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
2861.1Sperry#sea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
2871.1Sperry#uha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
2881.1Sperry#uha1	at isa? port 0x340 irq ? drq ?
2891.1Sperry#wds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
2901.1Sperry#wds1	at isa? port 0x358 irq 11 drq 5
2911.1Sperry
2921.1Sperry# SCSI bus support
2931.1Sperry#scsibus* at aha?
2941.1Sperry#scsibus* at ahb?
2951.1Sperry#scsibus* at ahc?
2961.1Sperry#scsibus* at aic?
2971.1Sperry#scsibus* at bha?
2981.11Sad#scsibus* at dpt?
2991.1Sperry#scsibus* at isp?
3001.14Sad#scsibus* at nca?
3011.1Sperry#scsibus* at ncr?
3021.1Sperry#scsibus* at sea?
3031.1Sperry#scsibus* at uha?
3041.1Sperry#scsibus* at wds?
3051.1Sperry
3061.1Sperry# SCSI devices
3071.1Sperry#sd*	at scsibus? target ? lun ?	# SCSI disk drives
3081.1Sperry#st*	at scsibus? target ? lun ?	# SCSI tape drives
3091.1Sperry#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
3101.1Sperry#ch*	at scsibus? target ? lun ?	# SCSI autochangers
3111.1Sperry#ss*	at scsibus? target ? lun ?	# SCSI scanners
3121.1Sperry#uk*	at scsibus? target ? lun ?	# SCSI unknown
3131.1Sperry
3141.16Sad# RAID controllers and devices
3151.16Sad#cac*	at pci? dev ? function ?	# Compaq array controller
3161.16Sad#ca*	at cac? unit ?			# Compaq array disk device
3171.1Sperry
3181.3Sabs# IDE and related devices
3191.1Sperry
3201.8Sbouyer# ST506, ESDI, and ISA IDE controllers
3211.8Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
3221.8Sbouyer# fall back to 16bits I/O if 32bits I/O are not functionnal).
3231.8Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
3241.8Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
3251.8Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
3261.1Sperry
3271.1Sperry# IDE drives
3281.1Sperrywd*	at wdc? drive ?			# the drives themselves
3291.1Sperry
3301.1Sperry# ATAPI bus support
3311.1Sperryatapibus* at wdc?
3321.1Sperry
3331.1Sperry# ATAPI devices
3341.1Sperrycd*	at atapibus? drive ?		# ATAPI CD-ROM drives
3351.1Sperry#sd*	at atapibus? drive ?		# ATAPI disk drives
3361.1Sperry
3371.1Sperry
3381.1Sperry# Miscellaneous mass storage devices
3391.1Sperry
3401.1Sperry# ISA floppy
3411.1Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
3421.1Sperry#fdc1	at isa? port 0x370 irq ? drq ?
3431.1Sperryfd*	at fdc? drive ?			# the drives themselves
3441.1Sperry# some machines need you to do this instead of fd*
3451.1Sperry#fd0	at fdc0 drive 0
3461.1Sperry
3471.1Sperry# ISA CD-ROM devices
3481.1Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
3491.1Sperry
3501.1Sperry# ISA tape devices
3511.1Sperry# note: the wt driver conflicts unpleasantly with ed devices at the
3521.1Sperry# same I/O address. The probe reprograms their EEPROMs. Don't
3531.1Sperry# uncomment it unless you are actually using it.
3541.1Sperry#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
3551.1Sperry
3561.1Sperry
3571.1Sperry# Network Interfaces
3581.1Sperry
3591.1Sperry# PCI network interfaces
3601.1Sperry#de*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
3611.1Sperry#en*	at pci? dev ? function ?	# ENI/Adaptec ATM
3621.1Sperry#ep*	at pci? dev ? function ?	# 3Com 3c59x/3c90x Ethernet
3631.1Sperry#fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
3641.1Sperry#fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
3651.1Sperry#le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
3661.1Sperry#ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
3671.1Sperry#tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
3681.1Sperry
3691.1Sperry# EISA network interfaces
3701.1Sperry#ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
3711.1Sperry#fea*	at eisa? slot ?			# DEC DEFEA FDDI
3721.1Sperry
3731.1Sperry# ISA Plug-and-Play network interfaces
3741.1Sperry#ep*	at isapnp?			# 3Com 3c509 Ethernet
3751.1Sperry#ne*	at isapnp?			# NE2000-compatible Ethernet
3761.1Sperry
3771.1Sperry# PCMCIA network interfaces
3781.1Sperry#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
3791.1Sperry#mbe*	at pcmcia? function ?		# MB8696x based Ethernet
3801.1Sperry#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
3811.1Sperry#sm*	at pcmcia? function ?		# Megahertz Ethernet
3821.1Sperry
3831.1Sperry# ISA network interfaces
3841.1Sperryate0	at isa? port 0x2a0 irq ?		# AT1700
3851.1Sperryec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
3861.1Sperryeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
3871.1Sperryel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
3881.1Sperryep0	at isa? port ? irq ?			# 3C509 ethernet cards
3891.1Sperryef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
3901.1Sperryai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
3911.1Sperryfmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
3921.1Sperryix0	at isa? port 0x300 irq 10		# EtherExpress/16
3931.1Sperryiy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
3941.1Sperrylc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
3951.1Sperry#depca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
3961.1Sperry#le*	at depca?
3971.1Sperry#nele0	at isa? port 0x320 irq 9 drq 7		# NE2100
3981.1Sperry#le*	at nele?
3991.1Sperry#bicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
4001.1Sperry#le*	at bicc?
4011.1Sperryne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
4021.1Sperryne1	at isa? port 0x300 irq 10
4031.1Sperrysm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
4041.1Sperrywe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
4051.1Sperrywe1	at isa? port 0x300 iomem 0xcc000 irq 10
4061.1Sperry
4071.1Sperry# MII bus support
4081.1Sperry#mii*	at tl?
4091.1Sperry
4101.1Sperry# MII PHY network interfaces
4111.1Sperry#tlphy*	at mii? dev ?			# ThunderLAN PHYs
4121.1Sperry#nsphy*	at mii? dev ?			# NS and compatible PHYs
4131.1Sperry
4141.1Sperry
4151.1Sperry# Audio Devices
4161.1Sperry
4171.1Sperry# ISA Plug-and-Play audio devices
4181.1Sperry#guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
4191.1Sperry#sb*	at isapnp?			# SoundBlaster-compatible audio
4201.1Sperry
4211.1Sperry# ISA audio devices
4221.1Sperry#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
4231.1Sperry#pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
4241.1Sperry#pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
4251.1Sperry#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
4261.1Sperry#sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
4271.1Sperry#wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
4281.1Sperry
4291.1Sperry# Audio support
4301.1Sperry#audio*	at gus?
4311.1Sperry#audio*	at guspnp?
4321.1Sperry#audio*	at pas?
4331.1Sperry#audio*	at sb?
4341.1Sperry#audio*	at sp?
4351.1Sperry#audio*	at wss?
4361.1Sperry
4371.1Sperry# The spkr driver provides a simple tone interface to the built in speaker.
4381.1Sperry#spkr0	at pcppi?		# PC speaker
4391.1Sperry
4401.1Sperry
4411.1Sperry# Mice
4421.1Sperry
4431.1Sperry# ISA busmice
4441.2Sdrochner#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
4451.2Sdrochner#olms1	at isa? port 0x238 irq 5
4461.2Sdrochner#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
4471.2Sdrochner#omms1	at isa? port 0x238 irq 5
4481.2Sdrochner#opms0	at pc? irq 12		# PS/2 auxiliary port mouse
4491.1Sperry
4501.1Sperry
4511.1Sperry# Joysticks
4521.1Sperry
4531.1Sperry# ISA Plug-and-Play joysticks
4541.1Sperry#joy*	at isapnp?			# Game ports (usually on audio cards)
4551.1Sperry
4561.1Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
4571.1Sperry#joy0	at isa? port 0x201
4581.1Sperry
4591.1Sperry
4601.1Sperry# Miscellaneous Devices
4611.1Sperry
4621.1Sperry# Planetconnect Satellite receiver driver.
4631.1Sperry#satlink0 at isa? port 0x300 drq 1
4641.1Sperry
4651.1Sperry
4661.1Sperry# Pull in optional local configuration
4671.1Sperryinclude	"arch/i386/conf/GENERIC.local"
4681.1Sperry
4691.1Sperry
4701.1Sperry# Pseudo-Devices
4711.1Sperry
4721.1Sperry# disk/mass storage pseudo-devices
4731.1Sperry#pseudo-device	ccd		4	# concatenated/striped disk devices
4741.1Sperrypseudo-device	md		1	# memory disk device (ramdisk)
4751.1Sperry#pseudo-device	vnd		4	# disk-like interface to files
4761.1Sperry
4771.1Sperry# network pseudo-devices
4781.1Sperry#pseudo-device	bpfilter	8	# Berkeley packet filter
4791.1Sperry#pseudo-device	ipfilter		# IP filter (firewall) and NAT
4801.1Sperrypseudo-device	loop			# network loopback
4811.1Sperrypseudo-device	ppp		2	# Point-to-Point Protocol
4821.1Sperrypseudo-device	sl		2	# Serial Line IP
4831.1Sperry#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
4841.1Sperry#pseudo-device	tun		2	# network tunneling over tty
4851.1Sperry
4861.1Sperry# miscellaneous pseudo-devices
4871.1Sperrypseudo-device	pty		64	# pseudo-terminals
4881.1Sperry#pseudo-device	tb		1	# tablet line discipline
4891.1Sperry#pseudo-device	rnd			# /dev/random and in-kernel generator
4901.1Sperry#options 	RND_COM			# use "com" randomness as well (BROKEN)
491