Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.4.6.1
      1  1.4.6.1      yamt #	$NetBSD: GENERIC,v 1.4.6.1 2005/02/12 18:17:35 yamt Exp $
      2      1.1     gavan #
      3      1.1     gavan #	GENERIC -- Generic kernel
      4      1.1     gavan #
      5      1.1     gavan 
      6      1.1     gavan include	"arch/iyonix/conf/std.iyonix"
      7      1.1     gavan 
      8      1.1     gavan options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
      9      1.1     gavan options		MSGBUFSIZE=65536
     10      1.1     gavan 
     11      1.1     gavan # Enable the hooks used for initializing the root memory-disk.
     12      1.1     gavan #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
     13      1.1     gavan # options 	MEMORY_DISK_HOOKS
     14      1.1     gavan # options 	MEMORY_DISK_SERVER=0	# no userspace memory disk support
     15      1.1     gavan # options 	MEMORY_DISK_ROOT_SIZE=10000 # size of memory disk, in blocks
     16      1.1     gavan 
     17      1.1     gavan # estimated number of users
     18      1.1     gavan 
     19      1.1     gavan maxusers	32
     20      1.1     gavan 
     21      1.1     gavan # Standard system options
     22      1.1     gavan 
     23      1.1     gavan options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     24      1.1     gavan #options 	NTP		# NTP phase/frequency locked loop
     25      1.1     gavan 
     26      1.1     gavan # CPU options
     27      1.1     gavan 
     28      1.1     gavan # For XScale systems
     29      1.1     gavan options 	CPU_XSCALE_80321	# Support the XScale core
     30      1.1     gavan makeoptions	CPUFLAGS="-mcpu=xscale"
     31      1.1     gavan 
     32      1.1     gavan # Architecture options
     33      1.1     gavan options 	XSCALE_CACHE_READ_WRITE_ALLOCATE
     34      1.1     gavan #options 	HZ=512
     35      1.1     gavan 
     36      1.1     gavan # File systems
     37      1.1     gavan 
     38      1.1     gavan file-system	FFS		# UFS
     39      1.1     gavan #file-system	LFS		# log-structured file system
     40      1.1     gavan file-system	MFS		# memory file system
     41      1.1     gavan file-system	NFS		# Network file system
     42      1.1     gavan #file-system 	ADOSFS		# AmigaDOS-compatible file system
     43      1.1     gavan #file-system 	EXT2FS		# second extended file system (linux)
     44      1.1     gavan file-system	CD9660		# ISO 9660 + Rock Ridge file system
     45      1.1     gavan #file-system	MSDOSFS		# MS-DOS file system
     46      1.1     gavan #file-system	FDESC		# /dev/fd
     47      1.1     gavan file-system     FILECORE        # Acorn filecore file system
     48      1.1     gavan #file-system	KERNFS		# /kern
     49      1.1     gavan #file-system	NULLFS		# loopback file system
     50      1.1     gavan #file-system	PORTAL		# portal filesystem (still experimental)
     51      1.1     gavan #file-system	PROCFS		# /proc
     52      1.1     gavan #file-system	UMAPFS		# NULLFS + uid and gid remapping
     53      1.1     gavan #file-system	UNION		# union file system
     54      1.1     gavan 
     55      1.1     gavan # File system options
     56      1.1     gavan #options 	QUOTA		# UFS quotas
     57      1.1     gavan #options 	FFS_EI		# FFS Endian Independant support
     58      1.1     gavan #options 	NFSSERVER
     59      1.1     gavan #options 	SOFTDEP
     60  1.4.6.1      yamt #options	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
     61  1.4.6.1      yamt #options 	FFS_SNAPSHOT	# ffs snapshots
     62      1.1     gavan 
     63      1.1     gavan # Networking options
     64      1.1     gavan 
     65      1.1     gavan #options 	GATEWAY		# packet forwarding
     66      1.1     gavan options 	INET		# IP + ICMP + TCP + UDP
     67      1.1     gavan #options 	INET6		# IPV6
     68      1.1     gavan #options 	IPSEC		# IP security
     69      1.1     gavan #options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
     70      1.1     gavan #options 	IPSEC_DEBUG	# debug for IP security
     71      1.1     gavan #options 	MROUTING	# IP multicast routing
     72      1.1     gavan #options 	NS		# XNS
     73      1.1     gavan #options 	NSIP		# XNS tunneling over IP
     74      1.1     gavan #options 	ISO,TPIP	# OSI
     75      1.1     gavan #options 	EON		# OSI tunneling over IP
     76      1.1     gavan #options 	CCITT,LLC,HDLC	# X.25
     77      1.1     gavan #options 	NETATALK	# AppleTalk networking
     78      1.1     gavan #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     79      1.1     gavan #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     80      1.1     gavan #options 	PPP_DEFLATE	# Deflate compression support for PPP
     81      1.1     gavan #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     82      1.1     gavan #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     83      1.1     gavan 
     84      1.1     gavan options 	NFS_BOOT_BOOTP
     85      1.1     gavan options 	NFS_BOOT_DHCP
     86      1.1     gavan #options 	NFS_BOOT_BOOTPARAM
     87      1.1     gavan 
     88      1.1     gavan # Compatibility options
     89      1.1     gavan 
     90      1.1     gavan options 	COMPAT_16	# NetBSD 1.6
     91      1.1     gavan options 	COMPAT_20	# NetBSD 2.0
     92      1.1     gavan #options 	COMPAT_43	# 4.3BSD compatibility.
     93      1.1     gavan #options 	COMPAT_16	# NetBSD 1.6 compatibility.
     94      1.1     gavan #options 	COMPAT_15	# NetBSD 1.5 compatibility.
     95      1.1     gavan #options 	COMPAT_14	# NetBSD 1.4 compatibility.
     96      1.1     gavan #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     97      1.1     gavan #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     98      1.1     gavan #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     99      1.1     gavan #options 	COMPAT_10	# NetBSD 1.0 compatibility.
    100      1.1     gavan #options 	COMPAT_09	# NetBSD 0.9 compatibility.
    101      1.1     gavan #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    102      1.3  christos options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
    103      1.1     gavan 
    104      1.1     gavan # Shared memory options
    105      1.1     gavan 
    106      1.1     gavan #options 	SYSVMSG		# System V-like message queues
    107      1.1     gavan #options 	SYSVSEM		# System V-like semaphores
    108      1.1     gavan #options 	SEMMNI=10	# number of semaphore identifiers
    109      1.1     gavan #options 	SEMMNS=60	# number of semaphores in system
    110      1.1     gavan #options 	SEMUME=10	# max number of undo entries per process
    111      1.1     gavan #options 	SEMMNU=30	# number of undo structures in system
    112      1.1     gavan #options 	SYSVSHM		# System V-like memory sharing
    113      1.1     gavan #options 	SHMMAXPGS=1024	# 1024 pages is the default
    114      1.1     gavan 
    115      1.1     gavan # Device options
    116      1.1     gavan 
    117      1.1     gavan #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    118      1.1     gavan #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
    119      1.1     gavan #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    120      1.1     gavan 
    121      1.1     gavan # Console options.  The default console is speed is 115200 baud.
    122      1.1     gavan #options 	CONSPEED=9600		# Console speed
    123      1.1     gavan 
    124      1.1     gavan # Miscellaneous kernel options
    125      1.1     gavan options 	KTRACE		# system call tracing, a la ktrace(1)
    126      1.1     gavan options 	IRQSTATS	# manage IRQ statistics
    127      1.1     gavan #options 	LKM		# loadable kernel modules
    128      1.1     gavan #options 	KMEMSTATS	# kernel memory statistics
    129      1.1     gavan #options 	SCSIVERBOSE	# Verbose SCSI errors
    130      1.1     gavan options 	PCIVERBOSE	# Verbose PCI descriptions
    131      1.1     gavan options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    132      1.1     gavan #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    133      1.1     gavan #options 	DDB_KEYCODE=0x40
    134      1.1     gavan options 	USERCONF	# userconf(4) support
    135      1.1     gavan #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    136      1.1     gavan 
    137      1.1     gavan # Development and Debugging options
    138      1.1     gavan 
    139      1.1     gavan options 	PERFCTRS	# performance counters
    140      1.1     gavan options 	DIAGNOSTIC	# internally consistency checks
    141      1.1     gavan options 	DEBUG
    142      1.1     gavan #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    143      1.1     gavan #options 	IPKDB		# remote kernel debugging
    144      1.1     gavan #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    145      1.1     gavan options 	DDB		# in-kernel debugger
    146      1.1     gavan options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    147      1.1     gavan makeoptions	DEBUG="-g"	# compile full symbol table
    148      1.1     gavan options 	SYMTAB_SPACE=240000
    149      1.1     gavan 
    150      1.1     gavan ##options 	PMAP_INCLUDE_PTE_SYNC
    151      1.1     gavan ##options 	LOCKDEBUG
    152      1.1     gavan 
    153      1.1     gavan ##config		netbsd		root on ? type ?
    154      1.1     gavan config		netbsd		root on rtk0 type nfs
    155      1.1     gavan #config		netbsd-wm0	root on wm0 type nfs
    156      1.1     gavan #config		netbsd-wd0	root on wd0 type ffs
    157      1.1     gavan #config		netbsd-sd0	root on sd0 type ffs
    158      1.1     gavan 
    159      1.1     gavan # The main bus device
    160      1.1     gavan mainbus0	at root
    161      1.1     gavan 
    162      1.1     gavan # The boot cpu
    163      1.1     gavan cpu0		at mainbus?
    164      1.1     gavan 
    165      1.1     gavan # i80321 I/O Processor peripheral support
    166      1.1     gavan iopxs*          at mainbus?
    167      1.1     gavan 
    168      1.1     gavan iopaau*         at iopxs?               # Application Accelerator Unit
    169      1.1     gavan iopiic*         at iopxs?               # I2C Controller Unit(s) 
    170      1.1     gavan iic0            at iopiic?
    171      1.1     gavan iic1            at iopiic?
    172      1.1     gavan iopwdog*        at iopxs?               # Watchdog timer
    173      1.1     gavan pci0            at iopxs? bus ?         # PCI/PCI-X support
    174      1.1     gavan 
    175      1.1     gavan # PCI bridges
    176      1.1     gavan ppb*            at pci? dev ? function ?
    177      1.1     gavan pci*            at ppb? bus ?
    178      1.1     gavan 
    179      1.1     gavan # VGA
    180      1.1     gavan #vga*            at pci? dev ? function ?
    181      1.1     gavan 
    182      1.1     gavan # IDE and related devices
    183      1.1     gavan # PCI IDE controllers - see pciide(4) for supported hardware.
    184      1.1     gavan # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
    185      1.1     gavan # how to set up DMA modes for this chip. This may work, or may cause
    186      1.1     gavan # a machine hang with some controllers.
    187      1.1     gavan pciide* 	at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
    188      1.1     gavan acardide*	at pci? dev ? function ?	# Acard IDE controllers
    189      1.1     gavan aceride* 	at pci? dev ? function ?	# Acer Lab IDE controllers
    190      1.1     gavan artsata* 	at pci? dev ? function ?	# Intel i31244 SATA controller
    191      1.1     gavan cmdide* 	at pci? dev ? function ?	# CMD tech IDE controllers
    192      1.1     gavan cypide* 	at pci? dev ? function ?	# Cypress IDE controllers
    193      1.1     gavan hptide* 	at pci? dev ? function ?	# Triones/HighPoint IDE controllers
    194      1.1     gavan optiide* 	at pci? dev ? function ?	# Opti IDE controllers
    195      1.1     gavan piixide* 	at pci? dev ? function ?	# Intel IDE controllers
    196      1.1     gavan pdcide* 	at pci? dev ? function ?	# Promise IDE controllers
    197      1.4    bouyer pdcsata*	at pci? dev ? function ?	# Promise SATA150 controllers
    198      1.1     gavan rccide* 	at pci? dev ? function ?	# ServerWorks IDE controllers
    199      1.1     gavan satalink*	at pci? dev ? function ?	# SiI SATALink controllers
    200      1.1     gavan siside* 	at pci? dev ? function ?	# SiS IDE controllers
    201      1.1     gavan slide*  	at pci? dev ? function ?	# Symphony Labs IDE controllers
    202      1.1     gavan stpcide*	at pci? dev ? function ?	# STMicro STPC IDE controllers
    203      1.1     gavan viaide* 	at pci? dev ? function ?	# VIA/AMD/Nvidia IDE controllers
    204      1.1     gavan 
    205      1.1     gavan # ATA (IDE) bus support
    206      1.1     gavan atabus* at ata?
    207      1.1     gavan 
    208      1.1     gavan # IDE drives
    209      1.1     gavan # Flags are used only with controllers that support DMA operations
    210      1.1     gavan # and mode settings (e.g. some pciide controllers)
    211      1.1     gavan # The lowest order four bits (rightmost digit) of the flags define the PIO
    212      1.1     gavan # mode to use, the next set of four bits the DMA mode and the third set the
    213      1.1     gavan # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    214      1.1     gavan # to use, and the last bit must be 1 for this setting to be used.
    215      1.1     gavan # For DMA and UDMA, 0xf (1111) means 'disable'.
    216      1.1     gavan # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    217      1.1     gavan # (0xc=1100, 0xa=1010, 0xf=1111)
    218      1.1     gavan # 0x0000 means "use whatever the drive claims to support".
    219      1.1     gavan wd*	at atabus? drive ? flags 0x0000
    220      1.1     gavan 
    221      1.1     gavan # ATA RAID configuration support, as found on some Promise controllers.
    222      1.1     gavan pseudo-device	ataraid
    223      1.1     gavan ld*	at ataraid? vendtype ? unit ?
    224      1.1     gavan 
    225      1.1     gavan # ATAPI bus support
    226      1.1     gavan atapibus* at atapi?
    227      1.1     gavan 
    228      1.1     gavan # ATAPI devices
    229      1.1     gavan # flags have the same meaning as for IDE drives.
    230      1.1     gavan # XXX No DMA on IDE devices for now
    231      1.1     gavan cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
    232      1.1     gavan sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    233      1.1     gavan st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    234      1.1     gavan uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    235      1.1     gavan 
    236      1.1     gavan # PCI network interfaces
    237      1.1     gavan # an*	at pci? dev ? function ?	# Aironet PC4500/PC4800 (802.11)
    238      1.1     gavan # ath*	at pci? dev ? function ?	# Atheros 5210/5211/5212 802.11
    239      1.1     gavan # atw*	at pci? dev ? function ?	# ADMtek ADM8211 (802.11)
    240      1.1     gavan # bce* 	at pci? dev ? function ?	# Broadcom 4401 10/100 Ethernet
    241      1.1     gavan # bge* 	at pci? dev ? function ?	# Broadcom 570x gigabit Ethernet
    242      1.1     gavan # en*	at pci? dev ? function ?	# ENI/Adaptec ATM
    243      1.1     gavan # ep*	at pci? dev ? function ?	# 3Com 3c59x
    244      1.1     gavan # epic*	at pci? dev ? function ?	# SMC EPIC/100 Ethernet
    245      1.1     gavan # esh*	at pci? dev ? function ?	# Essential HIPPI card
    246      1.1     gavan # ex*	at pci? dev ? function ?	# 3Com 90x[BC]
    247      1.1     gavan # fpa*	at pci? dev ? function ?	# DEC DEFPA FDDI
    248      1.1     gavan # fxp*	at pci? dev ? function ?	# Intel EtherExpress PRO 10+/100B
    249      1.1     gavan # gsip*	at pci? dev ? function ?	# NS83820 Gigabit Ethernet
    250      1.1     gavan #hme*	at pci? dev ? function ?	# Sun Microelectronics STP2002-STQ
    251      1.1     gavan # le*	at pci? dev ? function ?	# PCnet-PCI Ethernet
    252      1.1     gavan # lmc*	at pci? dev ? function ?	# Lan Media Corp SSI/HSSI/DS3
    253      1.1     gavan # mtd*	at pci? dev ? function ?	# Myson MTD803 3-in-1 Ethernet
    254      1.1     gavan # ne*	at pci? dev ? function ?	# NE2000-compatible Ethernet
    255      1.1     gavan # ntwoc*	at pci? dev ? function ?	# Riscom/N2 PCI Sync Serial
    256      1.1     gavan # pcn*	at pci? dev ? function ?	# AMD PCnet-PCI Ethernet
    257      1.1     gavan # re*	at pci? dev ? function ?	# Realtek 8139C+/8169/8169S/8110S
    258      1.1     gavan rtk*	at pci? dev ? function ?	# Realtek 8129/8139
    259      1.1     gavan # sf*	at pci? dev ? function ?	# Adaptec AIC-6915 Ethernet
    260      1.1     gavan # sip*	at pci? dev ? function ?	# SiS 900/DP83815 Ethernet
    261      1.1     gavan # skc*	at pci? dev ? function ?	# SysKonnect SK9821 Gigabit Ethernet
    262      1.1     gavan # sk*	at skc?				# SysKonnect SK9821 Gigabit Ethernet
    263      1.1     gavan # ste*	at pci? dev ? function ?	# Sundance ST-201 Ethernet
    264      1.1     gavan # stge*	at pci? dev ? function ?	# Sundance/Tamarack TC9021 Gigabit
    265      1.1     gavan # ti*	at pci? dev ? function ?	# Alteon ACEnic gigabit Ethernet
    266      1.1     gavan # tl*	at pci? dev ? function ?	# ThunderLAN-based Ethernet
    267      1.1     gavan # tlp*	at pci? dev ? function ?	# DECchip 21x4x and clones
    268      1.1     gavan # vr*	at pci? dev ? function ?	# VIA Rhine Fast Ethernet
    269      1.1     gavan # wi*	at pci? dev ? function ?	# Intersil Prism Mini-PCI (802.11b)
    270      1.1     gavan wm*	at pci? dev ? function ?	# Intel 8254x gigabit
    271      1.1     gavan 
    272      1.1     gavan # MII/PHY support
    273      1.1     gavan acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
    274      1.1     gavan amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    275      1.1     gavan bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    276      1.1     gavan brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    277      1.1     gavan dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    278      1.1     gavan exphy*	at mii? phy ?			# 3Com internal PHYs
    279      1.1     gavan gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    280      1.1     gavan glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    281      1.1     gavan gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    282      1.1     gavan icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    283      1.1     gavan igphy*	at mii? phy ?			# Intel IGP01E1000
    284      1.1     gavan inphy*	at mii? phy ?			# Intel 82555 PHYs
    285      1.1     gavan iophy*	at mii? phy ?			# Intel 82553 PHYs
    286      1.1     gavan lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    287      1.1     gavan makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    288      1.1     gavan nsphy*	at mii? phy ?			# NS83840 PHYs
    289      1.1     gavan nsphyter* at mii? phy ? 		# NS83843 PHYs
    290      1.1     gavan pnaphy* at mii? phy ?			# generic HomePNA PHYs
    291      1.1     gavan qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    292      1.1     gavan sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    293      1.1     gavan tlphy*	at mii? phy ?			# ThunderLAN PHYs
    294      1.1     gavan tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    295      1.1     gavan ukphy*	at mii? phy ?			# generic unknown PHYs
    296      1.1     gavan urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    297      1.1     gavan 
    298      1.1     gavan # USB Controller and Devices
    299      1.1     gavan 
    300      1.1     gavan # PCI USB controllers
    301      1.1     gavan # The EHCI is not ready for prime time.
    302      1.1     gavan #ehci*	at pci?	dev ? function ?	# Enhanced Host Controller
    303      1.1     gavan ohci*	at pci?	dev ? function ?	# Open Host Controller
    304      1.1     gavan uhci*	at pci?	dev ? function ?	# Universal Host Controller (Intel)
    305      1.1     gavan 
    306      1.1     gavan # CardBus USB controllers
    307      1.1     gavan #ehci*	at cardbus? dev ? function ?	# Enhanced Host Controller
    308      1.1     gavan #ohci*	at cardbus? dev ? function ?	# Open Host Controller
    309      1.1     gavan 
    310      1.1     gavan # ISA USB controllers
    311      1.1     gavan #slhci0	at isa? port 0x300 irq 5	# ScanLogic SL811HS
    312      1.1     gavan 
    313      1.1     gavan # USB bus support
    314      1.1     gavan #usb*	at ehci?
    315      1.1     gavan usb*	at ohci?
    316      1.1     gavan usb*	at uhci?
    317      1.1     gavan #usb*	at slhci?
    318      1.1     gavan 
    319      1.1     gavan # USB Hubs
    320      1.1     gavan # uhub*	at usb?
    321      1.1     gavan # uhub*	at uhub? port ? configuration ? interface ?
    322      1.1     gavan 
    323      1.1     gavan # USB HID device
    324      1.1     gavan # uhidev*	at uhub? port ? configuration ? interface ?
    325      1.1     gavan 
    326      1.1     gavan # USB Mice
    327      1.1     gavan # ums*	at uhidev? reportid ?
    328      1.1     gavan # wsmouse* at ums? mux 0
    329      1.1     gavan 
    330      1.1     gavan # USB eGalax touch-panel
    331      1.1     gavan # uep*	at uhub? port ?
    332      1.1     gavan # wsmouse* at uep? mux 0
    333      1.1     gavan 
    334      1.1     gavan # USB Keyboards
    335      1.1     gavan # ukbd*	at uhidev? reportid ?
    336      1.1     gavan # wskbd*	at ukbd? console ? mux 1
    337      1.1     gavan 
    338      1.1     gavan # USB Generic HID devices
    339      1.1     gavan # uhid*	at uhidev? reportid ?
    340      1.1     gavan 
    341      1.1     gavan # USB Printer
    342      1.1     gavan # ulpt*	at uhub? port ? configuration ? interface ?
    343      1.1     gavan 
    344      1.1     gavan # USB Modem
    345      1.1     gavan # umodem*	at uhub? port ? configuration ?
    346      1.1     gavan # ucom*	at umodem?
    347      1.1     gavan 
    348      1.1     gavan # USB Mass Storage
    349      1.1     gavan # umass*	at uhub? port ? configuration ? interface ?
    350      1.1     gavan # scsibus* at umass?
    351      1.1     gavan # wd*	at umass?
    352      1.1     gavan 
    353      1.1     gavan # USB audio
    354      1.1     gavan # uaudio*	at uhub? port ? configuration ?
    355      1.1     gavan 
    356      1.1     gavan # USB MIDI
    357      1.1     gavan # umidi* at uhub? port ? configuration ?
    358      1.1     gavan 
    359      1.1     gavan # USB IrDA
    360      1.1     gavan # USB-IrDA bridge spec
    361      1.1     gavan # uirda* at uhub? port ? configuration ? interface ?
    362      1.1     gavan # irframe* at uirda?
    363      1.1     gavan 
    364      1.1     gavan # SigmaTel STIr4200 USB/IrDA Bridge
    365      1.1     gavan # ustir* at uhub? port ?
    366      1.1     gavan # irframe* at ustir?
    367      1.1     gavan 
    368      1.1     gavan # USB Ethernet adapters
    369      1.1     gavan # aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    370      1.2  augustss # axe*	at uhub? port ?		# ASIX AX88172 based adapters
    371      1.1     gavan # cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    372      1.1     gavan # kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    373      1.1     gavan # udav*	at uhub? port ?		# Davicom DM9601 based adapters
    374      1.1     gavan # url*	at uhub? port ?		# Realtek RTL8150L based adapters
    375      1.1     gavan 
    376      1.1     gavan # Prolific PL2301/PL2302 host-to-host adapter
    377      1.1     gavan # upl*	at uhub? port ?
    378      1.1     gavan 
    379      1.1     gavan # Serial adapters
    380      1.1     gavan # ubsa*	at uhub? port ?		# Belkin serial adapter
    381      1.1     gavan # ucom*	at ubsa? portno ?
    382      1.1     gavan 
    383      1.1     gavan # uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    384      1.1     gavan # ucom*	at uftdi? portno ?
    385      1.1     gavan 
    386      1.1     gavan # umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    387      1.1     gavan # ucom*	at umct? portno ?
    388      1.1     gavan 
    389      1.1     gavan # uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    390      1.1     gavan # ucom*	at uplcom? portno ?
    391      1.1     gavan 
    392      1.1     gavan # uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
    393      1.1     gavan # ucom*	at uvscom? portno ?
    394      1.1     gavan 
    395      1.1     gavan # Diamond Multimedia Rio 500
    396      1.1     gavan # urio*	at uhub? port ?
    397      1.1     gavan 
    398      1.1     gavan # USB Handspring Visor
    399      1.1     gavan # uvisor*	at uhub? port ?
    400      1.1     gavan # ucom*	at uvisor?
    401      1.1     gavan 
    402      1.1     gavan # USB scanners
    403      1.1     gavan # uscanner* at uhub? port ?
    404      1.1     gavan 
    405      1.1     gavan # USB scanners that use SCSI emulation, e.g., HP5300
    406      1.1     gavan # usscanner* at uhub? port ?
    407      1.1     gavan 
    408      1.1     gavan # Y@P firmware loader
    409      1.1     gavan # uyap* at uhub? port ?
    410      1.1     gavan 
    411      1.1     gavan # D-Link DSB-R100 USB radio
    412      1.1     gavan # udsbr*	at uhub? port ?
    413      1.1     gavan # radio*	at udsbr?
    414      1.1     gavan 
    415      1.1     gavan # USB Generic driver
    416      1.1     gavan # ugen*	at uhub? port ?
    417      1.1     gavan 
    418      1.1     gavan 
    419      1.1     gavan # IrDA and Consumer Ir devices
    420      1.1     gavan 
    421      1.1     gavan # Toshiba Oboe
    422      1.1     gavan # oboe* 	at pci? dev ? function ?
    423      1.1     gavan # irframe* at oboe?
    424      1.1     gavan 
    425      1.1     gavan # PCI IEEE1394 controllers
    426      1.1     gavan #fwohci* at pci? dev ? function ?	# IEEE1394 Open Host Controller
    427      1.1     gavan 
    428      1.1     gavan # CardBus IEEE1394 controllers
    429      1.1     gavan #fwohci* at cardbus? dev ? function ?	# IEEE1394 Open Host Controller
    430      1.1     gavan 
    431      1.1     gavan #fw*	at fwbus?			# IP over 1394
    432      1.1     gavan 
    433      1.1     gavan # IEEE1394 nodes
    434      1.1     gavan #fwnode* at fwbus? idhi ? idlo ?
    435      1.1     gavan #sbpscsi* at fwnode?
    436      1.1     gavan #scsibus* at sbpscsi?
    437      1.1     gavan 
    438      1.1     gavan # Audio Devices
    439      1.1     gavan 
    440      1.1     gavan # PCI audio devices
    441      1.1     gavan auich*	at pci? dev ? function ?	# Intel ICH integrated AC'97 Audio
    442      1.1     gavan autri*	at pci? dev ? function ?	# Trident 4DWAVE based AC'97 Audio
    443      1.1     gavan auvia*	at pci? dev ? function ?	# VIA VT82C686A integrated AC'97 Audio
    444      1.1     gavan clcs*	at pci? dev ? function ?	# Cirrus Logic CS4280
    445      1.1     gavan clct*	at pci? dev ? function ?	# Cirrus Logic CS4281
    446      1.1     gavan cmpci*	at pci? dev ? function ?	# C-Media CMI8338/8738
    447      1.1     gavan eap*	at pci? dev ? function ?	# Ensoniq AudioPCI
    448      1.1     gavan emuxki* at pci? dev ? function ?	# Creative SBLive! and PCI512
    449      1.1     gavan esa*	at pci? dev ? function ?	# ESS Allegro-1 / Maestro-3 PCI Audio
    450      1.1     gavan esm*	at pci? dev ? function ?	# ESS Maestro-1/2/2e PCI Audio Accelerator
    451      1.1     gavan eso*	at pci? dev ? function ?	# ESS Solo-1 PCI AudioDrive
    452      1.1     gavan fms*	at pci? dev ? function ?	# Forte Media FM801
    453      1.1     gavan neo*	at pci? dev ? function ?	# NeoMagic 256 AC'97 Audio
    454      1.1     gavan sv*	at pci? dev ? function ?	# S3 SonicVibes
    455      1.1     gavan yds*	at pci? dev ? function ?	# Yamaha DS-1 PCI Audio
    456      1.1     gavan 
    457      1.1     gavan # OPL[23] FM synthesizers
    458      1.1     gavan opl*	at cmpci? flags 1
    459      1.1     gavan opl*	at eso?
    460      1.1     gavan opl*	at fms?
    461      1.1     gavan opl*	at sv?
    462      1.1     gavan opl*	at yds?
    463      1.1     gavan 
    464      1.1     gavan # Audio support
    465      1.1     gavan audio*	at audiobus?
    466      1.1     gavan 
    467      1.1     gavan # MPU 401 UARTs
    468      1.1     gavan mpu*	at cmpci?
    469      1.1     gavan mpu*	at eso?
    470      1.1     gavan mpu*	at fms?
    471      1.1     gavan mpu*	at yds?
    472      1.1     gavan 
    473      1.1     gavan # MIDI support
    474      1.1     gavan midi*	at midibus?
    475      1.1     gavan 
    476      1.1     gavan # On-board device support
    477      1.1     gavan obio*	at mainbus?
    478      1.1     gavan #com1	at obio? addr 0x900003e8 xint 1 # on-board UART
    479      1.1     gavan com0	at obio? addr 0x900002f8 xint 1 # on-board UART
    480      1.1     gavan #com*	at obio? addr 0x900003e8 xint 1 # on-board UART
    481      1.1     gavan #com*	at obio? addr 0x900003f8 xint 1 # on-board UART
    482      1.1     gavan 
    483      1.1     gavan # Pseudo-Devices
    484      1.1     gavan 
    485      1.1     gavan # disk/mass storage pseudo-devices
    486      1.1     gavan pseudo-device	md		1	# memory disk device (ramdisk)
    487      1.1     gavan #pseudo-device	vnd		4	# disk-like interface to files
    488  1.4.6.1      yamt pseudo-device	fss		4	# file system snapshot device
    489      1.1     gavan 
    490      1.1     gavan # network pseudo-devices
    491      1.1     gavan pseudo-device	bpfilter	4	# Berkeley packet filter
    492      1.1     gavan pseudo-device	loop			# network loopback
    493      1.1     gavan #pseudo-device	kttcp			# network loopback
    494      1.1     gavan 
    495      1.1     gavan # miscellaneous pseudo-devices
    496      1.1     gavan pseudo-device	pty			# pseudo-terminals
    497      1.1     gavan pseudo-device	rnd			# /dev/random and in-kernel generator
    498      1.1     gavan pseudo-device	clockctl		# user control of clock subsystem
    499      1.1     gavan pseudo-device	ksyms			# /dev/ksyms
    500      1.1     gavan 
    501      1.1     gavan # data mover pseudo-devices
    502      1.1     gavan #pseudo-device	swdmover		# softare dmover(9) back-end
    503      1.1     gavan #pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
    504