GENERIC revision 1.77
11.77Stsutsui# $NetBSD: GENERIC,v 1.77 2002/11/30 19:23:46 tsutsui Exp $
21.1Sjonathan#
31.58Sgmcgarry# GENERIC machine description file
41.58Sgmcgarry# 
51.58Sgmcgarry# This machine description file is used to generate the default NetBSD
61.58Sgmcgarry# kernel.  The generic kernel does not include all options, subsystems
71.58Sgmcgarry# and device drivers, but should be useful for most applications.
81.1Sjonathan#
91.58Sgmcgarry# The machine description file can be customised for your specific
101.58Sgmcgarry# machine to reduce the kernel size and improve its performance.
111.58Sgmcgarry#
121.58Sgmcgarry# For further information on compiling NetBSD kernels, see the config(8)
131.58Sgmcgarry# man page.
141.58Sgmcgarry#
151.58Sgmcgarry# For further information on hardware support for this architecture, see
161.58Sgmcgarry# the intro(4) man page.  For further information about kernel options
171.58Sgmcgarry# for this architecture, see the options(4) man page.  For an explanation
181.58Sgmcgarry# of each device driver in this file see the section 4 man page for the
191.58Sgmcgarry# device.
201.1Sjonathan
211.23Ssodainclude		"arch/arc/conf/std.arc"
221.24Ssoda
231.68Satatatoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.68Satatat
251.77Stsutsui#ident		"GENERIC-$Revision: 1.77 $"
261.1Sjonathan
271.27Ssodamaxusers	32		# estimated number of users
281.27Ssoda
291.45Ssoda# Platform support
301.45Ssodaoptions 	PLATFORM_ACER_PICA_61		# Pica, NEC ImageRISCstation
311.45Ssodaoptions 	PLATFORM_DESKTECH_ARCSTATION_I	# DESKstation rPC44
321.45Ssodaoptions 	PLATFORM_DESKTECH_TYNE		# DESKstation Tyne
331.45Ssodaoptions 	PLATFORM_MICROSOFT_JAZZ		# MIPS Magnum
341.77Stsutsuioptions 	PLATFORM_NEC_J96A		# NEC Express 5800/240 EISA R4K
351.45Ssodaoptions 	PLATFORM_NEC_JC94		# NEC Express 5800/230 PCI R4K
361.45Ssodaoptions 	PLATFORM_NEC_R94		# NEC RISCstation 2200 EISA
371.56Slukemoptions 	PLATFORM_NEC_R96	# NEC Express RISCserver, RISCserver 2200
381.45Ssodaoptions 	PLATFORM_NEC_RAX94		# NEC RISCstation 2200 PCI
391.45Ssodaoptions 	PLATFORM_NEC_RD94		# NEC RISCstation 2250
401.45Ssodaoptions 	PLATFORM_SNI_RM200PCI
411.45Ssoda
421.27Ssoda# Standard system options
431.1Sjonathan
441.23Ssodaoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
451.27Ssodaoptions 	NTP		# NTP phase/frequency locked loop
461.1Sjonathan
471.27Ssodaoptions 	KTRACE		# system call tracing via ktrace(1)
481.73Sprovosoptions 	SYSTRACE	# system call vetting via systrace(1)
491.1Sjonathan
501.10Slukemoptions 	SYSVMSG		# System V-like message queues
511.10Slukemoptions 	SYSVSEM		# System V-like semaphores
521.56Slukem#options 	SEMMNI=10	# number of semaphore identifiers
531.56Slukem#options 	SEMMNS=60	# number of semaphores in system
541.56Slukem#options 	SEMUME=10	# max number of undo entries per process
551.56Slukem#options 	SEMMNU=30	# number of undo structures in system
561.10Slukemoptions 	SYSVSHM		# System V-like memory sharing
571.27Ssoda#options 	SHMMAXPGS=1024	# 1024 pages is the default
581.27Ssoda
591.27Ssodaoptions 	LKM		# loadable kernel modules
601.61Sjdolecek
611.70Slukemoptions 	USERCONF	# userconf(4) support
621.61Sjdolecek#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
631.75Sjunyoung
641.76Swiz# Enable experimental buffer queue strategy for better responsiveness under 
651.75Sjunyoung# high disk I/O load. Use it with caution - it's not proven to be stable yet.
661.75Sjunyoung#options 	NEW_BUFQ_STRATEGY
671.27Ssoda
681.27Ssoda# Diagnostic/debugging support options
691.55Slukemoptions 	DIAGNOSTIC		# cheap kernel consistency checks
701.55Slukem#options 	DEBUG			# expensive debugging checks/support
711.55Slukem#options 	KMEMSTATS		# kernel memory statistics (vmstat -m)
721.55Slukemoptions 	DDB			# in-kernel debugger
731.27Ssoda#options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
741.55Slukem#options 	KGDB			# remote gdb
751.55Slukem#options 	KGDB_DEVRATE=19200	# kernel gdb port rate (default 9600)
761.55Slukem#options 	KGDB_DEV="17*256+0"	# device for kernel gdb
771.55Slukem#makeoptions	DEBUG="-g"		# compile full symbol table
781.27Ssoda
791.27Ssoda# Compatibility options
801.47Sabs#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
811.27Ssodaoptions 	COMPAT_10	# NetBSD 1.0,
821.27Ssodaoptions 	COMPAT_11	# NetBSD 1.1,
831.27Ssodaoptions 	COMPAT_12	# NetBSD 1.2,
841.27Ssodaoptions 	COMPAT_13	# NetBSD 1.3,
851.27Ssodaoptions 	COMPAT_14	# NetBSD 1.4,
861.27Ssodaoptions 	COMPAT_43	# and 4.3BSD
871.27Ssodaoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
881.27Ssoda
891.27Ssoda# mipsel specific
901.27Ssodaoptions 	COMPAT_ULTRIX	# Ultrix binary compatibility
911.27Ssodaoptions 	EXEC_ECOFF	# Ultrix RISC binaries are ECOFF format
921.1Sjonathan
931.27Ssoda# File systems
941.6Sthorpejfile-system 	FFS		# fast filesystem
951.27Ssodafile-system 	EXT2FS		# second extended file system (linux)
961.27Ssodafile-system 	LFS		# log-structured file system
971.27Ssodafile-system 	MFS		# memory file system
981.27Ssodafile-system 	NTFS		# Windows/NT file system (experimental)
991.23Ssodafile-system 	CD9660		# ISO 9660 + Rock Ridge file system
1001.27Ssodafile-system 	MSDOSFS		# MS-DOS file system
1011.27Ssodafile-system 	NFS		# Network File System client
1021.27Ssodafile-system 	FDESC		# /dev/fd
1031.27Ssodafile-system 	KERNFS		# /kern
1041.27Ssodafile-system 	NULLFS		# loopback file system
1051.27Ssodafile-system 	OVERLAY		# overlay file system
1061.27Ssodafile-system 	PORTAL		# portal filesystem (still experimental)
1071.27Ssodafile-system 	PROCFS		# /proc
1081.27Ssodafile-system 	UMAPFS		# NULLFS + uid and gid remapping
1091.27Ssodafile-system 	UNION		# union file system
1101.27Ssoda#file-system	CODA		# Coda File System; also needs vcoda (below)
1111.6Sthorpej
1121.27Ssoda# File system options
1131.10Slukemoptions 	QUOTA		# FFS quotas
1141.27Ssoda#options 	FFS_EI		# FFS Endian Independent support
1151.34Sfvdloptions 	SOFTDEP		# FFS soft updates support.
1161.27Ssodaoptions 	NFSSERVER	# Network File System server
1171.27Ssoda#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1181.27Ssoda				# immutable) behave as system flags.
1191.20Sitojun
1201.1Sjonathan# Networking options
1211.23Ssoda#options 	GATEWAY		# IP packet forwarding
1221.27Ssodaoptions 	INET		# IP + ICMP + TCP + UDP
1231.27Ssodaoptions 	INET6		# IPV6
1241.20Sitojun#options 	IPSEC		# IP security
1251.20Sitojun#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1261.20Sitojun#options 	IPSEC_DEBUG	# debug for IP security
1271.27Ssoda#options 	MROUTING	# IP multicast routing
1281.27Ssodaoptions 	NS		# XNS
1291.27Ssoda#options 	NSIP		# XNS tunneling over IP
1301.27Ssodaoptions 	ISO,TPIP	# OSI networking
1311.36Ssommerfe#options 	EON		# OSI tunneling over IP
1321.27Ssodaoptions 	CCITT,LLC,HDLC	# X.25
1331.27Ssodaoptions 	NETATALK	# AppleTalk networking protocols
1341.27Ssodaoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1351.27Ssodaoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1361.27Ssodaoptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1371.27Ssodaoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1381.27Ssodaoptions 	IPFILTER_LOG	# ipmon(8) log support
1391.72Smartti#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
1401.47Sabs#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1411.27Ssoda
1421.27Ssoda# These options enable verbose messages for several subsystems.
1431.27Ssoda# Warning, these may compile large string tables into the kernel!
1441.27Ssoda#options 	EISAVERBOSE	# verbose EISA device autoconfig messages
1451.31Ssodaoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1461.28Scgd#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1471.27Ssodaoptions 	SCSIVERBOSE	# human readable SCSI error messages
1481.37Sur
1491.37Sur# wscons terminal emulation
1501.37Suroptions 	WSEMUL_VT100	# VT100 emulation
1511.23Ssoda
1521.25Ssoda# Kernel root file system and dump configuration.
1531.27Ssodaoptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
1541.27Ssodaconfig		netbsd	root on ? type ?
1551.27Ssoda#config		netbsd	root on sd0a type ffs
1561.27Ssoda#config		netbsd	root on ? type nfs
1571.1Sjonathan
1581.23Ssoda#
1591.27Ssoda# Device configuration
1601.23Ssoda#
1611.27Ssoda
1621.1Sjonathanmainbus0	at root
1631.1Sjonathancpu*		at mainbus0
1641.1Sjonathan
1651.41Sur#### Jazz-Internal bus devices
1661.23Ssoda
1671.45Ssoda# PLATFORM_ACER_PICA_61
1681.45Ssoda# PLATFORM_MICROSOFT_JAZZ
1691.77Stsutsui# PLATFORM_NEC_J96A
1701.45Ssoda# PLATFORM_NEC_JC94
1711.45Ssoda# PLATFORM_NEC_R94
1721.45Ssoda# PLATFORM_NEC_R96
1731.45Ssoda# PLATFORM_NEC_RAX94
1741.45Ssoda# PLATFORM_NEC_RD94
1751.45Ssodajazzio*		at mainbus0	# Jazz-Internal bus host bridge.
1761.45Ssoda
1771.45Ssodatimer0		at jazzio?
1781.45Ssodamcclock0 	at jazzio?
1791.41Sur#pc0		at jazzio?
1801.41Sur#opms0		at jazzio?
1811.41Survga0		at jazzio?	# Jazz localbus VGA
1821.41Surpckbc0		at jazzio?	# PC keyboard controller
1831.41Surcom0		at jazzio?
1841.41Surcom1		at jazzio?
1851.41Surlpt0		at jazzio?
1861.41Sursn0		at jazzio?
1871.1Sjonathan
1881.41Surfdc0		at jazzio?
1891.1Sjonathanfd*		at fdc? drive ?
1901.1Sjonathan
1911.42Stsutsuiasc0		at jazzio?			# NCR53C9x SCSI
1921.1Sjonathanscsibus* 	at asc?
1931.1Sjonathan
1941.42Stsutsuiosiop0		at jazzio? flags 0x00000	# NCR53C710 SCSI
1951.42Stsutsuiosiop1		at jazzio? flags 0x00000
1961.42Stsutsuiscsibus* 	at osiop?
1971.42Stsutsui
1981.42Stsutsui#oosiop0 	at jazzio?			# NCR53C700 SCSI
1991.42Stsutsui#oosiop1 	at jazzio?
2001.42Stsutsui#scsibus* 	at oosiop?
2011.33Ssoda
2021.27Ssoda#### ISA bus devices
2031.23Ssoda
2041.45Ssoda# PLATFORM_ACER_PICA_61
2051.45Ssoda# PLATFORM_MICROSOFT_JAZZ
2061.77Stsutsui# PLATFORM_NEC_J96A
2071.45Ssoda# PLATFORM_NEC_R94
2081.45Ssoda# PLATFORM_NEC_R96
2091.45Ssodajazzisabr*	at mainbus0	# Jazz-(E)ISA bus bridge.
2101.45Ssodaisa*		at jazzisabr?
2111.45Ssoda
2121.45Ssoda# PLATFORM_DESKTECH_ARCSTATION_I
2131.45Ssodaarcsisabr*	at mainbus0	# DESKstation rPC44 ISA host bridge.
2141.45Ssodaisa*		at arcsisabr?
2151.45Ssoda
2161.45Ssoda# PLATFORM_DESKTECH_TYNE
2171.45Ssodatyneisabr*	at mainbus0	# DESKstation Tyne ISA host bridge.
2181.45Ssodaisa*		at tyneisabr?
2191.45Ssoda
2201.27Ssoda#isadma0 	at isa?
2211.23Ssoda
2221.45Ssodatimer0		at isa? port 0x40 irq 0
2231.45Ssodamcclock0 	at isa? port 0x70
2241.23Ssoda
2251.45Ssodapc0		at isa? irq 1			# generic PC console device
2261.45Ssodaopms0		at isa? irq 12			# PS/2 auxiliary port mouse
2271.33Ssoda#vga0		at isa?
2281.33Ssoda#pckbc0		at isa?				# PC keyboard controller
2291.23Ssodacom0		at isa? port 0x3f8 irq 4
2301.23Ssodacom1		at isa? port 0x2f8 irq 3
2311.23Ssodacom2		at isa? port 0x3e8 irq 4
2321.23Ssodacom3		at isa? port 0x2e8 irq 3
2331.27Ssodaast0		at isa? port 0x1a0 irq 3	# AST 4-port serial cards
2341.27Ssodacom*		at ast? slave ?
2351.27Ssoda
2361.27Ssoda# Joystick driver. Probe is a little strange; add only if you have one.
2371.27Ssoda#joy0		at isa? port 0x201
2381.23Ssoda
2391.23Ssoda# ISA ST506, ESDI, and IDE controllers
2401.23Ssoda# Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
2411.23Ssoda# fall back to 16bits I/O if 32bits I/O are not functional).
2421.23Ssoda# Some controllers pass the initial 32bit test, but will fail later.
2431.23Ssoda# XXX - should be configured
2441.27Ssoda#wdc0		at isa? port 0x1f0 irq 14 flags 0x00
2451.27Ssoda#wdc1		at isa? port 0x170 irq 15 flags 0x00
2461.27Ssoda#wdc*		at isapnp?
2471.23Ssoda
2481.23Ssoda# IDE drives
2491.23Ssoda# Flags are used only with controllers that support DMA operations
2501.23Ssoda# and mode settings (e.g. some pciide controllers)
2511.23Ssoda# The lowest order four bits (rightmost digit) of the flags define the PIO
2521.23Ssoda# mode to use, the next set of four bits the DMA mode and the third set the
2531.23Ssoda# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
2541.23Ssoda# to use, and the last bit must be 1 for this setting to be used.
2551.23Ssoda# For DMA and UDMA, 0xf (1111) means 'disable'.
2561.23Ssoda# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
2571.23Ssoda# (0xc=1100, 0xa=1010, 0xf=1111)
2581.23Ssoda# 0x0000 means "use whatever the drive claims to support".
2591.23Ssoda# XXX - should be configured
2601.27Ssoda#wd*		at wdc? channel ? drive ? flags 0x0000
2611.23Ssoda
2621.23Ssoda# ATAPI bus support
2631.23Ssoda# XXX - should be configured
2641.27Ssoda#atapibus*	at wdc? channel ?
2651.23Ssoda
2661.27Ssoda# ISA parallel printer interfaces
2671.27Ssodalpt0		at isa? port 0x378 irq 7
2681.27Ssoda
2691.27Ssoda# ISA network interfaces
2701.27Ssoda# XXX - should be configured
2711.27Ssoda#ec0		at isa? port 0x250 iomem 0xd8000 irq 9	# 3Com 3c503 Ethernet
2721.27Ssoda#ep0		at isa? port ? irq ?		# 3C509 ethernet cards
2731.27Ssoda#ne0		at isa? port 0x280 irq 9	# NE[12]000 ethernet cards
2741.27Ssoda#ne1		at isa? port 0x300 irq 10
2751.27Ssoda#ne*		at isapnp?			# NE[12]000 PnP ethernet
2761.27Ssoda#we0		at isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
2771.27Ssoda#we1		at isa? port 0x300 iomem 0xcc000 irq 10
2781.27Ssoda#we*		at isapnp?
2791.23Ssoda
2801.27Ssoda# XXX - should be configured
2811.27Ssoda#btl0		at isa? port 0x330 irq ? drq ?
2821.27Ssoda#scsibus*	at btl?
2831.23Ssoda
2841.27Ssoda#### PCI bus devices
2851.23Ssoda
2861.45Ssoda# PLATFORM_NEC_JC94
2871.45Ssoda# PLATFORM_NEC_RAX94
2881.45Ssoda# PLATFORM_NEC_RD94
2891.31Ssodanecpb*		at mainbus0	# NEC RISCstation PCI host bridge.
2901.31Ssodapci*		at necpb?
2911.23Ssoda
2921.27Ssoda#pcivga* 	at pci? dev ? function ?
2931.43Stsutsuitga*		at pci? dev ? function ?	# DEC ZLXp-E[123] Graphics
2941.43Stsutsui
2951.43Stsutsuiahc*		at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
2961.43Stsutsuiscsibus*	at ahc?
2971.44Stsutsui
2981.44Stsutsuiiha*		at pci? dev ? function ?	# Initio INIC-940/950 SCSI
2991.44Stsutsuiscsibus*	at iha?
3001.43Stsutsui
3011.52Stsutsuipcscp*		at pci? dev ? function ?	# AMD Am53c974 PCscsi-PCI SCSI
3021.52Stsutsuiscsibus* 	at pcscp?
3031.52Stsutsui
3041.51Stsutsuisiop*		at pci? dev ? function ?	# NCR/Symbios 53c8xx SCSI
3051.51Stsutsuiscsibus* 	at siop?
3061.53Stsutsui
3071.53Stsutsuitrm*		at pci? dev ? function ?	# Tekram DC-395/315 SCSI
3081.53Stsutsuiscsibus*	at trm?
3091.43Stsutsui
3101.52Stsutsuiepic*		at pci? dev ? function ?	# SMC EPIC/100 Ethernet
3111.48Shubertfex*		at pci? dev ? function ?	# 3Com 90x[BC]
3121.31Ssodafxp*		at pci? dev ? function ?	# Intel EtherExpress PRO
3131.31Ssodane*		at pci? dev ? function ?	# NE2000-compatible
3141.52Stsutsuipcn*		at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
3151.64Stsutsuirtk*		at pci? dev ? function ?	# Realtek 8129/8139
3161.52Stsutsuisip*		at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
3171.67Smycrofttlp*		at pci? dev ? function ?	# DECchip 21x4x and clones
3181.31Ssoda
3191.31Ssoda# IDE and related devices
3201.31Ssoda# PCI IDE controllers - see pciide(4) for supported hardware.
3211.31Ssoda# The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
3221.31Ssoda# how to set up DMA modes for this chip. This may work, or may cause
3231.31Ssoda# a machine hang with some controllers.
3241.31Ssodapciide*		at pci ? dev ? function ? flags 0x0000
3251.31Ssodawd*		at pciide? channel ? drive ? flags 0x0000
3261.31Ssodaatapibus*	at pciide? channel ?
3271.31Ssoda
3281.31Ssoda#### MII/PHY support
3291.31Ssoda
3301.31Ssodaexphy*		at mii? phy ?		# 3Com internal PHYs
3311.62Swizicsphy*		at mii? phy ?		# Integrated Circuit Systems ICS189x
3321.31Ssodainphy*		at mii? phy ?		# Intel 82555 PHYs
3331.31Ssodaiophy*		at mii? phy ?		# Intel 82553 PHYs
3341.31Ssodalxtphy*		at mii? phy ?		# Level One LXT-970 PHYs
3351.31Ssodansphy*		at mii? phy ?		# NS83840 PHYs
3361.31Ssodansphyter*	at mii? phy ?		# NS83843 PHYs
3371.31Ssodaqsphy*		at mii? phy ?		# Quality Semiconductor QS6612 PHYs
3381.31Ssodasqphy*		at mii? phy ?		# Seeq 80220/80221/80223 PHYs
3391.31Ssodatlphy*		at mii? phy ?		# ThunderLAN PHYs
3401.31Ssodatqphy*		at mii? phy ?		# TDK Semiconductor PHYs
3411.31Ssodaukphy*		at mii? phy ?		# generic unknown PHYs
3421.31Ssoda
3431.27Ssoda#### SCSI bus devices
3441.23Ssoda
3451.1Sjonathansd*		at scsibus? target ? lun ?
3461.1Sjonathanst*		at scsibus? target ? lun ?
3471.1Sjonathancd*		at scsibus? target ? lun ?
3481.23Ssodach*		at scsibus? target ? lun ?
3491.23Ssodass*		at scsibus? target ? lun ?
3501.23Ssodauk*		at scsibus? target ? lun ?
3511.31Ssoda
3521.31Ssoda#### ATAPI bus devices
3531.31Ssoda
3541.31Ssoda# flags have the same meaning as for IDE drives.
3551.31Ssodacd*		at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
3561.31Ssodasd*		at atapibus? drive ? flags 0x0000	# ATAPI disk drives
3571.31Ssodauk*		at atapibus? drive ? flags 0x0000	# ATAPI unknown
3581.33Ssoda
3591.33Ssoda#### Workstation Console attachments
3601.33Ssoda
3611.33Ssodawsdisplay*	at vga?
3621.33Ssodawsdisplay*	at tga?
3631.33Ssodapckbd*		at pckbc?	# PC keyboard (kbd port)
3641.33Ssodawskbd*		at pckbd?
3651.33Ssodapms*		at pckbc?	# PS/2-style mouse (aux port)
3661.33Ssodawsmouse*	at pms?
3671.23Ssoda
3681.27Ssoda#### Pseudo devices
3691.1Sjonathan
3701.27Ssoda# disk/mass storage pseudo-devices
3711.27Ssodapseudo-device	ccd		4	# concatenated/striped disk devices
3721.74Selric#pseudo-device	cgd		4	# cryptographic disk devices
3731.60Sosterpseudo-device	raid		8	# RAIDframe disk driver
3741.60Soster# Options to enable various other RAIDframe RAID types.
3751.60Soster# options	RF_INCLUDE_EVENODD=1
3761.60Soster# options	RF_INCLUDE_RAID5_RS=1
3771.60Soster# options	RF_INCLUDE_PARITYLOGGING=1
3781.60Soster# options	RF_INCLUDE_CHAINDECLUSTER=1
3791.60Soster# options	RF_INCLUDE_INTERDECLUSTER=1
3801.60Soster# options 	RF_INCLUDE_PARITY_DECLUSTERING=1
3811.60Soster# options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
3821.27Ssodapseudo-device	md		1	# memory disk device (ramdisk)
3831.27Ssodapseudo-device	vnd		4	# disk-like interface to files
3841.27Ssoda
3851.27Ssoda# network pseudo-devices
3861.27Ssodapseudo-device	bpfilter	8	# Berkeley packet filter
3871.27Ssodapseudo-device	ipfilter		# IP filter (firewall) and NAT
3881.27Ssodapseudo-device	loop		1	# network loopback
3891.27Ssodapseudo-device	ppp		2	# Point-to-Point Protocol
3901.59Smartinpseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
3911.27Ssodapseudo-device	sl		2	# Serial Line IP
3921.27Ssoda#pseudo-device	strip		2	# Starmode Radio IP (Metricom)
3931.27Ssodapseudo-device	tun		2	# network tunneling over tty
3941.23Ssoda#pseudo-device	gre		2	# generic L3 over IP tunnel
3951.20Sitojunpseudo-device	gif		4	# IPv[46] over IPv[46] tunnel (RFC1933)
3961.20Sitojun#pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
3971.29Sitojun#pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
3981.40Sbouyerpseudo-device	vlan			# IEEE 802.1q encapsulation
3991.57Satatatpseudo-device	bridge			# simple inter-network bridging
4001.23Ssoda
4011.27Ssoda# miscellaneous pseudo-devices
4021.39Sjdolecekpseudo-device	pty			# pseudo-terminals
4031.27Ssodapseudo-device	tb		1	# tablet line discipline
4041.27Ssoda#pseudo-device	sequencer	1	# MIDI sequencer
4051.27Ssoda# rnd works; RND_COM does not on port arc yet.
4061.27Ssodapseudo-device	rnd			# /dev/random and in-kernel generator
4071.27Ssoda#options 	RND_COM			# use "com" randomness as well (BROKEN)
4081.69Slukempseudo-device	clockctl		# user control of clock subsystem
4091.27Ssoda
4101.27Ssoda# a pseudo device needed for Coda	# also needs CODA (above)
4111.27Ssoda#pseudo-device	vcoda		4	# coda minicache <-> venus comm.
4121.27Ssoda
4131.27Ssoda# mouse & keyboard multiplexor pseudo-devices
4141.54Saugustss#pseudo-device	wsmux
415