INSTALL revision 1.163
11.163Sad#	$NetBSD: INSTALL,v 1.163 2001/02/04 17:05:15 ad 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.154Sabsmakeoptions 	COPTS="-Os"		# Optimise for space. Implies -O2
151.153Sabs
161.54Sthorpej# Enable the hooks used for initializing the root memory-disk.
171.54Sthorpejoptions 	MEMORY_DISK_HOOKS
181.54Sthorpejoptions 	MEMORY_DISK_IS_ROOT	# force root on memory disk
191.54Sthorpejoptions 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
201.148Scyberoptions 	MINIROOTSIZE=4096	# size of memory disk, in blocks
211.54Sthorpej#options 	MINIROOTSIZE=2880	# 1.44M, same as a floppy
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.154Sabsoptions 		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.144Shubertf#options 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
791.149Smycroftoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
801.54Sthorpej#options 	KGDB		# remote debugger
811.54Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
821.154Sabs#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.121Saugustssoptions 	COMPAT_14	# NetBSD 1.4,
921.39Smellon#options 	COMPAT_43	# and 4.3BSD
931.84Sveegooptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
941.39Smellon
951.39Smellon#options 	COMPAT_SVR4	# binary compatibility with SVR4
961.39Smellon#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
971.39Smellon#options 	COMPAT_LINUX	# binary compatibility with Linux
981.39Smellon#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
991.2Stls
1001.54Sthorpej# File systems
1011.32Sthorpejfile-system 	FFS		# UFS
1021.101Srvbfile-system 	EXT2FS		# second extended file system (linux)
1031.43Smikel#file-system 	LFS		# log-structured file system
1041.32Sthorpejfile-system 	MFS		# memory file system
1051.32Sthorpejfile-system 	NFS		# Network File System client
1061.116Schristosfile-system 	NTFS		# Windows/NT Filesystem
1071.101Srvbfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1081.101Srvbfile-system 	MSDOSFS		# MS-DOS file system
1091.59Sperry#file-system 	FDESC		# /dev/fd
1101.32Sthorpejfile-system 	KERNFS		# /kern
1111.43Smikel#file-system 	NULLFS		# loopback file system
1121.43Smikel#file-system 	PORTAL		# portal filesystem (still experimental)
1131.43Smikel#file-system 	PROCFS		# /proc
1141.43Smikel#file-system 	UMAPFS		# NULLFS + uid and gid remapping
1151.43Smikel#file-system 	UNION		# union file system
1161.2Stls
1171.154Sabs# Filesystem options
1181.39Smellon#options 	QUOTA		# UFS quotas
1191.39Smellon#options 	NFSSERVER	# Network File System server
1201.154Sabs#options 	NFS_V2_ONLY	# Exclude NFS3 and NQNFS code to save space
1211.154Sabsoptions 	VNODE_OP_NOINLINE # Save space by not inlining vnode op calls
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.134Sitojunoptions 	INET6		# IPv6
1291.39Smellon#options 	MROUTING	# IP multicast routing
1301.39Smellon#options 	NS		# XNS
1311.39Smellon#options 	NSIP		# XNS tunneling over IP
1321.39Smellon#options 	ISO,TPIP	# OSI
1331.39Smellon#options 	EON		# OSI tunneling over IP
1341.39Smellon#options 	CCITT,LLC,HDLC	# X.25
1351.54Sthorpej#options 	NETATALK	# AppleTalk networking protocols
1361.54Sthorpej#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1371.54Sthorpej#options 	PPP_DEFLATE	# Deflate compression support for PPP
1381.54Sthorpej#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1391.43Smikel#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1401.2Stls
1411.61Smikel# Compatibility with 4.2BSD implementation of TCP/IP.  Not recommended.
1421.54Sthorpej#options 	TCP_COMPAT_42
1431.2Stls
1441.56Sperry# These options enable verbose messages for several subsystems.
1451.56Sperry# Warning, these may compile large string tables into the kernel!
1461.56Sperry#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
1471.143Saugustss#options 	MIIVERBOSE	# verbose PHY autoconfig messages
1481.56Sperry#options 	PCIVERBOSE	# verbose PCI device autoconfig messages
1491.139Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1501.54Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1511.56Sperry#options 	SCSIVERBOSE	# human readable SCSI error messages
1521.160Sad#options	I2OVERBOSE	# verbose I2O driver messages
1531.54Sthorpej
1541.54Sthorpej# Kernel root file system and dump configuration.
1551.54Sthorpejconfig		netbsd	root on ? type ?
1561.54Sthorpej#config		netbsd	root on sd0a type ffs
1571.54Sthorpej#config		netbsd	root on ? type nfs
1581.54Sthorpej
1591.54Sthorpej#
1601.54Sthorpej# Device configuration
1611.54Sthorpej#
1621.43Smikel
1631.6Scgdmainbus0 at root
1641.6Scgd
1651.54Sthorpej#apm0	at mainbus0			# Advanced power management
1661.2Stls
1671.56Sperry
1681.56Sperry# Basic Bus Support
1691.56Sperry
1701.54Sthorpej# PCI bus support
1711.54Sthorpejpci*	at mainbus? bus ?
1721.54Sthorpejpci*	at pchb? bus ?
1731.5Scgdpci*	at ppb? bus ?
1741.54Sthorpej
1751.56Sperry# PCI bridges
1761.27Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
1771.75Sthorpejpceb*	at pci? dev ? function ?	# PCI-EISA bridges
1781.27Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
1791.54Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
1801.88Scgd# XXX 'puc's aren't really bridges, but there's no better place for them here
1811.88Scgdpuc*	at pci? dev ? function ?	# PCI "universal" comm. cards
1821.27Sthorpej
1831.54Sthorpej# EISA bus support
1841.54Sthorpejeisa*	at mainbus?
1851.75Sthorpejeisa*	at pceb?
1861.27Sthorpej
1871.54Sthorpej# ISA bus support
1881.54Sthorpejisa*	at mainbus?
1891.75Sthorpejisa*	at pceb?
1901.54Sthorpejisa*	at pcib?
1911.54Sthorpej
1921.56Sperry# PCMCIA bus support
1931.56Sperrypcmcia*	at pcic? controller ? socket ?
1941.118Schristospcmcia*	at tcic? controller ? socket ?
1951.56Sperry
1961.56Sperry# ISA PCMCIA controllers
1971.159Sfvdlpcic0 	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
1981.159Sfvdlpcic1 	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
1991.159Sfvdltcic0 	at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
2001.118Schristos
2011.118Schristos# PCI PCMCIA controllers
2021.118Schristospcic0	at pci? dev? function ?
2031.56Sperry
2041.56Sperry# ISA Plug-and-Play bus support
2051.56Sperryisapnp0	at isa?
2061.56Sperry
2071.118Schristos# ISA Plug-and-Play PCMCIA controllers
2081.118Schristospcic*	at isapnp?
2091.56Sperry
2101.56Sperry# Coprocessor Support
2111.56Sperry
2121.56Sperry# Math Coprocessor support
2131.56Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
2141.56Sperry
2151.56Sperry
2161.56Sperry# Console Devices
2171.56Sperry
2181.147Smycroft# ISA console
2191.56Sperrypc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
2201.90Sbouyer
2211.90Sbouyer# Keyboard layout configuration for pccons
2221.92Sbouyer#options 	FRENCH_KBD
2231.91Sbouyer#options 	FINNISH_KBD
2241.92Sbouyer#options 	GERMAN_KBD
2251.93Sperry#options 	NORWEGIAN_KBD
2261.56Sperry
2271.118Schristos# wscons
2281.118Schristos#pckbc0	at isa?			# pc keyboard controller
2291.118Schristos#pckbd*	at pckbc?		# PC keyboard
2301.118Schristos# "opms" should not be enabled together with "pms" or "pmsi"
2311.118Schristos#pms*		at pckbc?		# PS/2 mouse for wsmouse
2321.118Schristos#pmsi*		at pckbc?	# PS/2 "Intelli"mouse for wsmouse
2331.118Schristos#opms*		at pckbc?		# backwards compatible PS/2 mouse
2341.118Schristos#vga0		at isa?
2351.118Schristos#vga*		at pci?
2361.118Schristos#pcdisplay0	at isa?			# CGA, MDA, EGA, HGA
2371.118Schristos#wsdisplay*	at vga? console ?
2381.118Schristos#wsdisplay*	at pcdisplay? console ?
2391.118Schristos#wskbd*	at pckbd? console ?
2401.118Schristos#wsmouse*	at pms?
2411.118Schristos#wsmouse*	at pmsi?
2421.118Schristos
2431.82Sdrochner#pcppi0	at isa?
2441.82Sdrochner#sysbeep0	at pcppi?
2451.56Sperry
2461.56Sperry# Serial Devices
2471.56Sperry
2481.56Sperry# PCI serial interfaces
2491.133Ssorencom*	at puc? port ?			# 16x50s on "universal" comm boards
2501.56Sperry#cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
2511.54Sthorpej
2521.56Sperry# ISA Plug-and-Play serial interfaces
2531.56Sperrycom*	at isapnp?			# Modems and serial boards
2541.56Sperry
2551.56Sperry# PCMCIA serial interfaces
2561.56Sperrycom*	at pcmcia? function ?		# Modems and serial cards
2571.98Sthorpej
2581.98Sthorpejpcmcom*	at pcmcia? function ?		# PCMCIA multi-port serial cards
2591.98Sthorpejcom*	at pcmcom? slave ?		# ...and the slave devices
2601.56Sperry
2611.56Sperry# ISA serial interfaces
2621.56Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
2631.56Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
2641.56Sperrycom1	at isa? port 0x2f8 irq 3
2651.56Sperrycom2	at isa? port 0x3e8 irq 5
2661.56Sperry#com3	at isa? port 0x2e8 irq 9
2671.56Sperry#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
2681.56Sperry#com*	at ast? slave ?
2691.56Sperry#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
2701.56Sperry#com*	at boca? slave ?
2711.118Schristos#tcom0	at isa? port 0x100 irq 7	# TC-800 8-port serial cards
2721.118Schristos#com*	at tcom? slave ?
2731.56Sperry#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
2741.56Sperry#com*	at rtfps? slave ?
2751.56Sperry#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
2761.56Sperry
2771.56Sperry
2781.56Sperry# Parallel Printer Interfaces
2791.88Scgd
2801.88Scgd# PCI parallel printer interfaces
2811.88Scgd#lpt*	at puc? port ?			# || ports on "universal" comm boards
2821.56Sperry
2831.56Sperry# ISA parallel printer interfaces
2841.56Sperry#lpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
2851.56Sperry#lpt1	at isa? port 0x278
2861.56Sperry#lpt2	at isa? port 0x3bc
2871.56Sperry
2881.160Sad# I2O devices
2891.160Sadiop*	at pci? dev ? function ?	# I/O processor
2901.160Sadiopsp*	at iop? tid ?			# SCSI/FC-AL ports
2911.161Sadld*	at iop? tid ?			# Block devices
2921.56Sperry
2931.56Sperry# SCSI Controllers and Devices
2941.5Scgd
2951.56Sperry# PCI SCSI controllers
2961.118Schristosadv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
2971.142Sdanteadw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
2981.56Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2991.56Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
3001.126Saddpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
3011.56Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
3021.146Sfvdl#ncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
3031.146Sfvdlsiop*	at pci? dev ? function ?	# NCR 53c8xx SCSI (new driver)
3041.105Sthorpejpcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
3051.2Stls
3061.56Sperry# EISA SCSI controllers
3071.56Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
3081.56Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
3091.56Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
3101.135Saddpt*	at eisa? slot ?			# DPT SmartCache/SmartRAID
3111.56Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
3121.2Stls
3131.56Sperry# PCMCIA SCSI controllers
3141.56Sperryaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
3151.81Senami
3161.81Senami# ISA Plug-and-Play SCSI controllers
3171.118Schristosaha*	at isapnp? 			# Adaptec AHA-154[02
3181.81Senamiaic*	at isapnp?			# Adaptec AHA-1520B
3191.54Sthorpej
3201.54Sthorpej# ISA SCSI controllers
3211.118Schristosadv0	at isa? port ? irq ? drq ?	# AdvanSys APB-514[02]
3221.54Sthorpejaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
3231.54Sthorpejaha1	at isa? port 0x334 irq ? drq ?
3241.54Sthorpejahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
3251.54Sthorpejaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
3261.61Smikelbha0	at isa? port 0x330 irq ? drq ?	# BusLogic [457]4X SCSI
3271.54Sthorpejbha1	at isa? port 0x334 irq ? drq ?
3281.136Sad# The "nca" and "dpt" probes might give false hits or hang your machine.
3291.136Sad#dpt0	at isa? port 0x170 irq ? drq ?	# DPT SmartCache/SmartRAID
3301.150Sitohy#nca0	at isa? port 0x360 irq 15	# Port-mapped NCR 53C80 controller
3311.128Sdrochner#nca1	at isa? iomem 0xd8000 irq 5	# Memory-mapped controller (T128, etc.)
3321.54Sthorpejsea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
3331.54Sthorpejuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
3341.72Sdrochneruha1	at isa? port 0x340 irq ? drq ?
3351.54Sthorpejwds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
3361.54Sthorpejwds1	at isa? port 0x358 irq 11 drq 5
3371.54Sthorpej
3381.56Sperry# SCSI bus support
3391.95Sdantescsibus* at adv?
3401.97Sdantescsibus* at adw?
3411.56Sperryscsibus* at aha?
3421.56Sperryscsibus* at ahb?
3431.56Sperryscsibus* at ahc?
3441.56Sperryscsibus* at aic?
3451.56Sperryscsibus* at bha?
3461.126Sadscsibus* at dpt?
3471.160Sadscsibus* at iopsp?
3481.56Sperryscsibus* at isp?
3491.129Sdrochner#scsibus* at nca?
3501.146Sfvdl#scsibus* at ncr?
3511.146Sfvdlscsibus* at siop?
3521.105Sthorpejscsibus* at pcscp?
3531.56Sperryscsibus* at sea?
3541.56Sperryscsibus* at uha?
3551.56Sperryscsibus* at wds?
3561.56Sperry
3571.56Sperry# SCSI devices
3581.56Sperrysd*	at scsibus? target ? lun ?	# SCSI disk drives
3591.56Sperryst*	at scsibus? target ? lun ?	# SCSI tape drives
3601.56Sperrycd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
3611.56Sperry#ch*	at scsibus? target ? lun ?	# SCSI autochangers
3621.56Sperry#ss*	at scsibus? target ? lun ?	# SCSI scanners
3631.56Sperry#uk*	at scsibus? target ? lun ?	# SCSI unknown
3641.56Sperry
3651.155Sad
3661.138Sad# RAID controllers and devices
3671.155Sadcac*	at eisa?			# Compaq EISA array controllers
3681.155Sadcac*	at pci? dev ? function ?	# Compaq PCI array controllers
3691.163Sadmlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
3701.158Sadtwe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
3711.155Sad
3721.163Sadld*	at cac? unit ?			# logical disk devices
3731.163Sadld*	at twe? unit ?
3741.163Sadld*	at mlx? unit ?
3751.56Sperry
3761.110Sabs# IDE and related devices
3771.114Skleink# PCI IDE controllers - see pciide(4) for supported hardware.
3781.99Sbouyer# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
3791.99Sbouyer# how to set up DMA modes for this chip. This may work, or may cause
3801.99Sbouyer# a machine hang with some controllers.
3811.99Sbouyerpciide* at pci ? dev ? function ? flags 0x0000
3821.56Sperry
3831.99Sbouyer# ISA Plug-and-Play IDE controllers
3841.118Schristoswdc*	at isapnp?
3851.99Sbouyer
3861.99Sbouyer# PCMCIA IDE controllers
3871.99Sbouyerwdc*    at pcmcia? function ?   
3881.99Sbouyer
3891.99Sbouyer# ISA ST506, ESDI, and IDE controllers
3901.117Sbouyer# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
3911.150Sitohy# fall back to 16bits I/O if 32bits I/O are not functional).
3921.117Sbouyer# Some controllers pass the initial 32bit test, but will fail later.
3931.117Sbouyerwdc0	at isa? port 0x1f0 irq 14 flags 0x00
3941.117Sbouyerwdc1	at isa? port 0x170 irq 15 flags 0x00
3951.56Sperry
3961.56Sperry# IDE drives
3971.110Sabs# Flags are used only with controllers that support DMA operations
3981.110Sabs# and mode settings (e.g. some pciide controllers)
3991.110Sabs# The lowest order four bits (rightmost digit) of the flags define the PIO
4001.110Sabs# mode to use, the next set of four bits the DMA mode and the third set the
4011.110Sabs# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
4021.110Sabs# to use, and the last bit must be 1 for this setting to be used.
4031.110Sabs# For DMA and UDMA, 0xf (1111) means 'disable'.
4041.110Sabs# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
4051.110Sabs# (0xc=1100, 0xa=1010, 0xf=1111)
4061.110Sabs# 0x0000 means "use whatever the drive claims to support".
4071.118Schristoswd*	at wdc? channel ? drive ? flags 0x0000
4081.118Schristoswd*	at pciide? channel ? drive ? flags 0x0000
4091.56Sperry
4101.56Sperry# ATAPI bus support
4111.118Schristosatapibus* at wdc? channel ?
4121.99Sbouyeratapibus* at pciide? channel ?
4131.56Sperry
4141.56Sperry# ATAPI devices
4151.118Schristos# flags have the same meaning as for IDE drives.
4161.118Schristoscd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
4171.118Schristossd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
4181.118Schristos#uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
4191.56Sperry
4201.56Sperry
4211.56Sperry# Miscellaneous mass storage devices
4221.56Sperry
4231.56Sperry# ISA floppy
4241.56Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
4251.56Sperry#fdc1	at isa? port 0x370 irq ? drq ?
4261.56Sperryfd*	at fdc? drive ?			# the drives themselves
4271.56Sperry# some machines need you to do this instead of fd*
4281.56Sperry#fd0	at fdc0 drive 0
4291.56Sperry
4301.56Sperry# ISA CD-ROM devices
4311.56Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
4321.56Sperry
4331.56Sperry# ISA tape devices
4341.56Sperry# note: the wt driver conflicts unpleasantly with ed devices at the
4351.61Smikel# same I/O address. The probe reprograms their EEPROMs. Don't
4361.56Sperry# uncomment it unless you are actually using it.
4371.72Sdrochner#wt0	at isa? port 0x308 irq 5 drq 1	# Archive and Wangtek QIC tape drives
4381.56Sperry
4391.56Sperry
4401.56Sperry# Network Interfaces
4411.56Sperry
4421.56Sperry# PCI network interfaces
4431.56Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
4441.56Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
4451.104Sheep*	at pci? dev ? function ?	# 3Com 3c59x
4461.104Sheex*	at pci? dev ? function ?	# 3Com 90x[B]
4471.85Sthorpejepic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
4481.118Schristosesh*	at pci? dev ? function ?	# Essential HIPPI card
4491.56Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
4501.56Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
4511.56Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
4521.56Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
4531.122Sthorpejsip*	at pci? dev ? function ?	# SiS 900 Ethernet
4541.60Sbouyertl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
4551.130Sthorpejtlp*	at pci? dev ? function ?	# DECchip 21x4x (and clones) Ethernet
4561.130Sthorpej#options 	TLP_MATCH_21040
4571.130Sthorpej#options 	TLP_MATCH_21041
4581.130Sthorpej#options 	TLP_MATCH_21140
4591.130Sthorpej#options 	TLP_MATCH_21142
4601.118Schristosvr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
4611.118Schristoslmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
4621.141Sgroortk*	at pci? dev ? function ?	# Realtek 8129/8139
4631.2Stls
4641.56Sperry# EISA network interfaces
4651.56Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
4661.56Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
4671.130Sthorpejtlp*	at eisa? slot ?			# DEC DE-425 Ethernet
4681.2Stls
4691.56Sperry# ISA Plug-and-Play network interfaces
4701.56Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
4711.56Sperryne*	at isapnp?			# NE2000-compatible Ethernet
4721.115Sbadtr*	at isapnp?			# IBM/3COM TROPIC Token-Ring
4731.20Smycroft
4741.56Sperry# PCMCIA network interfaces
4751.159Sfvdlawi*	at pcmcia? function ?		# BayStack 650 (802.11FH)
4761.159Sfvdlcnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
4771.56Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
4781.80Senamimbe*	at pcmcia? function ?		# MB8696x based Ethernet
4791.56Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
4801.159Sfvdlray* 	at pcmcia? function ?           # Raytheon Raylink (802.11)
4811.56Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
4821.123Sbouyerwi*	at pcmcia? function ?		# Lucent WaveLan IEEE (802.11)
4831.145Sgmcgarryxi*	at pcmcia? function ?		# Xircom CreditCard Ethernet
4841.127Sthorpej
4851.127Sthorpejmhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
4861.127Sthorpejcom*	at mhzc?
4871.127Sthorpejsm*	at mhzc?
4881.54Sthorpej
4891.54Sthorpej# ISA network interfaces
4901.79Senamiate0	at isa? port 0x2a0 irq ?		# AT1700
4911.89Sthorpejcs0	at isa? port 0x300 iomem ? irq ? drq ?	# CS8900 Ethernet
4921.62Sthorpejec0	at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
4931.65Sthorpejeg0	at isa? port 0x280 irq 9		# 3C505 ethernet cards
4941.54Sthorpejel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
4951.54Sthorpejep0	at isa? port ? irq ?			# 3C509 ethernet cards
4961.77Saugustssef0	at isa? port 0x360 iomem 0xd0000 irq 7	# 3C507
4971.77Saugustssai0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN
4981.79Senamifmv0	at isa? port 0x2a0 irq ?		# FMV-180 series
4991.77Saugustssix0	at isa? port 0x300 irq 10		# EtherExpress/16
5001.68Sthorpejiy0	at isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
5011.67Sthorpejlc0	at isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
5021.118Schristosdepca0	at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5	# DEPCA
5031.118Schristosle*	at depca?
5041.118Schristosnele0	at isa? port 0x320 irq 9 drq 7		# NE2100
5051.118Schristosle*	at nele?
5061.118Schristosbicc0	at isa? port 0x320 irq 10 drq 7		# BICC IsoLan
5071.118Schristosle*	at bicc?
5081.54Sthorpejne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
5091.54Sthorpejne1	at isa? port 0x300 irq 10
5101.64Sthorpejsm0	at isa? port 0x300 irq 10		# SMC91C9x Ethernet
5111.115Sbadtr0	at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
5121.115Sbadtr1	at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
5131.115Sbadtr*	at isa? port ? irq ?			# 3COM TROPIC based Token-Ring
5141.63Sthorpejwe0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
5151.63Sthorpejwe1	at isa? port 0x300 iomem 0xcc000 irq 10
5161.54Sthorpej
5171.94Sthorpej# MII/PHY support
5181.104Sheexphy*	at mii? phy ?			# 3Com internal PHYs
5191.104Sheicsphy*	at mii? phy ?			# Integrated Circuit Systems ICS1890
5201.104Sheinphy*	at mii? phy ?			# Intel 82555 PHYs
5211.130Sthorpejiophy*	at mii? phy ?			# Intel 82553 PHYs
5221.104Shelxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
5231.118Schristosnsphy*	at mii? phy ?			# NS83840 PHYs
5241.132Sthorpejnsphyter* at mii? phy ?			# NS83843 PHYs
5251.118Schristosqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
5261.104Shesqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
5271.94Sthorpejtlphy*	at mii? phy ?			# ThunderLAN PHYs
5281.130Sthorpejtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
5291.104Sheukphy*	at mii? phy ?			# generic unknown PHYs
5301.54Sthorpej
5311.118Schristos# USB Controller and Devices
5321.118Schristos
5331.118Schristos# PCI USB controllers
5341.156Sfvdluhci*	at pci?				# Universal Host Controller (Intel)
5351.156Sfvdlohci*	at pci?				# Open Host Controller
5361.118Schristos
5371.118Schristos# USB bus support
5381.156Sfvdlusb*	at uhci?
5391.156Sfvdlusb*	at ohci?
5401.118Schristos
5411.118Schristos# USB Hubs
5421.156Sfvdluhub*	at usb?
5431.156Sfvdluhub*	at uhub? port ? configuration ? interface ?
5441.118Schristos
5451.118Schristos# USB Mice
5461.118Schristos#ums*	at uhub? port ? configuration ? interface ?
5471.118Schristos#wsmouse*	at ums?
5481.118Schristos
5491.118Schristos# USB Keyboards
5501.156Sfvdlukbd*	at uhub? port ? configuration ? interface ?
5511.156Sfvdlwskbd*	at ukbd? console ?
5521.118Schristos
5531.118Schristos# USB Generic HID devices
5541.156Sfvdluhid*	at uhub? port ? configuration ? interface ?
5551.118Schristos
5561.118Schristos# USB Printer
5571.118Schristos#ulpt*	at uhub? port ? configuration ? interface ?
5581.124Sthorpej
5591.124Sthorpej# USB Mass Storage
5601.156Sfvdlumass*	at uhub? port ? configuration ? interface ?
5611.156Sfvdlatapibus* at umass? channel ?
5621.156Sfvdlscsibus* at umass? channel ?
5631.162Saugustss
5641.162Saugustss# Y@P firmware loader
5651.162Saugustss#uyap* at uhub? port ?
5661.118Schristos
5671.118Schristos# USB Generic driver
5681.118Schristos#ugen*	at uhub? port ? configuration ? interface ?
5691.156Sfvdl
5701.156Sfvdl# USB Ethernet adapters
5711.156Sfvdlaue* 	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
5721.156Sfvdlcue* 	at uhub? port ?		# CATC USB-EL1201A based adapters
5731.156Sfvdlkue* 	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
5741.118Schristos
5751.56Sperry# Audio Devices
5761.54Sthorpej
5771.118Schristos# PCI audio devices
5781.118Schristos#eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
5791.120Skleink#eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
5801.118Schristos#sv*	at pci? dev ? function ?	# S3 SonicVibes
5811.118Schristos
5821.56Sperry# ISA Plug-and-Play audio devices
5831.54Sthorpej#guspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
5841.54Sthorpej#sb*	at isapnp?			# SoundBlaster-compatible audio
5851.54Sthorpej
5861.56Sperry# ISA audio devices
5871.118Schristos# the "aria" probe might give false hits
5881.118Schristos#aria0	at isa? port 0x290 irq 10 		# Aria
5891.56Sperry#gus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
5901.56Sperry#pas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
5911.56Sperry#pss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
5921.56Sperry#sp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
5931.56Sperry#sb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
5941.56Sperry#wss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
5951.54Sthorpej
5961.150Sitohy# OPL[23] FM synthesizers
5971.118Schristos#opl0	at isa? port 0x388	# use only if not attached to sound card
5981.120Skleink#opl*	at eso?
5991.118Schristos#opl*	at ess?
6001.118Schristos#opl*	at sb?
6011.118Schristos#opl*	at sv?
6021.118Schristos 
6031.54Sthorpej# Audio support
6041.118Schristos#audio*	at aria?
6051.120Skleink#audio*	at eap?
6061.120Skleink#audio*	at eso?
6071.54Sthorpej#audio*	at gus?
6081.54Sthorpej#audio*	at guspnp?
6091.54Sthorpej#audio*	at pas?
6101.54Sthorpej#audio*	at sb?
6111.54Sthorpej#audio*	at sp?
6121.120Skleink#audio*	at sv?
6131.54Sthorpej#audio*	at wss?
6141.54Sthorpej
6151.118Schristos# MIDI support
6161.118Schristos#midi*	at pcppi?		# MIDI interface to the PC speaker
6171.118Schristos#midi*	at sb?			# SB MPU401 port
6181.118Schristos#midi*	at opl?			# OPL FM synth
6191.118Schristos
6201.56Sperry# The spkr driver provides a simple tone interface to the built in speaker.
6211.82Sdrochner#spkr0	at pcppi?		# PC speaker
6221.56Sperry
6231.56Sperry
6241.56Sperry# Mice
6251.56Sperry
6261.56Sperry# ISA busmice
6271.118Schristos#lms0	at isa? port 0x23c irq 5	# Logitech bus mouse
6281.118Schristos#lms1	at isa? port 0x238 irq 5
6291.118Schristos#mms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
6301.118Schristos#mms1	at isa? port 0x238 irq 5
6311.118Schristos#wsmouse*	at lms?
6321.118Schristos#wsmouse*	at mms?
6331.118Schristos# backwards compatible versions
6341.106Sdrochner#olms0	at isa? port 0x23c irq 5	# Logitech bus mouse
6351.106Sdrochner#olms1	at isa? port 0x238 irq 5
6361.106Sdrochner#omms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
6371.106Sdrochner#omms1	at isa? port 0x238 irq 5
6381.106Sdrochner#opms0	at pc? irq 12		# PS/2 auxiliary port mouse
6391.56Sperry
6401.56Sperry# Joysticks
6411.56Sperry
6421.56Sperry# ISA Plug-and-Play joysticks
6431.56Sperry#joy*	at isapnp?			# Game ports (usually on audio cards)
6441.2Stls
6451.56Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
6461.56Sperry#joy0	at isa? port 0x201
6471.2Stls
6481.20Smycroft
6491.56Sperry# Miscellaneous Devices
6501.20Smycroft
6511.56Sperry# Planetconnect Satellite receiver driver.
6521.56Sperry#satlink0 at isa? port 0x300 drq 1
6531.43Smikel
6541.21Smycroft
6551.54Sthorpej# Pull in optional local configuration
6561.22Smycroftinclude	"arch/i386/conf/GENERIC.local"
6571.37Sperry
6581.56Sperry
6591.56Sperry# Pseudo-Devices
6601.56Sperry
6611.56Sperry# disk/mass storage pseudo-devices
6621.56Sperry#pseudo-device	ccd		4	# concatenated/striped disk devices
6631.118Schristos#pseudo-device	raid		4	# RAIDframe disk driver
6641.56Sperrypseudo-device	md		1	# memory disk device (ramdisk)
6651.56Sperry#pseudo-device	vnd		4	# disk-like interface to files
6661.56Sperry
6671.56Sperry# network pseudo-devices
6681.148Scyberpseudo-device	bpfilter	8	# Berkeley packet filter
6691.54Sthorpej#pseudo-device	ipfilter		# IP filter (firewall) and NAT
6701.54Sthorpejpseudo-device	loop			# network loopback
6711.54Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
6721.56Sperrypseudo-device	sl		2	# Serial Line IP
6731.56Sperry#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
6741.56Sperry#pseudo-device	tun		2	# network tunneling over tty
6751.118Schristos#pseudo-device	gre		2	# generic L3 over IP tunnel
6761.118Schristos#pseudo-device	ipip		2	# IP Encapsulation within IP (RFC 2003)
6771.56Sperry
6781.56Sperry# miscellaneous pseudo-devices
6791.157Sabspseudo-device	pty		2	# pseudo-terminals (Sysinst needs two)
6801.57Sexplorer#pseudo-device	tb		1	# tablet line discipline
6811.118Schristos#pseudo-device	sequencer	1	# MIDI sequencer
6821.118Schristos# rnd works; RND_COM does not on port i386 yet.
6831.54Sthorpej#pseudo-device	rnd			# /dev/random and in-kernel generator
6841.58Sexplorer#options 	RND_COM			# use "com" randomness as well (BROKEN)
6851.118Schristos
6861.118Schristos# a pseudo device needed for Coda	# also needs CODA (above)
6871.118Schristos#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
688