Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.5
      1  1.5      manu # $NetBSD: GENERIC,v 1.5 2014/11/12 10:47:22 manu Exp $
      2  1.1     skrll #
      3  1.1     skrll # GENERIC machine description file
      4  1.1     skrll #
      5  1.1     skrll # This machine description file is used to generate the default NetBSD
      6  1.1     skrll # kernel.  The generic kernel does not include all options, subsystems
      7  1.1     skrll # and device drivers, but should be useful for most applications.
      8  1.1     skrll #
      9  1.1     skrll # The machine description file can be customised for your specific
     10  1.1     skrll # machine to reduce the kernel size and improve its performance.
     11  1.1     skrll #
     12  1.1     skrll # For further information on compiling NetBSD kernels, see the config(8)
     13  1.1     skrll # man page.
     14  1.1     skrll #
     15  1.1     skrll # For further information on hardware support for this architecture, see
     16  1.1     skrll # the intro(4) man page.  For further information about kernel options
     17  1.1     skrll # for this architecture, see the options(4) man page.  For an explanation
     18  1.1     skrll # of each device driver in this file see the section 4 man page for the
     19  1.1     skrll # device.
     20  1.1     skrll 
     21  1.1     skrll include 	"arch/hppa/conf/std.hppa"
     22  1.1     skrll 
     23  1.1     skrll options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24  1.1     skrll options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
     25  1.1     skrll 
     26  1.5      manu #ident 		"GENERIC-$Revision: 1.5 $"
     27  1.1     skrll 
     28  1.1     skrll maxusers	32		# estimated number of users
     29  1.1     skrll 
     30  1.1     skrll # CPU support.  At least one is REQUIRED.
     31  1.1     skrll options 	HP7000_CPU		# PCX, PCX-S
     32  1.1     skrll options 	HP7100_CPU,HP7150_CPU	# PCX-T
     33  1.1     skrll options 	HP7100LC_CPU		# PCX-L
     34  1.1     skrll options 	HP7200_CPU,HP7250_CPU	# PCX-T'
     35  1.1     skrll options 	HP7300LC_CPU		# PCX-L2
     36  1.1     skrll options 	HP8000_CPU		# PCX-U  (in 32bit mode)
     37  1.1     skrll options 	HP8200_CPU		# PCX-V/U+ (in 32bit mode)
     38  1.1     skrll options 	HP8500_CPU		# PCX-W  (in 32bit mode)
     39  1.1     skrll options 	HP8600_CPU		# PCX-W+ (in 32bit mode)
     40  1.1     skrll options 	HP8700_CPU		# PCX-W2 (in 32bit mode)
     41  1.1     skrll 
     42  1.1     skrll # CPU-related options.
     43  1.1     skrll options 	USELEDS		# blink 'em
     44  1.1     skrll 
     45  1.1     skrll # delay between "rebooting ..." message and hardware reset, in milliseconds
     46  1.1     skrll #options 	CPURESET_DELAY=2000
     47  1.1     skrll 
     48  1.1     skrll # Standard system options
     49  1.1     skrll 
     50  1.1     skrll options 	INSECURE	# disable kernel security levels
     51  1.1     skrll 
     52  1.1     skrll options 	NTP		# NTP phase/frequency locked loop
     53  1.1     skrll 
     54  1.1     skrll options 	KTRACE		# system call tracing via ktrace(1)
     55  1.1     skrll 
     56  1.1     skrll options 	SYSVMSG		# System V-like message queues
     57  1.1     skrll options 	SYSVSEM		# System V-like semaphores
     58  1.1     skrll options 	SYSVSHM		# System V-like memory sharing
     59  1.1     skrll 
     60  1.1     skrll options 	USERCONF	# userconf(4) support
     61  1.1     skrll 
     62  1.1     skrll # Enable experimental buffer queue strategy for better responsiveness under
     63  1.1     skrll # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     64  1.1     skrll #options 	BUFQ_READPRIO
     65  1.1     skrll #options 	BUFQ_PRIOCSCAN
     66  1.1     skrll 
     67  1.1     skrll # Diagnostic/debugging support options
     68  1.1     skrll #options 	DIAGNOSTIC	# expensive kernel consistency checks
     69  1.1     skrll #options 	DEBUG		# expensive debugging checks/support
     70  1.1     skrll #options 	KMEMSTATS	# kernel memory statistics (vmstat -m)
     71  1.1     skrll options 	DDB		# in-kernel debugger
     72  1.1     skrll options 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
     73  1.1     skrll #options 	KGDB		# remote debugger
     74  1.1     skrll #options 	KGDB_DEVNAME="\"com\"",KGDBADDR=0xf0822000,KGDBRATE=9600
     75  1.1     skrll #makeoptions	DEBUG="-g"	# compile full symbol table
     76  1.1     skrll 
     77  1.1     skrll # Compatibility options
     78  1.3  dholland options 	COMPAT_20	# NetBSD 2.0,
     79  1.3  dholland options 	COMPAT_30	# NetBSD 3.0,
     80  1.3  dholland options 	COMPAT_40	# NetBSD 4.0,
     81  1.3  dholland options 	COMPAT_50	# NetBSD 5.0,
     82  1.3  dholland options 	COMPAT_60	# NetBSD 6.0, and
     83  1.3  dholland options 	COMPAT_70	# NetBSD 7.0 binary compatibility.
     84  1.1     skrll options 	COMPAT_43	# and 4.3BSD
     85  1.1     skrll #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     86  1.1     skrll 
     87  1.1     skrll #options 	COMPAT_OSF1	# OSF1 binary compatibility
     88  1.1     skrll #options 	COMPAT_LINUX	# binary compatibility with Linux
     89  1.1     skrll options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     90  1.1     skrll 
     91  1.1     skrll # File systems
     92  1.1     skrll file-system 	FFS		# UFS
     93  1.1     skrll file-system 	EXT2FS		# second extended file system (linux)
     94  1.1     skrll file-system 	LFS		# log-structured file system
     95  1.1     skrll file-system 	MFS		# memory file system
     96  1.1     skrll file-system 	NFS		# Network File System client
     97  1.1     skrll file-system 	NTFS		# Windows/NT file system (experimental)
     98  1.1     skrll file-system 	CD9660		# ISO 9660 + Rock Ridge file system
     99  1.1     skrll file-system 	MSDOSFS		# MS-DOS file system
    100  1.1     skrll file-system 	FDESC		# /dev/fd
    101  1.1     skrll file-system 	KERNFS		# /kern
    102  1.1     skrll file-system 	NULLFS		# loopback file system
    103  1.1     skrll file-system 	OVERLAY		# overlay file system
    104  1.1     skrll file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
    105  1.1     skrll file-system 	PROCFS		# /proc
    106  1.1     skrll file-system 	UMAPFS		# NULLFS + uid and gid remapping
    107  1.1     skrll file-system 	UNION		# union file system
    108  1.1     skrll file-system	CODA		# Coda File System; also needs vcoda (below)
    109  1.1     skrll file-system	PTYFS		# /dev/pts/N support
    110  1.1     skrll file-system	TMPFS		# Efficient memory file-system
    111  1.1     skrll #file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
    112  1.1     skrll 
    113  1.1     skrll # File system options
    114  1.1     skrll options 	QUOTA		# legacy UFS quotas
    115  1.1     skrll options 	QUOTA2		# new, in-filesystem UFS quotas
    116  1.1     skrll #options 	FFS_EI		# FFS Endian Independent support
    117  1.1     skrll options 	WAPBL		# File system journaling support
    118  1.1     skrll #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
    119  1.1     skrll options 	NFSSERVER	# Network File System server
    120  1.1     skrll #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
    121  1.5      manu options 	UFS_EXTATTR	# Extended attribute support for UFS1
    122  1.5      manu options 	UFS_EXTATTR_AUTOSTART
    123  1.5      manu options 	UFS_EXTATTR_AUTOCREATE=1024
    124  1.1     skrll #options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
    125  1.1     skrll 				# immutable) behave as system flags.
    126  1.1     skrll 
    127  1.1     skrll # Networking options
    128  1.1     skrll #options 	GATEWAY		# packet forwarding
    129  1.1     skrll options 	INET		# IP + ICMP + TCP + UDP
    130  1.1     skrll options 	INET6		# IPV6
    131  1.1     skrll #options 	IPSEC		# IP security
    132  1.1     skrll #options 	IPSEC_DEBUG	# debug for IP security
    133  1.1     skrll #options 	MROUTING	# IP multicast routing
    134  1.1     skrll #options 	PIM		# Protocol Independent Multicast
    135  1.1     skrll #options 	NETATALK	# AppleTalk networking protocols
    136  1.1     skrll options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
    137  1.1     skrll options 	PPP_DEFLATE	# Deflate compression support for PPP
    138  1.1     skrll options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
    139  1.1     skrll options 	IPFILTER_LOG	# ipmon(8) log support
    140  1.1     skrll options 	IPFILTER_LOOKUP	# ippool(8) support
    141  1.1     skrll options 	IPFILTER_COMPAT # Compat for IP-Filter
    142  1.1     skrll #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    143  1.1     skrll #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    144  1.1     skrll 
    145  1.1     skrll #options 	ALTQ		# Manipulate network interfaces' output queues
    146  1.1     skrll #options 	ALTQ_BLUE	# Stochastic Fair Blue
    147  1.1     skrll #options 	ALTQ_CBQ	# Class-Based Queueing
    148  1.1     skrll #options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
    149  1.1     skrll #options 	ALTQ_FIFOQ	# First-In First-Out Queue
    150  1.1     skrll #options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
    151  1.1     skrll #options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
    152  1.1     skrll #options 	ALTQ_LOCALQ	# Local queueing discipline
    153  1.1     skrll #options 	ALTQ_PRIQ	# Priority Queueing
    154  1.1     skrll #options 	ALTQ_RED	# Random Early Detection
    155  1.1     skrll #options 	ALTQ_RIO	# RED with IN/OUT
    156  1.1     skrll #options 	ALTQ_WFQ	# Weighted Fair Queueing
    157  1.1     skrll 
    158  1.1     skrll # These options enable verbose messages for several subsystems.
    159  1.1     skrll # Warning, these may compile large string tables into the kernel!
    160  1.1     skrll options 	GSCVERBOSE	# verbose GSC device autoconfig messages
    161  1.1     skrll options 	PCIVERBOSE	# verbose PCI device autoconfig messages
    162  1.1     skrll options 	EISAVERBOSE	# verbose EISA device autoconfig messages
    163  1.1     skrll options 	MIIVERBOSE	# verbose PHY autoconfig messages
    164  1.1     skrll options 	SCSIVERBOSE	# human readable SCSI error messages
    165  1.1     skrll 
    166  1.1     skrll options 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
    167  1.1     skrll 
    168  1.1     skrll #
    169  1.1     skrll # wscons options
    170  1.1     skrll #
    171  1.1     skrll # builtin terminal emulations
    172  1.1     skrll #options 	WSEMUL_SUN		# sun terminal emulation
    173  1.1     skrll options 	WSEMUL_VT100		# VT100 / VT220 emulation
    174  1.1     skrll # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
    175  1.1     skrll options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
    176  1.1     skrll #options 	WS_DEFAULT_FG=WSCOL_WHITE
    177  1.1     skrll #options 	WS_DEFAULT_BG=WSCOL_BLACK
    178  1.1     skrll #options 	WS_DEFAULT_COLATTR=""
    179  1.1     skrll #options 	WS_DEFAULT_MONOATTR=""
    180  1.1     skrll options 	WS_KERNEL_FG=WSCOL_GREEN
    181  1.1     skrll #options 	WS_KERNEL_BG=WSCOL_BLACK
    182  1.1     skrll #options 	WS_KERNEL_COLATTR=""
    183  1.1     skrll #options 	WS_KERNEL_MONOATTR=""
    184  1.1     skrll # customization of console border color
    185  1.1     skrll options 	WSDISPLAY_CUSTOM_BORDER	# border customization from wsconsctl(8)
    186  1.1     skrll #options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
    187  1.1     skrll # compatibility to other console drivers
    188  1.1     skrll options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    189  1.1     skrll options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    190  1.1     skrll options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    191  1.1     skrll options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    192  1.1     skrll # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    193  1.1     skrll #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    194  1.1     skrll # allocate a number of virtual screens at autoconfiguration time
    195  1.1     skrll #options 	WSDISPLAY_DEFAULTSCREENS=4
    196  1.1     skrll # use a large software cursor that doesn't blink
    197  1.1     skrll options 	PCDISPLAY_SOFTCURSOR
    198  1.1     skrll # modify the screen type of the console; defaults to "80x25"
    199  1.1     skrll #options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
    200  1.1     skrll # work around a hardware bug that loaded fonts don't work; found on ATI cards
    201  1.1     skrll #options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
    202  1.1     skrll # console scrolling support.
    203  1.1     skrll #options 	WSDISPLAY_SCROLLSUPPORT
    204  1.1     skrll # enable VGA raster mode capable of displaying multilingual text on console
    205  1.1     skrll #options 	VGA_RASTERCONSOLE
    206  1.1     skrll 
    207  1.1     skrll # Kernel root file system and dump configuration.
    208  1.1     skrll config		netbsd	root on ? type ?
    209  1.1     skrll #config		netbsd	root on sd0a type ffs
    210  1.1     skrll #config		netbsd	root on ? type nfs
    211  1.1     skrll 
    212  1.1     skrll #
    213  1.1     skrll # Device configuration
    214  1.1     skrll #
    215  1.1     skrll 
    216  1.1     skrll mainbus0 at root
    217  1.1     skrll 
    218  1.1     skrll # CPU and memory - DO NOT REMOVE THESE
    219  1.1     skrll cpu*	at mainbus0 irq 31	# HP PA-RISC CPU
    220  1.1     skrll mem*	at mainbus0		# /dev/*mem and memory controller
    221  1.1     skrll 
    222  1.1     skrll # Coprocessor/SFU Support
    223  1.1     skrll #fpu*	at mainbus0		# HP PA-RISC fpu (iv N/A)
    224  1.1     skrll #pmu*	at mainbus0		# HP PA-RISC perfomance monitor unit (iv 29)
    225  1.1     skrll 
    226  1.1     skrll # Miscellaneous
    227  1.1     skrll pdc0	at mainbus0		# PDC/IODC wrapper for boot console
    228  1.1     skrll power0	at mainbus0		# power/fail manager
    229  1.1     skrll lcd0	at mainbus0		# LCD
    230  1.1     skrll 
    231  1.1     skrll # Basic Bus Support
    232  1.1     skrll lasi0	at mainbus0 irq 28	# LASI host adapter
    233  1.1     skrll lasi0	at phantomas0 irq 28	# LASI on [AB]*
    234  1.1     skrll lasi0	at uturn? irq 28	# LASI on [CJ]*
    235  1.1     skrll lasi1	at mainbus0 irq 27	# 712 GIO card
    236  1.1     skrll asp*	at mainbus0 irq 28	# this one comes w/ Viper and LEDs
    237  1.1     skrll wax*	at mainbus0		# Wax GSC to GSC Bus Adapter
    238  1.1     skrll mongoose* at mainbus0		# EISA Bus Adapter ( i82350 or TI??? )
    239  1.1     skrll #vmeb*	at mainbus0 irq ?	# VME bus adapter
    240  1.1     skrll phantomas*	at mainbus0	# Phantom PseudoBC GSC+ Port
    241  1.1     skrll 
    242  1.1     skrll lasi*	at phantomas?		# LASI on [ABCJ?]*
    243  1.1     skrll dino*	at phantomas?		# PCI bus bridge
    244  1.1     skrll wax*	at phantomas?		# Wax GSC to GSC Bus Adapter
    245  1.1     skrll 
    246  1.1     skrll # GSC bus support
    247  1.1     skrll gsc*	at lasi?		# 712
    248  1.1     skrll gsc*	at asp?			# 7xx (old)
    249  1.1     skrll gsc*	at wax?			# {725,715}/{64,80,100}, C*, B*, J*
    250  1.1     skrll 
    251  1.1     skrll # Wax GSC to EISA Bus Adapter
    252  1.1     skrll #weisa*	at mainbus0		# 7xx
    253  1.1     skrll #weisa*	at gsc?			# C*, B*
    254  1.1     skrll 
    255  1.1     skrll # Uturn/U2 IOA
    256  1.1     skrll uturn0	at mainbus0		# U2/UTurn Runway IOA
    257  1.1     skrll uturn1	at mainbus0
    258  1.1     skrll lasi*	at uturn?		# LASI on [CJ]*
    259  1.1     skrll dino*	at uturn?		# PCI bus bridge
    260  1.1     skrll #wax*	at uturn?		# Wax on C*
    261  1.1     skrll 
    262  1.1     skrll #gecko*	at uturn?		# GeckoBOA
    263  1.1     skrll #lasi*	at gecko?		# LASI
    264  1.1     skrll #dino*	at gecko?		# PCI bus bridge
    265  1.1     skrll #wax*	at gecko?		# Wax GSC to GSC Bus Adapter
    266  1.1     skrll 
    267  1.1     skrll # Astro memory & I/O controller 
    268  1.1     skrll astro*	at mainbus0		# Astro memory & I/O controller
    269  1.1     skrll elroy*	at astro?
    270  1.1     skrll 
    271  1.1     skrll # PCI bus support
    272  1.1     skrll pci*	at elroy?
    273  1.1     skrll pci*	at dino?
    274  1.1     skrll com*	at dino?
    275  1.1     skrll ppb*	at pci? dev ? function ?
    276  1.1     skrll pci*	at ppb?
    277  1.1     skrll 
    278  1.1     skrll ssio*	at pci?
    279  1.1     skrll 
    280  1.1     skrll # EISA bus support
    281  1.1     skrll eisa*	at mongoose?
    282  1.1     skrll #eisa*	at weisa?
    283  1.1     skrll 
    284  1.1     skrll # ISA bus support
    285  1.1     skrll # Beware: Most ISA MI drivers are not endianness clean!
    286  1.1     skrll #isa*	at mongoose?
    287  1.1     skrll #isa*	at weisa?
    288  1.1     skrll 
    289  1.1     skrll # VME bus support
    290  1.1     skrll #vme*	at vmeb?
    291  1.1     skrll 
    292  1.1     skrll # Console Devices
    293  1.1     skrll 
    294  1.1     skrll # STI graphics
    295  1.1     skrll sti*	at mainbus0		# [H]CRX-{8,24,48}[Z] and Visualize graphics
    296  1.1     skrll sti*	at phantomas?		# [H]CRX-{8,24,48}[Z] and Visualize graphics
    297  1.1     skrll sti*	at uturn?
    298  1.1     skrll sti*	at pci?			# EG-PCI, FX*
    299  1.1     skrll 
    300  1.1     skrll # Human Interface Loop
    301  1.1     skrll hil*		at gsc? irq 1	# Human Interface Loop, kbd and mouse
    302  1.1     skrll hilkbd*		at hil?		# keyboard, knob and buttons
    303  1.1     skrll hilms*		at hil?		# mouse and tablets
    304  1.1     skrll hilid*		at hil?		# ID module
    305  1.1     skrll 
    306  1.1     skrll # wscons
    307  1.1     skrll gsckbc*		at gsc?			# pc keyboard controller
    308  1.1     skrll pckbd*		at gsckbc?		# PC keyboard
    309  1.1     skrll pms*		at gsckbc?		# PS/2 mouse for wsmouse
    310  1.1     skrll wskbd*		at pckbd? console ?
    311  1.1     skrll wsmouse*	at pms? mux 0
    312  1.1     skrll wskbd*		at hilkbd? console ?
    313  1.1     skrll wsmouse*	at hilms? mux 0
    314  1.1     skrll wsdisplay*	at sti?
    315  1.1     skrll 
    316  1.1     skrll # Serial Devices
    317  1.1     skrll 
    318  1.1     skrll # SSIO serial interfaces
    319  1.1     skrll com0	at ssio? irq 4
    320  1.1     skrll com1	at ssio? irq 3
    321  1.1     skrll 
    322  1.1     skrll # GSC serial interfaces
    323  1.1     skrll com*	at gsc?				# RS/232 serial port
    324  1.1     skrll 
    325  1.1     skrll # PCI serial interfaces
    326  1.1     skrll puc*	at pci? dev ? function ?	# PCI "universal" comm. cards
    327  1.1     skrll com*	at puc? port ?			# 16x50s on "universal" comm boards
    328  1.1     skrll cy*	at pci? dev ? function ?	# Cyclades Cyclom-Y serial boards
    329  1.1     skrll cz*	at pci? dev ? function ?	# Cyclades-Z multi-port serial boards
    330  1.1     skrll 
    331  1.1     skrll # Parallel Printer Interfaces
    332  1.1     skrll 
    333  1.1     skrll # SSIO parallel printer interface
    334  1.1     skrll lpt0	at ssio?
    335  1.1     skrll 
    336  1.1     skrll # GSC parallel printer interface
    337  1.1     skrll lpt*	at gsc?
    338  1.1     skrll 
    339  1.1     skrll # PCI parallel printer interfaces
    340  1.1     skrll lpt*	at puc? port ?			# || ports on "universal" comm boards
    341  1.1     skrll 
    342  1.1     skrll # SCSI Controllers and Devices
    343  1.1     skrll 
    344  1.1     skrll # GSC SCSI controllers
    345  1.1     skrll oosiop*	at gsc?				# NCR 53c700
    346  1.1     skrll osiop*	at gsc? flags 0x00000		# NCR 53c710
    347  1.1     skrll siop*	at gsc?				# NCR 53c720 (Fast/Wide)
    348  1.1     skrll siop*	at mainbus0			# NCR 53c720 (Fast/Wide)
    349  1.1     skrll siop*	at phantomas?			# NCR 53c720 (Fast/Wide)
    350  1.1     skrll siop*	at uturn? 			# NCR 53c720 (Fast/Wide)
    351  1.1     skrll 
    352  1.1     skrll # PCI SCSI controllers
    353  1.1     skrll adv*	at pci? dev ? function ?	# AdvanSys 1200[A,B], 9xx[U,UA] SCSI
    354  1.1     skrll adw*	at pci? dev ? function ?	# AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
    355  1.1     skrll ahc*	at pci? dev ? function ?	# Adaptec [23]94x, aic78x0 SCSI
    356  1.1     skrll ahd*	at pci? dev ? function ?	# Adaptec 29320, 39320 (aic790x) SCSI
    357  1.1     skrll bha*	at pci? dev ? function ?	# BusLogic 9xx SCSI
    358  1.1     skrll dpt*	at pci? dev ? function ?	# DPT SmartCache/SmartRAID
    359  1.1     skrll iha*	at pci? dev ? function ?	# Initio INIC-940/950 SCSI
    360  1.1     skrll isp*	at pci? dev ? function ?	# Qlogic ISP [12]0x0 SCSI/FibreChannel
    361  1.1     skrll mly*	at pci? dev ? function ?	# Mylex AcceleRAID and eXtremeRAID
    362  1.1     skrll mpt*	at pci? dev ? function ?	# LSI Fusion SCSI/FC
    363  1.1     skrll pcscp*	at pci? dev ? function ?	# AMD 53c974 PCscsi-PCI SCSI
    364  1.1     skrll siop*	at pci? dev ? function ?	# Symbios 53c8xx SCSI
    365  1.1     skrll esiop*	at pci? dev ? function ?	# Symbios 53c875 SCSI and newer
    366  1.1     skrll #options 	SIOP_SYMLED		# drive the act. LED in software
    367  1.1     skrll trm*	at pci? dev ? function ?	# Tekram DC-395U/UW/F, DC-315/U SCSI
    368  1.1     skrll 
    369  1.1     skrll # EISA SCSI controllers
    370  1.1     skrll ahb*	at eisa? slot ?			# Adaptec 174[02] SCSI
    371  1.1     skrll ahc*	at eisa? slot ?			# Adaptec 274x, aic7770 SCSI
    372  1.1     skrll bha*	at eisa? slot ?			# BusLogic 7xx SCSI
    373  1.1     skrll dpt*	at eisa? slot ?			# DPT EATA SCSI
    374  1.1     skrll uha*	at eisa? slot ?			# UltraStor 24f SCSI
    375  1.1     skrll 
    376  1.1     skrll # SCSI bus support
    377  1.1     skrll scsibus* at scsi?
    378  1.1     skrll 
    379  1.1     skrll # SCSI devices
    380  1.1     skrll sd*	at scsibus? target ? lun ?	# SCSI disk drives
    381  1.1     skrll st*	at scsibus? target ? lun ?	# SCSI tape drives
    382  1.1     skrll cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
    383  1.1     skrll ch*	at scsibus? target ? lun ?	# SCSI autochangers
    384  1.1     skrll ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
    385  1.1     skrll ss*	at scsibus? target ? lun ?	# SCSI scanners
    386  1.1     skrll uk*	at scsibus? target ? lun ?	# SCSI unknown
    387  1.1     skrll 
    388  1.1     skrll 
    389  1.1     skrll # RAID controllers and devices
    390  1.1     skrll # aac is broken
    391  1.1     skrll #aac*	at pci? dev ? function ?	# Adaptec AAC family
    392  1.1     skrll amr*	at pci? dev ? function ?	# AMI/LSI Logic MegaRAID
    393  1.1     skrll cac*	at eisa? slot ?			# Compaq EISA array controllers
    394  1.1     skrll cac*	at pci? dev ? function ?	# Compaq PCI array controllers
    395  1.1     skrll icp*	at pci? dev ? function ?	# ICP-Vortex GDT & Intel RAID
    396  1.1     skrll mlx*	at pci? dev ? function ?	# Mylex DAC960 & DEC SWXCR family
    397  1.1     skrll mlx*	at eisa? slot ?			# Mylex DAC960 & DEC SWXCR family
    398  1.1     skrll twe*	at pci? dev ? function ?	# 3ware Escalade RAID controllers
    399  1.1     skrll 
    400  1.1     skrll #ld*	at aac? unit ?			# logical disk devices
    401  1.1     skrll ld*	at amr? unit ?
    402  1.1     skrll ld*	at cac? unit ?
    403  1.1     skrll ld*	at icp? unit ?
    404  1.1     skrll ld*	at mlx? unit ?
    405  1.1     skrll ld*	at twe? unit ?
    406  1.1     skrll 
    407  1.1     skrll icpsp*	at icp? unit ?			# SCSI pass-through
    408  1.1     skrll 
    409  1.1     skrll # IDE and related devices
    410  1.1     skrll # PCI IDE controllers - see pciide(4) for supported hardware.
    411  1.1     skrll # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    412  1.1     skrll # how to set up DMA modes for this chip. This may work, or may cause
    413  1.1     skrll # a machine hang with some controllers.
    414  1.1     skrll pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    415  1.1     skrll acardide*	at pci? dev ? function ?	# Acard IDE controllers
    416  1.1     skrll aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
    417  1.1     skrll artsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
    418  1.1     skrll cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
    419  1.1     skrll cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
    420  1.1     skrll geodeide* 	at pci? dev ? function ?	# AMD Geode IDE controllers
    421  1.1     skrll hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    422  1.1     skrll nside*  	at pci? dev ? function ?	# National Semiconductor IDE controllers
    423  1.1     skrll optiide* 	at pci? dev ? function ?	# Opti IDE controllers
    424  1.1     skrll pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
    425  1.1     skrll pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
    426  1.1     skrll rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
    427  1.1     skrll satalink*	at pci? dev ? function ?	# SiI SATALink controllers
    428  1.1     skrll siside* 	at pci? dev ? function ?	# SiS IDE controllers
    429  1.1     skrll slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
    430  1.1     skrll stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
    431  1.1     skrll viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    432  1.1     skrll 
    433  1.1     skrll # ATA (IDE) bus support
    434  1.1     skrll atabus* at ata?
    435  1.1     skrll 
    436  1.1     skrll # IDE drives
    437  1.1     skrll # Flags are used only with controllers that support DMA operations
    438  1.1     skrll # and mode settings (e.g. some pciide controllers)
    439  1.1     skrll # The lowest order four bits (rightmost digit) of the flags define the PIO
    440  1.1     skrll # mode to use, the next set of four bits the DMA mode and the third set the
    441  1.1     skrll # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    442  1.1     skrll # to use, and the last bit must be 1 for this setting to be used.
    443  1.1     skrll # For DMA and UDMA, 0xf (1111) means 'disable'.
    444  1.1     skrll # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    445  1.1     skrll # (0xc=1100, 0xa=1010, 0xf=1111)
    446  1.1     skrll # 0x0000 means "use whatever the drive claims to support".
    447  1.1     skrll wd*	at atabus? drive ? flags 0x0000
    448  1.1     skrll 
    449  1.1     skrll # ATA RAID configuration support, as found on some Promise controllers.
    450  1.1     skrll pseudo-device	ataraid
    451  1.1     skrll ld*	at ataraid? vendtype ? unit ?
    452  1.1     skrll 
    453  1.1     skrll # ATAPI bus support
    454  1.1     skrll atapibus* at atapi?
    455  1.1     skrll 
    456  1.1     skrll # ATAPI devices
    457  1.1     skrll # flags have the same meaning as for IDE drives.
    458  1.1     skrll cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
    459  1.1     skrll sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    460  1.1     skrll st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    461  1.1     skrll uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    462  1.1     skrll 
    463  1.1     skrll # Miscellaneous mass storage devices
    464  1.1     skrll 
    465  1.1     skrll # GSC floppy
    466  1.1     skrll #fdc*	at gsc? 			# PC floppy controller (WD37C65C)
    467  1.1     skrll #fd*	at fdc? drive ?			# the drives themselves
    468  1.1     skrll 
    469  1.1     skrll # Network Interfaces
    470  1.1     skrll 
    471  1.1     skrll # GSC network interfaces
    472  1.1     skrll #medusa* at gsc?			# FDDI
    473  1.1     skrll ie*	at gsc?				# old 82C5[89]6 Ethernet, use iee(4)
    474  1.1     skrll iee*	at gsc?				# 82C596 Ethernet
    475  1.1     skrll 
    476  1.1     skrll # PCI network interfaces
    477  1.1     skrll an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    478  1.1     skrll atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
    479  1.1     skrll bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
    480  1.1     skrll bge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    481  1.1     skrll # en is broken, uses vtophys
    482  1.1     skrll #en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    483  1.1     skrll ep*	at pci? dev ? function ?	# 3Com 3c59x
    484  1.1     skrll epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    485  1.1     skrll esh*	at pci? dev ? function ?	# Essential HIPPI card
    486  1.1     skrll ex*	at pci? dev ? function ?	# 3Com 90x[BC]
    487  1.1     skrll # fpa is broken, does funky things with bus_dma
    488  1.1     skrll #fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    489  1.1     skrll fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    490  1.1     skrll gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    491  1.1     skrll le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    492  1.1     skrll lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    493  1.1     skrll mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    494  1.1     skrll ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    495  1.1     skrll ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    496  1.1     skrll pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    497  1.1     skrll re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
    498  1.1     skrll rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    499  1.1     skrll sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    500  1.1     skrll sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    501  1.1     skrll skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
    502  1.1     skrll sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
    503  1.1     skrll ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    504  1.1     skrll stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    505  1.1     skrll ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    506  1.1     skrll tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    507  1.1     skrll tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    508  1.1     skrll vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    509  1.1     skrll wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    510  1.1     skrll wm*	at pci? dev ? function ?	# Intel 8254x gigabit
    511  1.1     skrll 
    512  1.1     skrll # EISA network interfaces
    513  1.1     skrll ep*	at eisa? slot ?			# 3Com 3c579 Ethernet
    514  1.1     skrll #fea*	at eisa? slot ?			# DEC DEFEA FDDI
    515  1.1     skrll tlp*	at eisa? slot ?			# DEC DE-425 Ethernet
    516  1.1     skrll #sh*	at eisa? slot ?			# Interphase Seahawk 4811 FDDI
    517  1.1     skrll #ie*	at eisa? slot ?			# Intel Ethernet
    518  1.1     skrll 
    519  1.1     skrll # MII/PHY support
    520  1.1     skrll acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
    521  1.1     skrll amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    522  1.1     skrll bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    523  1.1     skrll brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    524  1.1     skrll dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    525  1.1     skrll exphy*	at mii? phy ?			# 3Com internal PHYs
    526  1.1     skrll gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    527  1.1     skrll glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    528  1.1     skrll gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    529  1.1     skrll icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    530  1.1     skrll igphy*	at mii? phy ?			# Intel IGP01E1000
    531  1.1     skrll ikphy*	at mii? phy ?			# Intel 82563 PHYs
    532  1.1     skrll inphy*	at mii? phy ?			# Intel 82555 PHYs
    533  1.1     skrll iophy*	at mii? phy ?			# Intel 82553 PHYs
    534  1.1     skrll lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    535  1.1     skrll makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    536  1.1     skrll nsphy*	at mii? phy ?			# NS83840 PHYs
    537  1.1     skrll nsphyter* at mii? phy ? 		# NS83843 PHYs
    538  1.1     skrll pnaphy* at mii? phy ?			# generic HomePNA PHYs
    539  1.1     skrll qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    540  1.1     skrll sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    541  1.1     skrll tlphy*	at mii? phy ?			# ThunderLAN PHYs
    542  1.1     skrll tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    543  1.1     skrll ukphy*	at mii? phy ?			# generic unknown PHYs
    544  1.1     skrll urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    545  1.1     skrll 
    546  1.1     skrll # Audio Devices
    547  1.1     skrll 
    548  1.1     skrll # GSC audio devices
    549  1.1     skrll #aone*	at gsc?				# Audio Type 1 (PSB 2160-N)
    550  1.1     skrll harmony* at gsc?			# Audio Type 2 (CS4215)
    551  1.1     skrll #com*	at harmony?			# Telephone add-in card
    552  1.1     skrll audio*	at audiobus?
    553  1.1     skrll 
    554  1.1     skrll # USB Controller and Devices
    555  1.1     skrll 
    556  1.1     skrll # PCI USB controllers
    557  1.1     skrll ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    558  1.1     skrll ohci*	at pci?	dev ? function ?	# Open Host Controller
    559  1.1     skrll uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
    560  1.1     skrll 
    561  1.1     skrll # USB bus support
    562  1.1     skrll usb*	at ehci?
    563  1.1     skrll usb*	at ohci?
    564  1.1     skrll usb*	at uhci?
    565  1.1     skrll 
    566  1.1     skrll # USB Hubs
    567  1.1     skrll uhub*	at usb?
    568  1.1     skrll uhub*	at uhub? port ?
    569  1.1     skrll 
    570  1.1     skrll # USB HID device
    571  1.1     skrll uhidev* at uhub? port ? configuration ? interface ?
    572  1.1     skrll 
    573  1.1     skrll # USB Mice
    574  1.1     skrll ums*	at uhidev? reportid ?
    575  1.1     skrll wsmouse* at ums? mux 0
    576  1.1     skrll 
    577  1.1     skrll # USB eGalax touch-panel
    578  1.1     skrll uep*	at uhub? port ?
    579  1.1     skrll wsmouse* at uep? mux 0
    580  1.1     skrll 
    581  1.1     skrll # USB Keyboards
    582  1.1     skrll ukbd*	at uhidev? reportid ?
    583  1.1     skrll wskbd*	at ukbd? console ? mux 1
    584  1.1     skrll 
    585  1.1     skrll # USB serial adapter
    586  1.1     skrll ucycom* at uhidev? reportid ?
    587  1.1     skrll 
    588  1.1     skrll # USB Generic HID devices
    589  1.1     skrll uhid*	at uhidev? reportid ?
    590  1.1     skrll 
    591  1.1     skrll # USB LCDs and USB-VGA adaptors
    592  1.1     skrll udl*	at uhub? port ?		# DisplayLink DL-1x0/1x5
    593  1.1     skrll wsdisplay* at udl?
    594  1.1     skrll 
    595  1.1     skrll # USB Printer
    596  1.1     skrll ulpt*	at uhub? port ? configuration ? interface ?
    597  1.1     skrll 
    598  1.1     skrll # USB Modem
    599  1.1     skrll umodem* at uhub? port ? configuration ?
    600  1.1     skrll ucom*	at umodem?
    601  1.1     skrll 
    602  1.1     skrll # Option N.V. Wireless WAN modems
    603  1.1     skrll uhso*	at uhub? port ? configuration ?
    604  1.1     skrll 
    605  1.1     skrll # USB Mass Storage
    606  1.1     skrll umass*	at uhub? port ? configuration ? interface ?
    607  1.1     skrll wd*	at umass?
    608  1.1     skrll 
    609  1.1     skrll # USB audio
    610  1.1     skrll uaudio* at uhub? port ? configuration ?
    611  1.1     skrll 
    612  1.1     skrll # USB MIDI
    613  1.1     skrll umidi* at uhub? port ? configuration ?
    614  1.4  uebayasi midi* at midibus?
    615  1.1     skrll 
    616  1.1     skrll # USB IrDA
    617  1.1     skrll # USB-IrDA bridge spec
    618  1.1     skrll uirda* at uhub? port ? configuration ? interface ?
    619  1.1     skrll irframe* at uirda?
    620  1.1     skrll 
    621  1.1     skrll stuirda* at uhub? port ? configuration ? interface ?
    622  1.1     skrll irframe* at stuirda?
    623  1.1     skrll 
    624  1.1     skrll # SigmaTel STIr4200 USB/IrDA Bridge
    625  1.1     skrll ustir* at uhub? port ?
    626  1.1     skrll irframe* at ustir?
    627  1.1     skrll 
    628  1.1     skrll # USB Ethernet adapters
    629  1.1     skrll aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    630  1.1     skrll axe*	at uhub? port ?		# ASIX AX88172 based adapters
    631  1.1     skrll cdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
    632  1.1     skrll cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    633  1.1     skrll kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    634  1.1     skrll udav*	at uhub? port ?		# Davicom DM9601 based adapters
    635  1.1     skrll url*	at uhub? port ?		# Realtek RTL8150L based adapters
    636  1.1     skrll 
    637  1.1     skrll # USB 802.11 adapters
    638  1.1     skrll atu*	at uhub? port ?		# Atmel AT76C50XX based adapters
    639  1.1     skrll ural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
    640  1.1     skrll rum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
    641  1.1     skrll zyd*	at uhub? port ?		# Zydas ZD1211
    642  1.1     skrll 
    643  1.1     skrll # Prolific PL2301/PL2302 host-to-host adapter
    644  1.1     skrll upl*	at uhub? port ?
    645  1.1     skrll 
    646  1.1     skrll # Serial adapters
    647  1.1     skrll ubsa*	at uhub? port ?		# Belkin serial adapter
    648  1.1     skrll ucom*	at ubsa? portno ?
    649  1.1     skrll 
    650  1.1     skrll uchcom* at uhub? port ? 	# WinChipHead CH341/CH340 serial adapter
    651  1.1     skrll ucom*	at uchcom? portno ?
    652  1.1     skrll 
    653  1.1     skrll uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    654  1.1     skrll ucom*	at uftdi? portno ?
    655  1.1     skrll 
    656  1.1     skrll uipaq*	at uhub? port ?		# iPAQ PDAs
    657  1.1     skrll ucom*	at uipaq? portno ?
    658  1.1     skrll 
    659  1.1     skrll umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    660  1.1     skrll ucom*	at umct? portno ?
    661  1.1     skrll 
    662  1.1     skrll uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    663  1.1     skrll ucom*	at uplcom? portno ?
    664  1.1     skrll 
    665  1.1     skrll uslsa*	at uhub? port ?		# Silicon Labs USB-RS232 serial adapter
    666  1.1     skrll ucom*	at uslsa? portno ?
    667  1.1     skrll 
    668  1.1     skrll uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
    669  1.1     skrll ucom*	at uvscom? portno ?
    670  1.1     skrll 
    671  1.1     skrll # RIM BlackBerry
    672  1.1     skrll uberry* at uhub? port ?
    673  1.1     skrll 
    674  1.1     skrll # Diamond Multimedia Rio 500
    675  1.1     skrll urio*	at uhub? port ?
    676  1.1     skrll 
    677  1.1     skrll # USB Handspring Visor
    678  1.1     skrll uvisor* at uhub? port ?
    679  1.1     skrll ucom*	at uvisor?
    680  1.1     skrll 
    681  1.1     skrll # Kyocera AIR-EDGE PHONE
    682  1.1     skrll ukyopon* at uhub? port ?
    683  1.1     skrll ucom*	at ukyopon? portno ?
    684  1.1     skrll 
    685  1.1     skrll # USB scanners
    686  1.1     skrll uscanner* at uhub? port ?
    687  1.1     skrll 
    688  1.1     skrll # USB scanners that use SCSI emulation, e.g., HP5300
    689  1.1     skrll usscanner* at uhub? port ?
    690  1.1     skrll 
    691  1.1     skrll # Topfield TF5000PVR range of DVB recorders
    692  1.1     skrll utoppy* at uhub? port ?
    693  1.1     skrll 
    694  1.1     skrll # Y@P firmware loader
    695  1.1     skrll uyap*	at uhub? port ?
    696  1.1     skrll 
    697  1.1     skrll # D-Link DSB-R100 USB radio
    698  1.1     skrll udsbr*	at uhub? port ?
    699  1.1     skrll radio*	at udsbr?
    700  1.1     skrll 
    701  1.1     skrll # USB Generic driver
    702  1.1     skrll ugen*	at uhub? port ?
    703  1.1     skrll 
    704  1.1     skrll # USB 3G datacards
    705  1.1     skrll u3ginit* at uhub? port ?
    706  1.1     skrll u3g*	at uhub? port ?
    707  1.1     skrll ucom*	at u3g?
    708  1.1     skrll 
    709  1.1     skrll # USB generic serial port (e.g., data over cellular)
    710  1.1     skrll ugensa* at uhub? port ?
    711  1.1     skrll ucom*	at ugensa?
    712  1.1     skrll 
    713  1.1     skrll # Pseudo-Devices
    714  1.1     skrll 
    715  1.1     skrll pseudo-device 	crypto			# /dev/crypto device
    716  1.1     skrll pseudo-device	swcrypto		# software crypto implementation
    717  1.1     skrll 
    718  1.1     skrll # disk/mass storage pseudo-devices
    719  1.1     skrll pseudo-device	ccd			# concatenated/striped disk devices
    720  1.1     skrll #pseudo-device	cgd			# cryptographic disk devices
    721  1.1     skrll pseudo-device	raid			# RAIDframe disk driver
    722  1.1     skrll options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    723  1.1     skrll #Options to enable various other RAIDframe RAID types.
    724  1.1     skrll #options 	RF_INCLUDE_EVENODD=1
    725  1.1     skrll #options 	RF_INCLUDE_RAID5_RS=1
    726  1.1     skrll #options 	RF_INCLUDE_PARITYLOGGING=1
    727  1.1     skrll #options 	RF_INCLUDE_CHAINDECLUSTER=1
    728  1.1     skrll #options 	RF_INCLUDE_INTERDECLUSTER=1
    729  1.1     skrll #options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    730  1.1     skrll #options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    731  1.1     skrll pseudo-device	fss			# file system snapshot device
    732  1.1     skrll pseudo-device	md			# memory disk device (ramdisk)
    733  1.1     skrll pseudo-device	vnd			# disk-like interface to files
    734  1.1     skrll #options 	VND_COMPRESSION		# compressed vnd(4)
    735  1.1     skrll pseudo-device	putter			# for puffs and pud
    736  1.1     skrll 
    737  1.1     skrll # network pseudo-devices
    738  1.1     skrll pseudo-device	bpfilter		# Berkeley packet filter
    739  1.1     skrll #pseudo-device	carp			# Common Address Redundancy Protocol
    740  1.1     skrll pseudo-device	ipfilter		# IP filter (firewall) and NAT
    741  1.1     skrll pseudo-device	loop			# network loopback
    742  1.1     skrll pseudo-device	ppp			# Point-to-Point Protocol
    743  1.1     skrll pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
    744  1.1     skrll pseudo-device	sl			# Serial Line IP
    745  1.1     skrll pseudo-device	strip			# Starmode Radio IP (Metricom)
    746  1.1     skrll pseudo-device	irframetty		# IrDA frame line discipline
    747  1.1     skrll pseudo-device	tun			# network tunneling over tty
    748  1.1     skrll pseudo-device	tap			# virtual Ethernet
    749  1.1     skrll pseudo-device	gre			# generic L3 over IP tunnel
    750  1.1     skrll pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
    751  1.1     skrll #pseudo-device	faith			# IPv[46] tcp relay translation i/f
    752  1.1     skrll pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
    753  1.1     skrll pseudo-device	vlan			# IEEE 802.1q encapsulation
    754  1.1     skrll pseudo-device	bridge			# simple inter-network bridging
    755  1.1     skrll #options	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
    756  1.1     skrll pseudo-device	agr			# IEEE 802.3ad link aggregation
    757  1.1     skrll 
    758  1.1     skrll #
    759  1.1     skrll # accept filters
    760  1.1     skrll pseudo-device   accf_data		# "dataready" accept filter
    761  1.1     skrll pseudo-device   accf_http		# "httpready" accept filter
    762  1.1     skrll 
    763  1.1     skrll # miscellaneous pseudo-devices
    764  1.1     skrll pseudo-device	pty			# pseudo-terminals
    765  1.1     skrll pseudo-device	sequencer		# MIDI sequencer
    766  1.1     skrll # rnd works; RND_COM does not on port hppa yet.
    767  1.1     skrll #options 	RND_COM			# use "com" randomness as well (BROKEN)
    768  1.1     skrll pseudo-device	clockctl		# user control of clock subsystem
    769  1.1     skrll 
    770  1.1     skrll # a pseudo device needed for Coda	# also needs CODA (above)
    771  1.1     skrll pseudo-device	vcoda			# coda minicache <-> venus comm.
    772  1.1     skrll 
    773  1.1     skrll # wscons pseudo-devices
    774  1.1     skrll pseudo-device	wsmux			# mouse & keyboard multiplexor
    775  1.1     skrll pseudo-device	wsfont
    776  1.1     skrll pseudo-device	ksyms			# /dev/ksyms
    777  1.1     skrll #pseudo-device	pf			# PF packet filter
    778  1.1     skrll #pseudo-device	pflog			# PF log if
    779  1.1     skrll 
    780  1.1     skrll # userland interface to drivers, including autoconf and properties retrieval
    781  1.1     skrll pseudo-device	drvctl
    782  1.1     skrll 
    783  1.1     skrll # Veriexec
    784  1.1     skrll #
    785  1.1     skrll # a pseudo device needed for veriexec
    786  1.1     skrll #pseudo-device	veriexec
    787  1.1     skrll #
    788  1.1     skrll # Uncomment the fingerprint methods below that are desired. Note that
    789  1.1     skrll # removing fingerprint methods will have almost no impact on the kernel
    790  1.1     skrll # code size.
    791  1.1     skrll #
    792  1.1     skrll #options VERIFIED_EXEC_FP_RMD160
    793  1.1     skrll #options VERIFIED_EXEC_FP_SHA256
    794  1.1     skrll #options VERIFIED_EXEC_FP_SHA384
    795  1.1     skrll #options VERIFIED_EXEC_FP_SHA512
    796  1.1     skrll #options VERIFIED_EXEC_FP_SHA1
    797  1.1     skrll #options VERIFIED_EXEC_FP_MD5
    798