GENERIC revision 1.112
11.112Sperry#	$NetBSD: GENERIC,v 1.112 1997/10/19 20:14:21 perry Exp $
21.1Smycroft#
31.1Smycroft#	GENERIC -- everything that's currently supported
41.1Smycroft#
51.1Smycroft
61.61Sfvdlinclude "arch/i386/conf/std.i386"
71.14Scgd
81.110Sthorpejmaxusers	32		# estimated number of users
91.110Sthorpej
101.110Sthorpej# CPU support.  At least one is REQUIRED.
111.110Sthorpejoptions 	I386_CPU
121.82Smellonoptions 	I486_CPU
131.82Smellonoptions 	I586_CPU
141.110Sthorpejoptions 	I686_CPU	
151.110Sthorpej
161.110Sthorpej# CPU-related options.
171.82Smellonoptions 	MATH_EMULATE	# floating point emulation
181.102Smycroft#options 	VM86		# virtual 8086 emulation
191.102Smycroftoptions 	USER_LDT	# user-settable LDT; used by WINE
201.112Sperry# eliminate delay no-ops in I/O; recommended on all but very old machines
211.112Sperry#options 	DUMMY_NOPS
221.110Sthorpej
231.110Sthorpej# Misc. i386-specific options
241.110Sthorpejoptions 	XSERVER		# X server support in console drivers
251.110Sthorpej
261.110Sthorpej# This option allows you to force a serial console at the specified
271.110Sthorpej# I/O address.
281.110Sthorpej#options 	"CONSDEVNAME=\"com\"",CONADDR=0x3f8,CONSPEED=9600
291.32Sthorpej
301.101Smycroft# The following options override the memory sizes passed in from the boot
311.101Smycroft# block.  Use them *only* if the boot block is unable to determine the correct
321.111Sperry# values.  Note that the BIOS may *correctly* report less than 640k of base
331.101Smycroft# memory if the extended BIOS data area is located at the top of base memory
341.101Smycroft# (as is the case on most recent systems).
351.101Smycroft#options 	REALBASEMEM=...	# size of base memory
361.101Smycroft#options 	REALEXTMEM=...	# size of extended memory
371.1Smycroft
381.110Sthorpej# Standard system options
391.110Sthorpej
401.110Sthorpejoptions 	UCONSOLE	# users can use TIOCCONS (for xconsole)
411.110Sthorpejoptions 	INSECURE	# disable kernel security levels
421.1Smycroft
431.82Smellonoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
441.82Smellon#options 	NTP		# NTP phase/frequency locked loop
451.1Smycroft
461.98Smikeloptions 	KTRACE		# system call tracing via ktrace(1)
471.1Smycroft
481.82Smellonoptions 	SYSVMSG		# System V-like message queues
491.82Smellonoptions 	SYSVSEM		# System V-like semaphores
501.82Smellonoptions 	SYSVSHM		# System V-like memory sharing
511.82Smellon#options 	SHMMAXPGS=1024	# 1024 pages is the default
521.82Smellon
531.110Sthorpejoptions 	LKM		# loadable kernel modules
541.110Sthorpej
551.110Sthorpej# Diagnostic/debugging support options
561.110Sthorpejoptions 	DIAGNOSTIC	# cheap kernel consistency checks
571.110Sthorpej#options 	DEBUG		# expensive debugging checks/support
581.110Sthorpejoptions 	KMEMSTATS	# kernel memory statistics (vmstat -m)
591.110Sthorpejoptions 	DDB		# in-kernel debugger
601.110Sthorpej#options 	KGDB		# remote debugger
611.110Sthorpej#options 	"KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
621.110Sthorpej#makeoptions	DEBUG="-g"	# compile full symbol table
631.110Sthorpej
641.110Sthorpej# Compatbility options
651.82Smellonoptions 	COMPAT_NOMID	# compatibility with 386BSD, BSDI, NetBSD 0.8,
661.82Smellonoptions 	COMPAT_09	# NetBSD 0.9,
671.82Smellonoptions 	COMPAT_10	# NetBSD 1.0,
681.82Smellonoptions 	COMPAT_11	# NetBSD 1.1,
691.55Smycroftoptions 	COMPAT_12	# NetBSD 1.2,
701.82Smellonoptions 	COMPAT_43	# and 4.3BSD
711.1Smycroft
721.82Smellonoptions 	COMPAT_SVR4	# binary compatibility with SVR4
731.82Smellonoptions 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
741.82Smellonoptions 	COMPAT_LINUX	# binary compatibility with Linux
751.82Smellonoptions 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
761.59Smycroft
771.110Sthorpej# Executable format options
781.82Smellonoptions 	EXEC_ELF32	# 32-bit ELF executables (SVR4, Linux)
791.1Smycroft
801.110Sthorpej# File systems
811.71Sthorpejfile-system 	FFS		# UFS
821.80Sperryfile-system 	EXT2FS		# second extended file system (linux)
831.71Sthorpejfile-system 	LFS		# log-structured file system
841.71Sthorpejfile-system 	MFS		# memory file system
851.71Sthorpejfile-system 	NFS		# Network File System client
861.71Sthorpejfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
871.71Sthorpejfile-system 	MSDOSFS		# MS-DOS file system
881.71Sthorpejfile-system 	FDESC		# /dev/fd
891.71Sthorpejfile-system 	KERNFS		# /kern
901.71Sthorpejfile-system 	NULLFS		# loopback file system
911.71Sthorpejfile-system 	PORTAL		# portal filesystem (still experimental)
921.71Sthorpejfile-system 	PROCFS		# /proc
931.71Sthorpejfile-system 	UMAPFS		# NULLFS + uid and gid remapping
941.71Sthorpejfile-system 	UNION		# union file system
951.71Sthorpej
961.110Sthorpej# File system options
971.82Smellonoptions 	QUOTA		# UFS quotas
981.82Smellonoptions 	NFSSERVER	# Network File System server
991.82Smellonoptions 	FIFO		# FIFOs; RECOMMENDED
1001.81Sveego#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1011.80Sperry				# immutable) behave as system flags.
1021.110Sthorpej# Networking options
1031.82Smellon#options 	GATEWAY		# packet forwarding
1041.82Smellonoptions 	INET		# IP + ICMP + TCP + UDP
1051.82Smellon#options 	MROUTING	# IP multicast routing
1061.82Smellonoptions 	NS		# XNS
1071.82Smellon#options 	NSIP		# XNS tunneling over IP
1081.82Smellonoptions 	ISO,TPIP	# OSI
1091.82Smellonoptions 	EON		# OSI tunneling over IP
1101.82Smellonoptions 	CCITT,LLC,HDLC	# X.25
1111.110Sthorpejoptions 	NETATALK	# AppleTalk networking protocols
1121.110Sthorpej#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1131.110Sthorpej#options 	PPP_DEFLATE	# Deflate compression support for PPP
1141.110Sthorpej#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1151.82Smellon#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
1161.1Smycroft
1171.110Sthorpej# Compatibility with 4.2BSD implementation of TCP/IP.  Not suggested.
1181.110Sthorpej#options 	TCP_COMPAT_42
1191.1Smycroft
1201.112Sperry# These options enable verbose messages for several subsystems.
1211.112Sperry# Warning, these may compile large string tables into the kernel!
1221.112Sperryoptions 	EISAVERBOSE	# verbose EISA device autoconfig messages
1231.112Sperryoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1241.110Sthorpej#options 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1251.112Sperryoptions 	SCSIVERBOSE	# human readable SCSI error messages
1261.110Sthorpej
1271.110Sthorpej# Kernel root file system and dump configuration.
1281.110Sthorpejconfig		netbsd	root on ? type ?
1291.110Sthorpej#config		netbsd	root on sd0a type ffs
1301.110Sthorpej#config		netbsd	root on ? type nfs
1311.110Sthorpej
1321.110Sthorpej#
1331.110Sthorpej# Device configuration
1341.110Sthorpej#
1351.63Sthorpej
1361.31Scgdmainbus0 at root
1371.31Scgd
1381.110Sthorpej#apm0	at mainbus0			# Advanced power management
1391.1Smycroft
1401.112Sperry
1411.112Sperry# Basic Bus Support
1421.112Sperry
1431.110Sthorpej# PCI bus support
1441.110Sthorpejpci*	at mainbus? bus ?
1451.110Sthorpejpci*	at pchb? bus ?
1461.30Scgdpci*	at ppb? bus ?
1471.110Sthorpej
1481.112Sperry# PCI bridges
1491.63Sthorpejpchb*	at pci? dev ? function ?	# PCI-Host bridges
1501.63Sthorpejpcib*	at pci? dev ? function ?	# PCI-ISA bridges
1511.110Sthorpejppb*	at pci? dev ? function ?	# PCI-PCI bridges
1521.110Sthorpej
1531.110Sthorpej# EISA bus support
1541.110Sthorpejeisa*	at mainbus?
1551.110Sthorpej
1561.110Sthorpej# ISA bus support
1571.110Sthorpejisa*	at mainbus?
1581.110Sthorpejisa*	at pcib?
1591.63Sthorpej
1601.112Sperry# PCMCIA bus support
1611.112Sperrypcmcia*	at pcic? controller ? socket ?
1621.112Sperry
1631.112Sperry# ISA PCMCIA controllers
1641.112Sperrypcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x4000
1651.112Sperrypcic1	at isa? port 0x3e2 iomem 0xd4000 iosiz 0x4000
1661.112Sperry
1671.112Sperry# ISA Plug-and-Play bus support
1681.112Sperryisapnp0	at isa?
1691.112Sperry
1701.112Sperry
1711.112Sperry# Coprocessor Support
1721.112Sperry
1731.112Sperry# Math Coprocessor support
1741.112Sperrynpx0	at isa? port 0xf0 irq 13	# x86 math coprocessor
1751.112Sperry
1761.112Sperry
1771.112Sperry# Console Devices
1781.112Sperry
1791.112Sperry# ISA console.  You can only configure one of these!
1801.112Sperrypc0	at isa? port 0x60 irq 1		# pccons generic PC console driver
1811.112Sperry#vt0	at isa? port 0x60 irq 1		# PCVT console driver
1821.110Sthorpej
1831.110Sthorpej
1841.112Sperry# Serial Devices
1851.63Sthorpej
1861.112Sperry# PCI serial interfaces
1871.112Sperrycy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
1881.30Scgd
1891.112Sperry# ISA Plug-and-Play serial interfaces
1901.112Sperrycom*	at isapnp?			# Modems and serial boards
1911.1Smycroft
1921.112Sperry# PCMCIA serial interfaces
1931.112Sperrycom*	at pcmcia? function ?		# Modems and serial cards
1941.1Smycroft
1951.110Sthorpej# ISA serial interfaces
1961.89Sperry#options 	COM_HAYESP		# adds Hayes ESP serial board support
1971.112Sperrycom0	at isa? port 0x3f8 irq 4	# Standard PC serial ports
1981.2Smycroftcom1	at isa? port 0x2f8 irq 3
1991.2Smycroftcom2	at isa? port 0x3e8 irq 5
2001.2Smycroft#com3	at isa? port 0x2e8 irq 9
2011.8Smycroft#ast0	at isa? port 0x1a0 irq 5	# AST 4-port serial cards
2021.34Scgd#com*	at ast? slave ?
2031.8Smycroft#boca0	at isa? port 0x100 irq 5	# BOCA 8-port serial cards
2041.8Smycroft#com*	at boca? slave ?
2051.1Smycroft#rtfps0	at isa? port 0x1230 irq 10	# RT 4-port serial cards
2061.1Smycroft#com*	at rtfps? slave ?
2071.58Schristos#cy0	at isa? iomem 0xd4000 irq 12	# Cyclades serial cards
2081.88Smikel
2091.1Smycroft
2101.112Sperry# Parallel Printer Interfaces
2111.110Sthorpej
2121.112Sperry# ISA parallel printer interfaces
2131.110Sthorpejlpt0	at isa? port 0x378 irq 7	# standard PC parallel ports
2141.110Sthorpejlpt1	at isa? port 0x278
2151.110Sthorpejlpt2	at isa? port 0x3bc
2161.1Smycroft
2171.40Sperry
2181.112Sperry# SCSI Controllers and Devices
2191.68Schristos
2201.112Sperry# PCI SCSI controllers
2211.112Sperryahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2221.112Sperrybha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
2231.112Sperryisp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
2241.112Sperryncr*	at pci? dev ? function ?	# NCR 53c8xx SCSI
2251.110Sthorpej
2261.112Sperry# EISA SCSI controllers
2271.112Sperryahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
2281.112Sperryahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
2291.112Sperrybha*	at eisa? slot ?			# BusLogic 7xx SCSI
2301.112Sperryuha*	at eisa? slot ?			# UltraStor 24f SCSI
2311.105Sthorpej
2321.112Sperry# PCMCIA SCSI controllers
2331.110Sthorpejaic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
2341.110Sthorpej
2351.112Sperry# ISA SCSI controllers
2361.112Sperryaha0	at isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
2371.112Sperryaha1	at isa? port 0x334 irq ? drq ?
2381.112Sperryahc0	at isa? port ? irq ?		# Adaptec 284x SCSI
2391.112Sperryaic0	at isa? port 0x340 irq 11	# Adaptec 152[02] SCSI
2401.112Sperrybha0	at isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI
2411.112Sperrybha1	at isa? port 0x334 irq ? drq ?
2421.112Sperrysea0	at isa? iomem 0xc8000 irq 5	# Seagate/Future Domain SCSI
2431.112Sperryuha0	at isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI
2441.112Sperryuha1	at isa? port 0x334 irq ? drq ?
2451.112Sperrywds0	at isa? port 0x350 irq 15 drq 6	# WD7000 and TMC-7000 controllers
2461.112Sperrywds1	at isa? port 0x358 irq 11 drq 5
2471.110Sthorpej
2481.110Sthorpej# SCSI bus support
2491.110Sthorpejscsibus* at aha?
2501.110Sthorpejscsibus* at ahb?
2511.110Sthorpejscsibus* at ahc?
2521.110Sthorpejscsibus* at aic?
2531.110Sthorpejscsibus* at bha?
2541.110Sthorpejscsibus* at isp?
2551.110Sthorpejscsibus* at ncr?
2561.110Sthorpejscsibus* at sea?
2571.110Sthorpejscsibus* at uha?
2581.110Sthorpejscsibus* at wds?
2591.110Sthorpej
2601.110Sthorpej# SCSI devices
2611.110Sthorpejsd*	at scsibus? target ? lun ?	# SCSI disk drives
2621.110Sthorpejst*	at scsibus? target ? lun ?	# SCSI tape drives
2631.110Sthorpejcd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
2641.110Sthorpejch*	at scsibus? target ? lun ?	# SCSI autochangers
2651.110Sthorpejss*	at scsibus? target ? lun ?	# SCSI scanners
2661.110Sthorpejuk*	at scsibus? target ? lun ?	# SCSI unknown
2671.110Sthorpej
2681.112Sperry
2691.112Sperry# IDE and Related Devices
2701.112Sperry
2711.112Sperry# ISA IDE controllers
2721.112Sperrywdc0	at isa? port 0x1f0 irq 14	# ST506, ESDI, and IDE controllers
2731.112Sperrywdc1	at isa? port 0x170 irq 15
2741.112Sperry
2751.112Sperry# IDE drives
2761.112Sperrywd*	at wdc? drive ?			# the drives themsevles
2771.112Sperry
2781.110Sthorpej# ATAPI bus support
2791.110Sthorpejatapibus* at wdc?
2801.110Sthorpej
2811.110Sthorpej# ATAPI devices
2821.110Sthorpejcd*	at atapibus? drive ?		# ATAPI CD-ROM drives
2831.110Sthorpej
2841.112Sperry
2851.112Sperry# Miscellaneous mass storage devices
2861.112Sperry
2871.112Sperry# ISA floppy
2881.112Sperryfdc0	at isa? port 0x3f0 irq 6 drq 2	# standard PC floppy controllers
2891.112Sperry#fdc1	at isa? port 0x370 irq ? drq ?
2901.112Sperryfd*	at fdc? drive ?			# the drives themselves
2911.112Sperry# some machines need you to do this instead of fd*
2921.112Sperry#fd0	at fdc0 drive 0
2931.112Sperry
2941.112Sperry# ISA CD-ROM devices
2951.112Sperry#mcd0	at isa? port 0x300 irq 10	# Mitsumi CD-ROM drives
2961.112Sperry
2971.112Sperry# ISA tape devices
2981.112Sperry# note: the wt driver conflicts unpleasantly with ed devices at the
2991.112Sperry# same I/O address. The probe reprograms their eeproms. Don't
3001.112Sperry# uncomment it unless you are actually using it.
3011.112Sperry#wt0	at isa? port 0x300 irq 5 drq 1	# Archive and Wangtek QIC tape drives
3021.112Sperry
3031.112Sperry
3041.112Sperry# Network Interfaces
3051.112Sperry
3061.112Sperry# PCI network interfaces
3071.112Sperryde*	at pci? dev ? function ?	# DEC 21x4x-based Ethernet
3081.112Sperryen*	at pci? dev ? function ?	# ENI/Adaptec ATM
3091.112Sperryep*	at pci? dev ? function ?	# 3Com 3c59x/3c90x Ethernet
3101.112Sperryfpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
3111.112Sperryfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
3121.112Sperryle*	at pci? dev ? function ?	# PCnet-PCI Ethernet
3131.112Sperryne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
3141.112Sperrytl*	at pci? dev ? function ?	# Thunderland-based Ethernet
3151.112Sperry
3161.112Sperry# EISA network interfaces
3171.112Sperryep*	at eisa? slot ?			# 3Com 3c579 Ethernet
3181.112Sperryfea*	at eisa? slot ?			# DEC DEFEA FDDI
3191.112Sperry
3201.112Sperry# ISA Plug-and-Play network interfaces
3211.112Sperryep*	at isapnp?			# 3Com 3c509 Ethernet
3221.112Sperryne*	at isapnp?			# NE2000-compatible Ethernet
3231.112Sperry
3241.112Sperry# PCMCIA network interfaces
3251.112Sperryep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
3261.112Sperryne*	at pcmcia? function ?		# NE2000-compatible Ethernet
3271.112Sperrysm*	at pcmcia? function ?		# Megahertz Ethernet
3281.112Sperry
3291.112Sperry# ISA network interfaces
3301.112Sperryed0	at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC and 3C503
3311.112Sperryed1	at isa? port 0x250 iomem 0xd8000 irq 9	#   ethernet cards
3321.112Sperryed2	at isa? port 0x300 iomem 0xcc000 irq 10
3331.112Sperry#eg0	at isa? ...				# 3C505 ethernet cards
3341.112Sperryel0	at isa? port 0x300 irq 9		# 3C501 ethernet cards
3351.112Sperryep0	at isa? port ? irq ?			# 3C509 ethernet cards
3361.112Sperryfe0	at isa? port 0x2a0 irq ?		# AT1700
3371.112Sperryie0	at isa? port 0x360 iomem 0xd0000 irq 7	# StarLAN and 3C507
3381.112Sperryie1	at isa? port 0x300 irq 10		# EtherExpress
3391.112Sperryiy0	at isa? port ? irq ?			# EtherExpress PRO 10 ISA
3401.112Sperrylc0	at isa? port ? iomem ? irq ?		# DEC EtherWORKS III (LEMAC)
3411.112Sperry#le0	at isa? port 0x320 irq 10 drq 7		# IsoLan, NE2100, and DEPCA
3421.112Sperryne0	at isa? port 0x280 irq 9		# NE[12]000 ethernet cards
3431.112Sperryne1	at isa? port 0x300 irq 10
3441.112Sperry
3451.110Sthorpej# MII bus support
3461.110Sthorpejmii*	at tl?
3471.110Sthorpej
3481.112Sperry# MII PHY network interfaces
3491.110Sthorpejtlphy*	at mii? dev ?			# Thunderland PHYs
3501.110Sthorpejnsphy*	at mii? dev ?			# NS and compatible PHYs
3511.84Shpeyerl
3521.112Sperry
3531.112Sperry# Audio Devices
3541.112Sperry
3551.112Sperry# ISA Plug-and-Play audio devices
3561.112Sperryguspnp*	at isapnp?			# Gravis Ultra Sound PnP audio
3571.112Sperrysb*	at isapnp?			# SoundBlaster-compatible audio
3581.112Sperry
3591.112Sperry# ISA audio devices
3601.112Sperrygus0	at isa? port 0x220 irq 7 drq 1 drq2 6	# Gravis Ultra Sound
3611.112Sperrypas0	at isa? port 0x220 irq 7 drq 1		# ProAudio Spectrum
3621.112Sperrypss0	at isa? port 0x220 irq 7 drq 6  	# Personal Sound System
3631.112Sperrysp0	at pss0 port 0x530 irq 10 drq 0		# 	sound port driver
3641.112Sperrysb0	at isa? port 0x220 irq 7 drq 1 drq2 5	# SoundBlaster
3651.112Sperrywss0	at isa? port 0x530 irq 10 drq 0	drq2 1	# Windows Sound System
3661.112Sperry
3671.112Sperry# Audio support
3681.112Sperryaudio*	at gus?
3691.112Sperryaudio*	at guspnp?
3701.112Sperryaudio*	at pas?
3711.112Sperryaudio*	at sb?
3721.112Sperryaudio*	at sp?
3731.112Sperryaudio*	at wss?
3741.112Sperry
3751.112Sperry# The spkr driver provides a simple tone interface to the built in speaker.
3761.112Sperry#spkr0	at pckbd? port 0x61		# PC speaker
3771.112Sperry
3781.112Sperry
3791.112Sperry# Mice
3801.112Sperry
3811.112Sperry# ISA busmice
3821.112Sperrylms0	at isa? port 0x23c irq 5	# Logitech bus mouse
3831.112Sperrylms1	at isa? port 0x238 irq 5
3841.112Sperrymms0	at isa? port 0x23c irq 5	# Microsoft InPort mouse
3851.112Sperrymms1	at isa? port 0x238 irq 5
3861.112Sperry#pms0	at pckbd? irq 12		# PS/2 auxiliary port mouse
3871.112Sperry
3881.112Sperry
3891.112Sperry# Joysticks
3901.112Sperry
3911.112Sperry# ISA Plug-and-Play joysticks
3921.112Sperryjoy*	at isapnp?			# Game ports (usually on audio cards)
3931.112Sperry
3941.112Sperry# ISA joysticks. Probe is a little strange; add only if you have one.
3951.112Sperry#joy0	at isa? port 0x201
3961.112Sperry
3971.112Sperry
3981.112Sperry# Miscellaneous Devices
3991.112Sperry
4001.112Sperry# Planetconnect Satellite receiver driver.
4011.112Sperry#satlink0 at isa? port 0x300 drq 1
4021.112Sperry
4031.112Sperry
4041.110Sthorpej# Pull in optional local configuration
4051.57Smycroftinclude	"arch/i386/conf/GENERIC.local"
4061.1Smycroft
4071.112Sperry
4081.112Sperry# Pseudo-Devices
4091.112Sperry
4101.112Sperry# disk/mass storage pseudo-devices
4111.112Sperrypseudo-device	ccd		4	# concatenated/striped disk devices
4121.112Sperrypseudo-device	md		1	# memory disk device (ramdisk)
4131.112Sperrypseudo-device	vnd		4	# disk-like interface to files
4141.112Sperry
4151.112Sperry# network pseudo-devices
4161.110Sthorpejpseudo-device	bpfilter	8	# Berkeley packet filter
4171.110Sthorpejpseudo-device	ipfilter		# IP filter (firewall) and NAT
4181.110Sthorpejpseudo-device	loop			# network loopback
4191.110Sthorpejpseudo-device	ppp		2	# Point-to-Point Protocol
4201.112Sperrypseudo-device	sl		2	# Serial Line IP
4211.112Sperrypseudo-device	strip		2	# Starmode Radio IP (Metricom)
4221.112Sperrypseudo-device	tun		2	# network tunneling over tty
4231.112Sperry
4241.112Sperry# miscellaneous pseudo-devices
4251.110Sthorpejpseudo-device	pty		64	# pseudo-terminals
4261.103Sexplorer#pseudo-device	rnd			# /dev/random and in-kernel generator
4271.110Sthorpejpseudo-device	tb		1	# tablet line discipline
428