GENERIC.MP revision 1.1
11.1Sgarbled# $NetBSD: GENERIC.MP,v 1.1 2008/04/08 02:33:03 garbled Exp $
21.1Sgarbled#
31.1Sgarbled# GENERIC machine description file
41.1Sgarbled# 
51.1Sgarbled# This machine description file is used to generate the default NetBSD
61.1Sgarbled# kernel.  The generic kernel does not include all options, subsystems
71.1Sgarbled# and device drivers, but should be useful for most applications.
81.1Sgarbled#
91.1Sgarbled# The machine description file can be customised for your specific
101.1Sgarbled# machine to reduce the kernel size and improve its performance.
111.1Sgarbled#
121.1Sgarbled# For further information on compiling NetBSD kernels, see the config(8)
131.1Sgarbled# man page.
141.1Sgarbled#
151.1Sgarbled# For further information on hardware support for this architecture, see
161.1Sgarbled# the intro(4) man page.  For further information about kernel options
171.1Sgarbled# for this architecture, see the options(4) man page.  For an explanation
181.1Sgarbled# of each device driver in this file see the section 4 man page for the
191.1Sgarbled# device.
201.1Sgarbled
211.1Sgarbledinclude 	"arch/ofppc/conf/std.ofppc"
221.1Sgarbled
231.1Sgarbledoptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.1Sgarbled
251.1Sgarbled#ident 		"GENERIC-$Revision: 1.1 $"
261.1Sgarbled
271.1Sgarbledmaxusers	32
281.1Sgarbled
291.1Sgarbledoptions 	PIC_OPENPIC
301.1Sgarbledoptions 	PIC_DISTOPENPIC
311.1Sgarbledoptions 	PIC_I8259
321.1Sgarbled#options 	PIC_PREPIVR
331.1Sgarbled
341.1Sgarbled# SMP options
351.1Sgarbledoptions 	MULTIPROCESSOR
361.1Sgarbledoptions 	IPI_OPENPIC
371.1Sgarbledoptions		PMAP_NEED_FULL_MAPKERNEL
381.1Sgarbled
391.1Sgarbled# various hacks due to bugs in Openfirmware implementation
401.1Sgarbledoptions 	FIRMWORKSBUGS
411.1Sgarbled
421.1Sgarbled# Standard system options
431.1Sgarbledoptions 	INSECURE	# disable kernel security checks
441.1Sgarbled#options 	NTP		# NTP phase/frequency locked loop
451.1Sgarbledoptions 	KTRACE		# system call tracing via ktrace(1)
461.1Sgarbled
471.1Sgarbledoptions 	SYSVMSG		# System V message queues
481.1Sgarbledoptions 	SYSVSEM		# System V semaphores
491.1Sgarbledoptions 	SYSVSHM		# System V shared memory
501.1Sgarbledoptions 	P1003_1B_SEMAPHORE # p1003.1b semaphore support
511.1Sgarbled
521.1Sgarbledoptions 	LKM		# loadable kernel modules
531.1Sgarbled
541.1Sgarbledoptions 	USERCONF	# userconf(4) support
551.1Sgarbled#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
561.1Sgarbledoptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
571.1Sgarbled
581.1Sgarbled# Diagnostic/debugging support options
591.1Sgarbled#options 	DIAGNOSTIC	# cheap kernel consistency checks
601.1Sgarbled#options 	DEBUG		# expensive debugging checks/support
611.1Sgarbled#options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
621.1Sgarbledoptions 	DDB		# in-kernel debugger
631.1Sgarbledoptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
641.1Sgarbledoptions 	DDB_VERBOSE_HELP
651.1Sgarbledoptions 	TRAP_PANICWAIT
661.1Sgarbled
671.1Sgarbledmakeoptions	DEBUG="-g"	# compile full symbol table
681.1Sgarbled
691.1Sgarbled# Compatibility option
701.1Sgarbledoptions 	COMPAT_09	# NetBSD 0.9,
711.1Sgarbledoptions 	COMPAT_10	# NetBSD 1.0,
721.1Sgarbledoptions 	COMPAT_11	# NetBSD 1.1,
731.1Sgarbledoptions 	COMPAT_12	# NetBSD 1.2,
741.1Sgarbledoptions 	COMPAT_13	# NetBSD 1.3,
751.1Sgarbledoptions 	COMPAT_14	# NetBSD 1.4,
761.1Sgarbledoptions 	COMPAT_15	# NetBSD 1.5,
771.1Sgarbledoptions 	COMPAT_16	# NetBSD 1.6,
781.1Sgarbledoptions 	COMPAT_20	# NetBSD 2.0,
791.1Sgarbledoptions 	COMPAT_30	# NetBSD 3.0 compatibility.
801.1Sgarbledoptions 	COMPAT_40	# NetBSD 4.0 compatibility.
811.1Sgarbledoptions 	COMPAT_43	# and 4.3BSD
821.1Sgarbledoptions 	COMPAT_386BSD_MBRPART # recognize old partition ID
831.1Sgarbled#options 	COMPAT_LINUX	# Linux binary compatibility
841.1Sgarbled#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
851.1Sgarbledoptions 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
861.1Sgarbled
871.1Sgarbled# File systems
881.1Sgarbledfile-system 	FFS		# UFS
891.1Sgarbledfile-system 	EXT2FS		# second extended file system (linux)
901.1Sgarbledfile-system 	LFS		# log-structured file system
911.1Sgarbledfile-system 	MFS		# memory file system
921.1Sgarbledfile-system 	NFS		# Network file System client
931.1Sgarbledfile-system 	CD9660		# ISO 9660 + Rock Ridge file system
941.1Sgarbledfile-system 	MSDOSFS		# MS-DOS file system
951.1Sgarbledfile-system 	ADOSFS		# AmigaDOS file system
961.1Sgarbledfile-system 	FDESC		# /dev/fd
971.1Sgarbledfile-system 	KERNFS		# /kern
981.1Sgarbledfile-system 	NULLFS		# loopback file system
991.1Sgarbledfile-system 	OVERLAY		# overlay file system
1001.1Sgarbledfile-system 	PORTAL		# portal file system (still experimental)
1011.1Sgarbledfile-system 	PROCFS		# /proc
1021.1Sgarbledfile-system 	UMAPFS		# NULLFS + uid and gid remapping
1031.1Sgarbledfile-system 	UNION		# union file system
1041.1Sgarbledfile-system 	NTFS		# Windows NT file system
1051.1Sgarbledfile-system	PTYFS		# /dev/pts/N support
1061.1Sgarbled#file-system	TMPFS		# Efficient memory file-system
1071.1Sgarbled#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
1081.1Sgarbled
1091.1Sgarbled# File system options
1101.1Sgarbledoptions 	QUOTA		# UFS quotas
1111.1Sgarbledoptions 	FFS_EI		# FFS Endian Independent support
1121.1Sgarbledoptions 	SOFTDEP		# FFS soft updates support
1131.1Sgarbled#options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
1141.1Sgarbledoptions 	NFSSERVER	# Network File System server
1151.1Sgarbled#options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
1161.1Sgarbled#options 	EXT2FS_SYSTEM_FLAGS	# makes ext2fs file flags (append and
1171.1Sgarbled					# immutable) behave as system flags.
1181.1Sgarbled
1191.1Sgarbledoptions 	NFS_BOOT_DHCP	# Support DHCP NFS root
1201.1Sgarbled
1211.1Sgarbled# Networking options
1221.1Sgarbled#options 	GATEWAY		# packet forwarding
1231.1Sgarbledoptions 	INET		# IP + ICMP + TCP + UDP
1241.1Sgarbledoptions 	INET6		# IPV6
1251.1Sgarbled#options 	IPSEC		# IP security
1261.1Sgarbled#options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
1271.1Sgarbled#options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
1281.1Sgarbled#options 	IPSEC_DEBUG	# debug for IP security
1291.1Sgarbled#options 	MROUTING	# IP multicast routing
1301.1Sgarbled#options 	PIM		# Protocol Independent Multicast
1311.1Sgarbled#options 	ISO,TPIP	# OSI
1321.1Sgarbled#options 	EON		# OSI tunneling over IP
1331.1Sgarbled#options 	NETATALK	# AppleTalk networking protocols
1341.1Sgarbledoptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1351.1Sgarbledoptions 	PPP_DEFLATE	# Deflate compression support for PPP
1361.1Sgarbledoptions 	PPP_FILTER	# Active filter support for PPP (requires BPF)
1371.1Sgarbledoptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1381.1Sgarbledoptions 	IPFILTER_LOG	# ipmon(8) log support
1391.1Sgarbledoptions 	IPFILTER_LOOKUP	# ippool(8) support
1401.1Sgarbled#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
1411.1Sgarbledoptions 	NMBCLUSTERS=1024
1421.1Sgarbled#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1431.1Sgarbled
1441.1Sgarbled#options 	ALTQ		# Manipulate network interfaces' output queues
1451.1Sgarbled#options 	ALTQ_BLUE	# Stochastic Fair Blue
1461.1Sgarbled#options 	ALTQ_CBQ	# Class-Based Queueing
1471.1Sgarbled#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
1481.1Sgarbled#options 	ALTQ_FIFOQ	# First-In First-Out Queue
1491.1Sgarbled#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
1501.1Sgarbled#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
1511.1Sgarbled#options 	ALTQ_LOCALQ	# Local queueing discipline
1521.1Sgarbled#options 	ALTQ_PRIQ	# Priority Queueing
1531.1Sgarbled#options 	ALTQ_RED	# Random Early Detection
1541.1Sgarbled#options 	ALTQ_RIO	# RED with IN/OUT
1551.1Sgarbled#options 	ALTQ_WFQ	# Weighted Fair Queueing
1561.1Sgarbled
1571.1Sgarbled# These options enable verbose messages for several subsystems.
1581.1Sgarbled# Warning, these may compile large string tables into the kernel!
1591.1Sgarbledoptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1601.1Sgarbledoptions 	PCIVERBOSE	# verbose PCI device autoconfig messages
1611.1Sgarbled#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1621.1Sgarbledoptions 	SCSIVERBOSE	# human readable SCSI error messages
1631.1Sgarbledoptions 	USBVERBOSE	# verbose USB device autoconfig messages
1641.1Sgarbled
1651.1Sgarbledoptions 	WSEMUL_VT100
1661.1Sgarbledoptions 	WS_DEFAULT_FG=WSCOL_BLACK
1671.1Sgarbledoptions 	WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
1681.1Sgarbledoptions 	WS_KERNEL_FG=WSCOL_GREEN
1691.1Sgarbledoptions 	WS_KERNEL_BG=WSCOL_LIGHT_WHITE
1701.1Sgarbled#options 	FONT_GALLANT12x22
1711.1Sgarbledoptions 	FONT_BOLD8x16
1721.1Sgarbled
1731.1Sgarbled# Kernel root file system and dump configuration
1741.1Sgarbledconfig		netbsd	root on ? type ?
1751.1Sgarbled
1761.1Sgarbled#
1771.1Sgarbled# Device configuration
1781.1Sgarbled#
1791.1Sgarbled
1801.1Sgarbledmainbus*	at root
1811.1Sgarbled
1821.1Sgarbled# CPUs
1831.1Sgarbledcpu*		at mainbus?
1841.1Sgarbled
1851.1Sgarbled# Generic OpenFirmware console support
1861.1Sgarbledrtas*		at mainbus?
1871.1Sgarbled
1881.1Sgarbled# PCI root nodes
1891.1Sgarbledofwpci*		at mainbus?
1901.1Sgarbledpci*		at ofwpci? bus ?
1911.1Sgarbledpegasospci*	at mainbus?
1921.1Sgarbledpci*		at pegasospci? bus ?
1931.1Sgarbled
1941.1Sgarbled# PCI bridges
1951.1Sgarbledpchb*		at pci? dev ? function ?
1961.1Sgarbledppb*		at pci? dev ? function ?
1971.1Sgarbledpcib*		at pci? dev ? function ?
1981.1Sgarbled
1991.1Sgarbled# ISA bus support
2001.1Sgarbledisa*		at pcib?
2011.1Sgarbled
2021.1Sgarbled# Console Devices
2031.1Sgarbledgenfb*		at pci? dev ? function ?
2041.1Sgarbled#radeonfb*	at pci? dev ? function ?
2051.1Sgarbledpckbc0		at isa?			# pc keyboard controller
2061.1Sgarbledpckbd*		at pckbc?		# PC keyboard
2071.1Sgarbledpms*		at pckbc?		# PS/2 mouse for wsmouse
2081.1Sgarbled#wscons stuff
2091.1Sgarbledwskbd*		at pckbd? console ?
2101.1Sgarbledwsmouse*	at pms? mux 0
2111.1Sgarbled# make sure the console display is always wsdisplay0 XXX Why?
2121.1Sgarbledwsdisplay0      at wsemuldisplaydev? console 1
2131.1Sgarbledwsdisplay*      at wsemuldisplaydev?
2141.1Sgarbled
2151.1Sgarbledattimer0	at isa?			# AT Timer
2161.1Sgarbledpcppi0		at isa?			# PC prog. periph. interface
2171.1Sgarbled# FIX ISABEEP LATER
2181.1Sgarbled
2191.1Sgarbled# Serial Devices
2201.1Sgarbled# ISA serial interfaces
2211.1Sgarbledcom0	at isa? port 0x3f8 irq 4	# standard PC serial ports
2221.1Sgarbledcom1	at isa? port 0x2f8 irq 3
2231.1Sgarbled
2241.1Sgarbled# Parallel Printer Interfaces
2251.1Sgarbled# ISA parallel printer interfaces
2261.1Sgarbledlpt0		at isa? port 0x3bc irq 7	# standard PC parallel ports
2271.1Sgarbled
2281.1Sgarbled# SCSI Controllers and Devices
2291.1Sgarbledsiop*		at pci? dev ? function ?	# Symbios 53c8xx SCSI
2301.1Sgarbledesiop*		at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
2311.1Sgarbled
2321.1Sgarbled# SCSI bus support
2331.1Sgarbledscsibus* 	at siop?
2341.1Sgarbledscsibus* 	at esiop?
2351.1Sgarbledscsibus* 	at umass?
2361.1Sgarbled
2371.1Sgarbled# SCSI devices
2381.1Sgarbledsd*		at scsibus? target ? lun ?	# SCSI disk drives
2391.1Sgarbledst*		at scsibus? target ? lun ?	# SCSI tape drives
2401.1Sgarbledcd*		at scsibus? target ? lun ?	# SCSI CD-ROM drives
2411.1Sgarbled#ch*		at scsibus? target ? lun ?	# SCSI autochangers
2421.1Sgarbled#ss*		at scsibus? target ? lun ?	# SCSI scanners
2431.1Sgarbled#uk*		at scsibus? target ? lun ?	# SCSI unknown
2441.1Sgarbled
2451.1Sgarbled# IDE and related devices
2461.1Sgarbled# PCI IDE controllers
2471.1Sgarbledpciide*		at pci? dev ? function ? flags 0x0000
2481.1Sgarbledviaide*		at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
2491.1Sgarbled
2501.1Sgarbled# ATA (IDE) bus support
2511.1Sgarbledatabus*		at ata?
2521.1Sgarbled
2531.1Sgarbled# IDE drives
2541.1Sgarbled# Flags are used only with controllers that support DMA operations
2551.1Sgarbled# and mode settings (e.g. some pciide controllers)
2561.1Sgarbled# The lowest order four bits (rightmost digit) of the flags define the PIO
2571.1Sgarbled# mode to use, the next set of four bits the DMA mode and the third set the
2581.1Sgarbled# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
2591.1Sgarbled# to use, and the last bit must be 1 for this setting to be used.
2601.1Sgarbled# For DMA and UDMA, 0xf (1111) means 'disable'.
2611.1Sgarbled# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
2621.1Sgarbled# (0xc=1100, 0xa=1010, 0xf=1111)
2631.1Sgarbled# 0x0000 means "use whatever the drive claims to support".
2641.1Sgarbledwd*	at atabus? drive ? flags 0x0000
2651.1Sgarbled
2661.1Sgarbled# ATAPI bus support
2671.1Sgarbledatapibus*	at atapi?
2681.1Sgarbled
2691.1Sgarbled# ATAPI devices
2701.1Sgarbled# flags have the same meaning as for IDE drives.
2711.1Sgarbledcd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
2721.1Sgarbledsd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
2731.1Sgarbleduk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
2741.1Sgarbled
2751.1Sgarbled# Network Interfaces
2761.1Sgarbledep*	at pci? dev ? function ?	# 3Com 3c59x
2771.1Sgarbledex*	at pci? dev ? function ?	# 3Com 3c90x[BC]
2781.1Sgarbledfxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
2791.1Sgarbledne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
2801.1Sgarbledpcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
2811.1Sgarbledre*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
2821.1Sgarbledrtk*	at pci? dev ? function ?	# Realtek 8129/8139
2831.1Sgarbledsip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
2841.1Sgarbledtlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
2851.1Sgarbledvr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
2861.1Sgarbled
2871.1Sgarbled# MII/PHY support
2881.1Sgarbledacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
2891.1Sgarbledamhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
2901.1Sgarbledbmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
2911.1Sgarbledbrgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
2921.1Sgarbledciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
2931.1Sgarbleddmphy*	at mii? phy ?			# Davicom DM9101 PHYs
2941.1Sgarbledexphy*	at mii? phy ?			# 3Com internal PHYs
2951.1Sgarbledgentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
2961.1Sgarbledglxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
2971.1Sgarbledgphyter* at mii? phy ?			# NS83861 Gig-E PHY
2981.1Sgarbledicsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
2991.1Sgarbledigphy*	at mii? phy ?			# Intel IGP01E1000
3001.1Sgarbledikphy*	at mii? phy ?			# Intel 82563 PHYs
3011.1Sgarbledinphy*	at mii? phy ?			# Intel 82555 PHYs
3021.1Sgarblediophy*	at mii? phy ?			# Intel 82553 PHYs
3031.1Sgarbledlxtphy* at mii? phy ?			# Level One LXT-970 PHYs
3041.1Sgarbledmakphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
3051.1Sgarblednsphy*	at mii? phy ?			# NS83840 PHYs
3061.1Sgarblednsphyter* at mii? phy ? 		# NS83843 PHYs
3071.1Sgarbledpnaphy* at mii? phy ?			# generic HomePNA PHYs
3081.1Sgarbledqsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
3091.1Sgarbledrgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
3101.1Sgarbledrlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
3111.1Sgarbledsqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
3121.1Sgarbledtlphy*	at mii? phy ?			# ThunderLAN PHYs
3131.1Sgarbledtqphy*	at mii? phy ?			# TDK Semiconductor PHYs
3141.1Sgarbledukphy*	at mii? phy ?			# generic unknown PHYs
3151.1Sgarbledurlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
3161.1Sgarbled
3171.1Sgarbled# PCI USB controllers
3181.1Sgarbleduhci*	at pci? dev ? function ?	# USB Universal Host Controller
3191.1Sgarbledohci*	at pci? dev ? function ?	# USB Open Host Controller
3201.1Sgarbledehci*	at pci? dev ? function ?	# USB Enhanced Host Controller
3211.1Sgarbled
3221.1Sgarbledusb*	at uhci?			# USB bus support
3231.1Sgarbledusb*	at ohci?			# USB bus support
3241.1Sgarbledusb*	at ehci?			# USB bus support
3251.1Sgarbleduhub*	at usb?				# USB Hubs
3261.1Sgarbleduhub*	at uhub? port ?
3271.1Sgarbled
3281.1Sgarbled# USB Mass Storage
3291.1Sgarbledumass*	at uhub? port ? configuration ? interface ?
3301.1Sgarbledwd*	at umass?
3311.1Sgarbled
3321.1Sgarbleduhidev*	at uhub? port ? configuration ? interface ?	# USB HID device
3331.1Sgarbled
3341.1Sgarbledums*	at uhidev? reportid ?				# USB Mice
3351.1Sgarbledwsmouse* at ums? mux 0
3361.1Sgarbled
3371.1Sgarbledukbd*	at uhidev? reportid ?				# USB Keyboards
3381.1Sgarbledwskbd*	at ukbd? console ? mux 1
3391.1Sgarbled
3401.1Sgarbleducycom*	at uhidev? reportid ?				# USB serial adapter
3411.1Sgarbleduhid*	at uhidev? reportid ?				# USB Generic HID
3421.1Sgarbledulpt*	at uhub? port ? configuration ? interface ?	# USB Printer
3431.1Sgarbledumodem*	at uhub? port ? configuration ?			# USB Modem
3441.1Sgarbleducom*	at umodem?
3451.1Sgarbled#uaudio*	at uhub? port ? configuration ?			# USB audio
3461.1Sgarbled
3471.1Sgarbled# D-Link DSB-R100 USB FM radio tuner
3481.1Sgarbled#udsbr* at uhub? port ?
3491.1Sgarbled#radio* at udsbr?
3501.1Sgarbled
3511.1Sgarbled# USB Ethernet adapters
3521.1Sgarbled#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
3531.1Sgarbled#axe*	at uhub? port ?		# ASIX AX88172 based adapters
3541.1Sgarbled#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
3551.1Sgarbled#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
3561.1Sgarbled#url*	at uhub? port ?		# Realtek RTL8150L based adapters
3571.1Sgarbled#udav*	at uhub? port ?		# Davicom DM9601 based adapters
3581.1Sgarbled
3591.1Sgarbled#ukyopon* at uhub? port ?				# Kyocera AIR-EDGE PHONE
3601.1Sgarbled#ucom*	at ukyopon? portno ?
3611.1Sgarbled
3621.1Sgarbled#uscanner* at uhub? port ?				# USB scanners
3631.1Sgarbled#uyap* at uhub? port ?					# Y@P firmware loader
3641.1Sgarbledugen*	at uhub? port ? configuration ? interface ?	# USB Generic driver
3651.1Sgarbled
3661.1Sgarbled# USB 802.11 adapters
3671.1Sgarbled#atu*	at uhub? port ?		# Atmel at76c50x 802.11b
3681.1Sgarbled#ral*	at uhub? port ?		# Ralink Technology RT25x0 802.11a/b/g
3691.1Sgarbled#zyd*	at uhub? port ?		# Zydas ZD1211
3701.1Sgarbled
3711.1Sgarbled# PCI IEEE1394 controllers
3721.1Sgarbledfwohci*	at pci? dev ? function ?	# IEEE1394 Open Host Controller
3731.1Sgarbled
3741.1Sgarbledieee1394if* at fwohci?
3751.1Sgarbledfwip*	at ieee1394if?			# IP over IEEE1394
3761.1Sgarbledsbp*	at ieee1394if? euihi ? euilo ?
3771.1Sgarbled
3781.1Sgarbled# Audio Devices
3791.1Sgarbled
3801.1Sgarbled# PCI audio devices
3811.1Sgarbledauvia*  at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
3821.1Sgarbled
3831.1Sgarbled# Audio support
3841.1Sgarbledaudio*	at audiobus?
3851.1Sgarbled
3861.1Sgarbled
3871.1Sgarbledpseudo-device	vnd			# disk-like interface to files
3881.1Sgarbled#options 	VND_COMPRESSION		# compressed vnd(4)
3891.1Sgarbledpseudo-device	ccd		4	# concatenated/striped disk devices
3901.1Sgarbled#pseudo-device	cgd		4	# cryptographic disk devices
3911.1Sgarbledpseudo-device	raid		8	# RAIDframe disk driver
3921.1Sgarbledoptions 	RAID_AUTOCONFIG		# auto-configuration of RAID components
3931.1Sgarbled# Options to enable various other RAIDframe RAID types.
3941.1Sgarbled#options 	RF_INCLUDE_EVENODD=1
3951.1Sgarbled#options 	RF_INCLUDE_RAID5_RS=1
3961.1Sgarbled#options 	RF_INCLUDE_PARITYLOGGING=1
3971.1Sgarbled#options 	RF_INCLUDE_CHAINDECLUSTER=1
3981.1Sgarbled#options 	RF_INCLUDE_INTERDECLUSTER=1
3991.1Sgarbled#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
4001.1Sgarbled#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
4011.1Sgarbledpseudo-device	fss		4	# file system snapshot device
4021.1Sgarbledpseudo-device	md		1	# memory disk device
4031.1Sgarbledpseudo-device	loop			# network loopback
4041.1Sgarbledpseudo-device	bpfilter		# packet filter
4051.1Sgarbled#pseudo-device	carp			# Common Address Redundancy Protocol
4061.1Sgarbledpseudo-device	ipfilter		# IP Filter (firewall) and NAT
4071.1Sgarbledpseudo-device	ppp			# Point-to-Point Protocol
4081.1Sgarbledpseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
4091.1Sgarbledpseudo-device	sl			# Serial Line IP
4101.1Sgarbledpseudo-device	tun			# network tunneling over tty
4111.1Sgarbledpseudo-device	tap			# virtual Ethernet
4121.1Sgarbled#pseudo-device	gre			# generic L3 over IP tunnel
4131.1Sgarbledpseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
4141.1Sgarbled#pseudo-device	faith			# IPv[46] tcp relay translation i/f
4151.1Sgarbledpseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
4161.1Sgarbledpseudo-device	vlan			# IEEE 802.1q encapsulation
4171.1Sgarbledpseudo-device	bridge			# simple inter-network bridging
4181.1Sgarbled#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
4191.1Sgarbledpseudo-device	agr			# IEEE 802.3ad link aggregation
4201.1Sgarbledpseudo-device	pty			# pseudo-terminals
4211.1Sgarbledpseudo-device	rnd			# /dev/random and in-kernel generator
4221.1Sgarbledpseudo-device	clockctl		# user control of clock subsystem
4231.1Sgarbledpseudo-device	openfirm		# /dev/openfirm
4241.1Sgarbledpseudo-device	ksyms			# /dev/ksyms
4251.1Sgarbledpseudo-device	wsmux			# mouse and keyboard multiplexor
4261.1Sgarbled#pseudo-device	pf			# PF packet filter
4271.1Sgarbled#pseudo-device	pflog			# PF log if
4281.1Sgarbled
4291.1Sgarbled# Veriexec
4301.1Sgarbled#
4311.1Sgarbled# a pseudo device needed for veriexec
4321.1Sgarbled#pseudo-device	veriexec		1
4331.1Sgarbled#
4341.1Sgarbled# Uncomment the fingerprint methods below that are desired. Note that
4351.1Sgarbled# removing fingerprint methods will have almost no impact on the kernel
4361.1Sgarbled# code size.
4371.1Sgarbled#
4381.1Sgarbled#options VERIFIED_EXEC_FP_RMD160
4391.1Sgarbled#options VERIFIED_EXEC_FP_SHA256
4401.1Sgarbled#options VERIFIED_EXEC_FP_SHA384
4411.1Sgarbled#options VERIFIED_EXEC_FP_SHA512
4421.1Sgarbled#options VERIFIED_EXEC_FP_SHA1
4431.1Sgarbled#options VERIFIED_EXEC_FP_MD5
444