Home | History | Annotate | Line # | Download | only in conf
GENERIC revision 1.62.6.8
      1  1.62.6.8  nathanw # $NetBSD: GENERIC,v 1.62.6.8 2002/11/11 22:06:10 nathanw Exp $
      2  1.62.6.2  nathanw #
      3  1.62.6.2  nathanw # GENERIC machine description file
      4  1.62.6.2  nathanw # 
      5  1.62.6.2  nathanw # This machine description file is used to generate the default NetBSD
      6  1.62.6.2  nathanw # kernel.  The generic kernel does not include all options, subsystems
      7  1.62.6.2  nathanw # and device drivers, but should be useful for most applications.
      8  1.62.6.2  nathanw #
      9  1.62.6.2  nathanw # The machine description file can be customised for your specific
     10  1.62.6.2  nathanw # machine to reduce the kernel size and improve its performance.
     11  1.62.6.2  nathanw #
     12  1.62.6.2  nathanw # For further information on compiling NetBSD kernels, see the config(8)
     13  1.62.6.2  nathanw # man page.
     14  1.62.6.2  nathanw #
     15  1.62.6.2  nathanw # For further information on hardware support for this architecture, see
     16  1.62.6.2  nathanw # the intro(4) man page.  For further information about kernel options
     17  1.62.6.2  nathanw # for this architecture, see the options(4) man page.  For an explanation
     18  1.62.6.2  nathanw # of each device driver in this file see the section 4 man page for the
     19  1.62.6.2  nathanw # device.
     20  1.62.6.2  nathanw 
     21  1.62.6.2  nathanw include 	"arch/x68k/conf/std.x68k"
     22  1.62.6.2  nathanw 
     23  1.62.6.5  nathanw options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     24  1.62.6.5  nathanw 
     25  1.62.6.8  nathanw #ident 		"GENERIC-$Revision: 1.62.6.8 $"
     26  1.62.6.2  nathanw 
     27  1.62.6.2  nathanw maxusers	8
     28  1.62.6.2  nathanw 
     29  1.62.6.2  nathanw ## System kernel configuration.  See options(4) for more detail.
     30  1.62.6.2  nathanw 
     31  1.62.6.2  nathanw 
     32  1.62.6.2  nathanw ## Options for variants of the m68k MPU
     33  1.62.6.2  nathanw ## you must have at least the correct one; REQUIRED
     34  1.62.6.2  nathanw options 	M68030
     35  1.62.6.2  nathanw options 	M68040
     36  1.62.6.2  nathanw options 	M68060
     37  1.62.6.2  nathanw ## If you want an optimized kernel for a specific processor, use either:
     38  1.62.6.2  nathanw #makeoptions	CMACHFLAGS="-m68030"
     39  1.62.6.2  nathanw #makeoptions	CMACHFLAGS="-m68040 -Wa,-m68030 -Wa,-m68851"
     40  1.62.6.2  nathanw #makeoptions	CMACHFLAGS="-m68060 -Wa,-m68030 -Wa,-m68851"
     41  1.62.6.2  nathanw 
     42  1.62.6.2  nathanw 
     43  1.62.6.2  nathanw #### System options specific to the x68k port
     44  1.62.6.2  nathanw 
     45  1.62.6.2  nathanw options 	EXTENDED_MEMORY		# support for >16MB memory
     46  1.62.6.2  nathanw options 	FPU_EMULATE		# software fpu emulation for MC68030
     47  1.62.6.2  nathanw options 	FPSP			# floating point emulation for MC68040
     48  1.62.6.2  nathanw options 	M060SP			# int/fp emulation for MC68060
     49  1.62.6.2  nathanw #options 	JUPITER			# support for "Jupiter-X" accelerator
     50  1.62.6.2  nathanw #options 	MAPPEDCOPY		# use page mapping for large copyin/copyout
     51  1.62.6.2  nathanw #options 	ZSCONSOLE,ZSCN_SPEED="9600"	# use serial console
     52  1.62.6.2  nathanw 
     53  1.62.6.2  nathanw 
     54  1.62.6.2  nathanw #### System options that are the same for all ports
     55  1.62.6.2  nathanw 
     56  1.62.6.2  nathanw ## Root device configuration: change the ?'s if you are going to use a
     57  1.62.6.2  nathanw ## nonstandard root partition (other than where the kernel is booted from)
     58  1.62.6.2  nathanw ## and/or nonstandard root type (not ffs or nfs).  Normally this can be
     59  1.62.6.2  nathanw ## automagically determined at boot time.
     60  1.62.6.2  nathanw 
     61  1.62.6.2  nathanw config		netbsd	root on ? type ?
     62  1.62.6.2  nathanw #config		netbsd	root on sd0 type ffs
     63  1.62.6.2  nathanw 
     64  1.62.6.2  nathanw ## RTC is offset from GMT; -540 means JST-9
     65  1.62.6.2  nathanw options 	RTC_OFFSET=-540	# hardware clock is this many mins. west of GMT
     66  1.62.6.2  nathanw 
     67  1.62.6.2  nathanw ## System call tracing (see ktrace(1)).
     68  1.62.6.2  nathanw options 	KTRACE
     69  1.62.6.7  nathanw options 	SYSTRACE	# system call vetting via systrace(1)
     70  1.62.6.2  nathanw 
     71  1.62.6.2  nathanw ## Collect statistics on kernel malloc's and free's.  This does have a
     72  1.62.6.2  nathanw ## significant performance hit on slower machines, so it is intended for
     73  1.62.6.2  nathanw ## diagnostic use only.
     74  1.62.6.2  nathanw #options 	KMEMSTATS
     75  1.62.6.2  nathanw 
     76  1.62.6.2  nathanw ## System V compatible IPC subsystem.  (msgctl(2), semctl(2), and shmctl(2))
     77  1.62.6.2  nathanw options 	SYSVMSG		# System V message queues
     78  1.62.6.2  nathanw options 	SYSVSEM		# System V semaphores
     79  1.62.6.2  nathanw #options 	SEMMNI=10	# number of semaphore identifiers
     80  1.62.6.2  nathanw #options 	SEMMNS=60	# number of semaphores in system
     81  1.62.6.2  nathanw #options 	SEMUME=10	# max number of undo entries per process
     82  1.62.6.2  nathanw #options 	SEMMNU=30	# number of undo structures in system
     83  1.62.6.2  nathanw options 	SYSVSHM		# System V shared memory
     84  1.62.6.2  nathanw #options 	SHMMAXPGS=1024	# 1024 pages is the default
     85  1.62.6.2  nathanw 
     86  1.62.6.2  nathanw ## Loadable kernel module support
     87  1.62.6.2  nathanw #options 	LKM
     88  1.62.6.2  nathanw 
     89  1.62.6.7  nathanw options 	USERCONF	# userconf(4) support
     90  1.62.6.3  nathanw #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
     91  1.62.6.3  nathanw 
     92  1.62.6.8  nathanw # Enable experimental buffer queue strategy for better responsiness under 
     93  1.62.6.8  nathanw # high disk I/O load. Use it with caution - it's not proven to be stable yet.
     94  1.62.6.8  nathanw #options 	NEW_BUFQ_STRATEGY
     95  1.62.6.8  nathanw 
     96  1.62.6.2  nathanw ## NFS boot options; not supported currently: needs nfsboot program
     97  1.62.6.2  nathanw #options 	NFS_BOOT_BOOTPARAM
     98  1.62.6.2  nathanw #options 	NFS_BOOT_BOOTP
     99  1.62.6.2  nathanw #options 	NFS_BOOT_DHCP
    100  1.62.6.2  nathanw 
    101  1.62.6.2  nathanw #### Debugging options
    102  1.62.6.2  nathanw 
    103  1.62.6.2  nathanw ## The DDB in-kernel debugger runs at panic (unless DDB_ONPANIC=0), or at
    104  1.62.6.2  nathanw ## serial console break or keyboard reset, where the PROM would normally
    105  1.62.6.2  nathanw ## intercept.  DDB_HISTORY_SIZE adds up/down arrow command history.
    106  1.62.6.2  nathanw #options 	DDB			# kernel dynamic debugger
    107  1.62.6.2  nathanw #options 	DDB_HISTORY_SIZE=100	# enable history editing in DDB
    108  1.62.6.2  nathanw #options 	DDB_ONPANIC=1		# see also sysctl(8): `ddb.onpanic'
    109  1.62.6.2  nathanw #options 	PANICBUTTON		# interrupt switch invokes DDB
    110  1.62.6.2  nathanw 
    111  1.62.6.2  nathanw ## You may also use gdb, on another computer connected to this machine over
    112  1.62.6.2  nathanw ## a serial port.  Both KGDB_DEV and KGDB_DEVRATE should be specified;
    113  1.62.6.2  nathanw ## KGDB_DEV is a dev_t encoded device number of the serial port to use.
    114  1.62.6.2  nathanw ## KGDB is not supported for now.
    115  1.62.6.2  nathanw #options 	KGDB			# support for kernel gdb
    116  1.62.6.2  nathanw #options 	KGDB_DEV=0xc00		# kgdb device number
    117  1.62.6.2  nathanw #options 	KGDB_DEVRATE=9600	# baud rate
    118  1.62.6.2  nathanw 
    119  1.62.6.2  nathanw ## Compile the kernel with debugging symbols (`netbsd.gdb' is the debug file),
    120  1.62.6.2  nathanw ## such that gdb(1) can be used on a kernel coredump.
    121  1.62.6.2  nathanw 
    122  1.62.6.2  nathanw #makeoptions	DEBUG="-g"
    123  1.62.6.2  nathanw 
    124  1.62.6.2  nathanw ## Adds code to the kernel that does internal consistency checks, and will
    125  1.62.6.2  nathanw ## cause the kernel to panic if corruption of internal data structures
    126  1.62.6.2  nathanw ## is detected.
    127  1.62.6.2  nathanw #options 	DIAGNOSTIC	# extra kernel sanity checking
    128  1.62.6.2  nathanw 
    129  1.62.6.2  nathanw ## Enable (possibly expensive) debugging code that may also display messages
    130  1.62.6.2  nathanw ## on the system console
    131  1.62.6.2  nathanw #options 	DEBUG
    132  1.62.6.2  nathanw 
    133  1.62.6.6  nathanw ## These options enable verbose messages for several subsystems.
    134  1.62.6.6  nathanw ## Warning, these may compile large string tables into the kernel!
    135  1.62.6.6  nathanw #options 	SCSIVERBOSE	# human readable SCSI error messages
    136  1.62.6.6  nathanw #options 	USBVERBOSE	# verbose USB device autoconfig messages
    137  1.62.6.2  nathanw 
    138  1.62.6.2  nathanw ## `INSECURE' turns off the kernel security level (securelevel = 0 always).
    139  1.62.6.2  nathanw ## This allows writing to /dev/mem, loading kernel modules while multi-user,
    140  1.62.6.2  nathanw ## and other insecurities good only for development work.  Do not use this
    141  1.62.6.2  nathanw ## option on a production machine.
    142  1.62.6.2  nathanw #options 	INSECURE
    143  1.62.6.2  nathanw 
    144  1.62.6.2  nathanw ## Allow non-root users to grab /dev/console with programs such as xconsole.
    145  1.62.6.2  nathanw ## `xconsole' therefore does not need setuid root with this option enabled.
    146  1.62.6.2  nathanw #options 	UCONSOLE
    147  1.62.6.2  nathanw 
    148  1.62.6.2  nathanw ## `FDSCRIPTS' allows non-readable but executable scripts by providing a
    149  1.62.6.2  nathanw ## pre-opened opaque file to the script interpreter.  `SETUIDSCRIPTS',
    150  1.62.6.2  nathanw ## which implies FDSCRIPTS, allows scripts to be set-user-id using the same
    151  1.62.6.2  nathanw ## opaque file mechanism.  Perl calls this "secure setuid scripts."
    152  1.62.6.2  nathanw 
    153  1.62.6.2  nathanw #options 	FDSCRIPTS
    154  1.62.6.2  nathanw #options 	SETUIDSCRIPTS
    155  1.62.6.2  nathanw 
    156  1.62.6.2  nathanw ## Options for compatibility with previous releases foreign system binaries.
    157  1.62.6.2  nathanw 
    158  1.62.6.2  nathanw options 	COMPAT_43	# 4.3BSD system interfaces
    159  1.62.6.2  nathanw options 	COMPAT_09	# NetBSD 0.9 binary compatibility
    160  1.62.6.2  nathanw options 	COMPAT_10	# NetBSD 1.0 binary compatibility
    161  1.62.6.2  nathanw options 	COMPAT_11	# NetBSD 1.1 binary compatibility
    162  1.62.6.2  nathanw options 	COMPAT_12	# NetBSD 1.2 binary compatibility
    163  1.62.6.2  nathanw options 	COMPAT_13	# NetBSD 1.3 binary compatibility
    164  1.62.6.2  nathanw options 	COMPAT_14	# NetBSD 1.4 binary compatibility
    165  1.62.6.2  nathanw options 	COMPAT_AOUT_M68K # compatibility with NetBSD/m68k a.out
    166  1.62.6.2  nathanw #options 	COMPAT_M68K4K	# NetBSD/m68k4k binaries
    167  1.62.6.2  nathanw #options 	COMPAT_SUNOS	# SunOS 4.x binary compatibility; broken
    168  1.62.6.2  nathanw #options 	COMPAT_SVR4	# SVR4 binary compatibility; broken
    169  1.62.6.2  nathanw #options 	COMPAT_LINUX	# Linux/m68k binary compatibility
    170  1.62.6.2  nathanw #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    171  1.62.6.2  nathanw 
    172  1.62.6.2  nathanw ## File systems.
    173  1.62.6.2  nathanw file-system	FFS		# Berkeley Fast Filesystem
    174  1.62.6.2  nathanw file-system	NFS		# Sun NFS-compatible filesystem client
    175  1.62.6.2  nathanw file-system	KERNFS		# kernel data-structure filesystem
    176  1.62.6.2  nathanw #file-system	NULLFS		# NULL layered filesystem (buggy)
    177  1.62.6.2  nathanw #file-system 	OVERLAY		# overlay file system
    178  1.62.6.2  nathanw file-system	MFS		# memory-based filesystem
    179  1.62.6.2  nathanw #file-system	FDESC		# user file descriptor filesystem
    180  1.62.6.2  nathanw file-system	UMAPFS		# uid/gid remapping filesystem
    181  1.62.6.2  nathanw #file-system	LFS		# Log-structured filesystem (experimental)
    182  1.62.6.2  nathanw #file-system	PORTAL		# portal filesystem (experimental)
    183  1.62.6.2  nathanw file-system	PROCFS		# /proc
    184  1.62.6.2  nathanw file-system	CD9660		# ISO 9660 + Rock Ridge file system
    185  1.62.6.2  nathanw #file-system	UNION		# union file system (a little buggy)
    186  1.62.6.2  nathanw file-system	MSDOSFS		# MS-DOS FAT filesystem(s).
    187  1.62.6.2  nathanw #file-system 	ADOSFS		# AmigaDOS filesystem
    188  1.62.6.2  nathanw 
    189  1.62.6.2  nathanw ## File system options.
    190  1.62.6.2  nathanw options 	NFSSERVER	# Sun NFS-compatible filesystem server
    191  1.62.6.2  nathanw #options 	QUOTA		# FFS quotas
    192  1.62.6.2  nathanw #options 	FFS_EI		# FFS Endian Independent support
    193  1.62.6.2  nathanw options 	SOFTDEP		# FFS soft updates support.
    194  1.62.6.2  nathanw 
    195  1.62.6.2  nathanw ## Network protocol support.  In most environments, INET is required.
    196  1.62.6.2  nathanw options 	INET		# IP (Internet Protocol) v4
    197  1.62.6.2  nathanw options 	INET6		# IPV6
    198  1.62.6.2  nathanw #options 	IPSEC		# IP security
    199  1.62.6.2  nathanw #options 	IPSEC_ESP	# IP security (encryption part; define w/IPSEC)
    200  1.62.6.2  nathanw #options 	IPSEC_DEBUG	# debug for IP security
    201  1.62.6.2  nathanw #options 	GATEWAY		# packet forwarding ("router switch")
    202  1.62.6.2  nathanw #options 	MROUTING	# packet forwarding of multicast packets
    203  1.62.6.2  nathanw #options 	DIRECTED_BROADCAST	# allow broadcasts through routers
    204  1.62.6.2  nathanw #options 	NS		# Xerox NS networking
    205  1.62.6.2  nathanw #options 	NSIP		# Xerox NS tunneling over IP
    206  1.62.6.2  nathanw #options 	ISO,TPIP	# OSI networking
    207  1.62.6.2  nathanw #options 	EON		# OSI tunneling over IP
    208  1.62.6.2  nathanw #options 	CCITT,LLC,HDLC	# X.25 packet switched protocol
    209  1.62.6.2  nathanw #options 	NETATALK	# AppleTalk (over Ethernet) protocol
    210  1.62.6.2  nathanw #options 	NTP		# Network Time Protocol in-kernel support
    211  1.62.6.2  nathanw #options 	PPS_SYNC	# Add serial line synchronization for NTP
    212  1.62.6.2  nathanw options 	PFIL_HOOKS	# Add pfil(9) hooks, intended for custom LKMs.
    213  1.62.6.2  nathanw #options 	IPFILTER_LOG	# Add ipmon(8) logging for ipfilter device
    214  1.62.6.7  nathanw #options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
    215  1.62.6.2  nathanw #options 	PPP_BSDCOMP	# Add BSD compression to ppp device
    216  1.62.6.2  nathanw #options 	PPP_DEFLATE	# Add deflate (libz) compression to ppp device
    217  1.62.6.2  nathanw #options 	PPP_FILTER	# Add active filters for ppp (via bpf)
    218  1.62.6.2  nathanw #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
    219  1.62.6.2  nathanw 
    220  1.62.6.2  nathanw 
    221  1.62.6.2  nathanw #### Device configurations
    222  1.62.6.2  nathanw 
    223  1.62.6.2  nathanw ## Fundamental devices; see also std.x68k
    224  1.62.6.2  nathanw dmac0	at intio0 addr 0xe84000		# DMA controler
    225  1.62.6.2  nathanw xel0	at intio0
    226  1.62.6.2  nathanw opm0	at intio0 addr 0xe90000		# OPM: required for fdc
    227  1.62.6.2  nathanw 
    228  1.62.6.2  nathanw ## Display devices and console
    229  1.62.6.2  nathanw grfbus0	at mainbus0			# bitmapped displays
    230  1.62.6.2  nathanw grf0	at grfbus0			# multiplane graphics
    231  1.62.6.2  nathanw grf1	at grfbus0			# flexible graphics
    232  1.62.6.2  nathanw 
    233  1.62.6.2  nathanw kbd0	at mfp0				# standard keyboard
    234  1.62.6.2  nathanw ite0	at grf0				# internal terminal emulator
    235  1.62.6.2  nathanw options 	ITE_KERNEL_ATTR=4	# bold for kernel messages
    236  1.62.6.2  nathanw 					# see /sys/arch/x68k/dev/itevar.h
    237  1.62.6.2  nathanw pseudo-device	pow		2	# software power switch
    238  1.62.6.2  nathanw 
    239  1.62.6.2  nathanw ## floppy disks
    240  1.62.6.2  nathanw fdc0	at intio0 addr 0xe94000 intr 96 dma 0 dmaintr 100 # floppy controler
    241  1.62.6.2  nathanw fd*	at fdc0 unit ?			# builtin floppy drives
    242  1.62.6.2  nathanw 
    243  1.62.6.2  nathanw ## SCSI devices
    244  1.62.6.2  nathanw scsirom0 at intio0 addr 0xfc0000		# Built-in SCSI BIOS
    245  1.62.6.2  nathanw scsirom1 at intio0 addr 0xea0020		# External SCSI BIOS
    246  1.62.6.2  nathanw spc0	at scsirom0				# genuin SCSI
    247  1.62.6.2  nathanw spc1	at scsirom1				# genuin SCSI
    248  1.62.6.2  nathanw scsibus* at spc?
    249  1.62.6.2  nathanw mha0	at scsirom1				# Mankai MK-HA1 (Mach-2)
    250  1.62.6.2  nathanw scsibus* at mha0
    251  1.62.6.2  nathanw 
    252  1.62.6.2  nathanw sd*	at scsibus? target ? lun ?	# SCSI disks
    253  1.62.6.2  nathanw cd*	at scsibus? target ? lun ?	# SCSI CD-ROMs
    254  1.62.6.2  nathanw #st*	at scsibus? target ? lun ?	# SCSI tapes
    255  1.62.6.2  nathanw #ss*	at scsibus? target ? lun ?	# SCSI scanners
    256  1.62.6.2  nathanw #ch*	at scsibus? target ? lun ?	# SCSI changer devices
    257  1.62.6.2  nathanw #uk*	at scsibus? target ? lun ?	# SCSI unknown devices
    258  1.62.6.2  nathanw 
    259  1.62.6.2  nathanw ## Ports
    260  1.62.6.2  nathanw zsc0	at intio0 addr 0xe98000 intr 112
    261  1.62.6.2  nathanw zstty0	at zsc0 channel 0		# built-in RS-232C
    262  1.62.6.2  nathanw ms0	at zsc0 channel 1		# standard mouse
    263  1.62.6.2  nathanw #zsc1	at intio0 addr 0xeafc00 intr 113
    264  1.62.6.2  nathanw #zstty2	at zsc1 channel 0
    265  1.62.6.2  nathanw #zstty3	at zsc1 channel 1
    266  1.62.6.2  nathanw #zsc2	at intio0 addr 0xeafc10 intr 114
    267  1.62.6.2  nathanw #zstty4	at zsc2 channel 0
    268  1.62.6.2  nathanw #zstty5	at zsc2 channel 1
    269  1.62.6.2  nathanw par0	at intio0 addr 0xe8c000 	# Builtin printer port
    270  1.62.6.2  nathanw 
    271  1.62.6.2  nathanw pseudo-device	sram			# battery-backuped static RAM
    272  1.62.6.2  nathanw pseudo-device	bell			# OPM bell
    273  1.62.6.2  nathanw 
    274  1.62.6.2  nathanw xcom0	at mainbus0			# NS16550 fast serial
    275  1.62.6.2  nathanw xcom1	at mainbus0
    276  1.62.6.2  nathanw 
    277  1.62.6.2  nathanw ## Audio device
    278  1.62.6.2  nathanw vs0 at intio0 addr 0xe92000 dma 3 dmaintr 106
    279  1.62.6.2  nathanw audio*	at vs?
    280  1.62.6.2  nathanw 
    281  1.62.6.2  nathanw ## Network interfaces
    282  1.62.6.2  nathanw ne*	at intio0 addr 0xece300 intr 249	# Nereid Ethernet
    283  1.62.6.3  nathanw ne*	at intio0 addr 0xeceb00 intr 248	# Nereid Ethernet
    284  1.62.6.2  nathanw neptune0 at intio0 addr 0xece000 intr 249	# Neptune-X
    285  1.62.6.2  nathanw neptune1 at intio0 addr 0xece400 intr 249	# Neptune-X at alt. addr.
    286  1.62.6.2  nathanw ne*	at neptune? addr 0x300			# NE2000 or clone
    287  1.62.6.2  nathanw 
    288  1.62.6.2  nathanw 
    289  1.62.6.6  nathanw ## MII/PHY support for USB ethernet
    290  1.62.6.6  nathanw #acphy*	at mii? phy ?
    291  1.62.6.6  nathanw 
    292  1.62.6.6  nathanw ## USB Controller and Devices; Experimental
    293  1.62.6.6  nathanw 
    294  1.62.6.6  nathanw # Nereid USB controllers
    295  1.62.6.6  nathanw #slhci0	at intio0 addr 0xece380 intr 251
    296  1.62.6.6  nathanw #slhci1	at intio0 addr 0xeceb80 intr 250
    297  1.62.6.6  nathanw #options	SLHCI_DEBUG
    298  1.62.6.6  nathanw 
    299  1.62.6.6  nathanw # USB bus support
    300  1.62.6.6  nathanw #usb*	at slhci?
    301  1.62.6.6  nathanw 
    302  1.62.6.6  nathanw # USB Hubs
    303  1.62.6.6  nathanw #uhub*	at usb?
    304  1.62.6.6  nathanw #uhub*	at uhub? port ? configuration ? interface ?
    305  1.62.6.6  nathanw 
    306  1.62.6.6  nathanw # USB HID device
    307  1.62.6.6  nathanw #uhidev*	at uhub? port ? configuration ? interface ?
    308  1.62.6.6  nathanw 
    309  1.62.6.6  nathanw # USB Mice; not supported wscons yet
    310  1.62.6.6  nathanw #ums*	at uhidev? reportid ?
    311  1.62.6.6  nathanw #wsmouse* at ums? mux 0
    312  1.62.6.6  nathanw 
    313  1.62.6.6  nathanw # USB Keyboards; not supported wscons yet
    314  1.62.6.6  nathanw #ukbd*	at uhidev? reportid ?
    315  1.62.6.6  nathanw #wskbd*	at ukbd? console ? mux 1
    316  1.62.6.6  nathanw 
    317  1.62.6.6  nathanw # USB Generic HID devices
    318  1.62.6.6  nathanw #uhid*	at uhidev? reportid ?
    319  1.62.6.6  nathanw 
    320  1.62.6.6  nathanw # USB Printer
    321  1.62.6.6  nathanw #ulpt*	at uhub? port ? configuration ? interface ?
    322  1.62.6.6  nathanw 
    323  1.62.6.6  nathanw # USB Modem
    324  1.62.6.6  nathanw #umodem*	at uhub? port ? configuration ?
    325  1.62.6.6  nathanw #ucom*	at umodem?
    326  1.62.6.6  nathanw 
    327  1.62.6.6  nathanw # USB Mass Storage; wd not supported
    328  1.62.6.6  nathanw #umass*	at uhub? port ? configuration ? interface ?
    329  1.62.6.6  nathanw #atapibus* at umass? channel ?
    330  1.62.6.6  nathanw #scsibus* at umass? channel ?
    331  1.62.6.6  nathanw #wd* at umass?
    332  1.62.6.6  nathanw 
    333  1.62.6.6  nathanw # USB audio
    334  1.62.6.6  nathanw #uaudio*	at uhub? port ? configuration ?
    335  1.62.6.6  nathanw 
    336  1.62.6.6  nathanw # USB MIDI
    337  1.62.6.6  nathanw #umidi* at uhub? port ? configuration ?
    338  1.62.6.6  nathanw 
    339  1.62.6.6  nathanw # USB IrDA
    340  1.62.6.6  nathanw # USB-IrDA bridge spec
    341  1.62.6.6  nathanw #uirda* at uhub? port ? configuration ? interface ?
    342  1.62.6.6  nathanw #irframe* at uirda?
    343  1.62.6.6  nathanw 
    344  1.62.6.6  nathanw # SigmaTel STIr4200 USB/IrDA Bridge
    345  1.62.6.6  nathanw #ustir* at uhub? port ?
    346  1.62.6.6  nathanw #irframe* at ustir?
    347  1.62.6.6  nathanw 
    348  1.62.6.6  nathanw # USB Ethernet adapters
    349  1.62.6.6  nathanw #aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    350  1.62.6.6  nathanw #cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    351  1.62.6.6  nathanw #kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    352  1.62.6.6  nathanw #url*	at uhub? port ?		# Realtek RTL8150L based adapters
    353  1.62.6.6  nathanw 
    354  1.62.6.6  nathanw # Prolific PL2301/PL2302 host-to-host adapter
    355  1.62.6.6  nathanw #upl*	at uhub? port ?
    356  1.62.6.6  nathanw 
    357  1.62.6.6  nathanw # Serial adapters
    358  1.62.6.6  nathanw #uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    359  1.62.6.6  nathanw #ucom*	at uftdi? portno ?
    360  1.62.6.6  nathanw 
    361  1.62.6.6  nathanw #umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    362  1.62.6.6  nathanw #ucom*	at umct? portno ?
    363  1.62.6.6  nathanw 
    364  1.62.6.6  nathanw #uplcom*	at uhub? port ?		# I/O DATA USB-RSAQ2 serial adapter
    365  1.62.6.6  nathanw #ucom*	at uplcom? portno ?
    366  1.62.6.6  nathanw 
    367  1.62.6.6  nathanw #uvscom*	at uhub? port ?		# SUNTAC Slipper U VS-10U serial adapter
    368  1.62.6.6  nathanw #ucom*	at uvscom? portno ?
    369  1.62.6.6  nathanw 
    370  1.62.6.6  nathanw # Diamond Multimedia Rio 500
    371  1.62.6.6  nathanw #urio*	at uhub? port ?
    372  1.62.6.6  nathanw 
    373  1.62.6.6  nathanw # USB Handspring Visor
    374  1.62.6.6  nathanw #uvisor*	at uhub? port ?
    375  1.62.6.6  nathanw #ucom*	at uvisor?
    376  1.62.6.6  nathanw 
    377  1.62.6.6  nathanw # USB scanners
    378  1.62.6.6  nathanw #uscanner* at uhub? port ?
    379  1.62.6.6  nathanw 
    380  1.62.6.6  nathanw # USB scanners that use SCSI emulation, e.g., HP5300
    381  1.62.6.6  nathanw #usscanner* at uhub? port ?
    382  1.62.6.6  nathanw #scsibus* at usscanner? channel ?
    383  1.62.6.6  nathanw 
    384  1.62.6.6  nathanw # Y@P firmware loader
    385  1.62.6.6  nathanw #uyap* at uhub? port ?
    386  1.62.6.6  nathanw 
    387  1.62.6.6  nathanw # D-Link DSB-R100 USB radio
    388  1.62.6.6  nathanw #udsbr*	at uhub? port ?
    389  1.62.6.6  nathanw #radio*	at udsbr?
    390  1.62.6.6  nathanw 
    391  1.62.6.6  nathanw # USB Generic driver
    392  1.62.6.6  nathanw #ugen*	at uhub? port ?
    393  1.62.6.6  nathanw 
    394  1.62.6.6  nathanw 
    395  1.62.6.2  nathanw #### Pseudo devices
    396  1.62.6.2  nathanw 
    397  1.62.6.2  nathanw ## A disk-like interface to files.  Can be used to create floppy, CD,
    398  1.62.6.2  nathanw ## miniroot images, etc.
    399  1.62.6.2  nathanw 
    400  1.62.6.2  nathanw pseudo-device	vnd	4
    401  1.62.6.2  nathanw 
    402  1.62.6.2  nathanw ## Concatenated and striped disks; with this, you can create a software-based
    403  1.62.6.2  nathanw ## disk array similar to a "RAID 0" setup.  See ccd(4).
    404  1.62.6.2  nathanw 
    405  1.62.6.2  nathanw #pseudo-device	ccd	4
    406  1.62.6.2  nathanw 
    407  1.62.6.7  nathanw ## Cryptographic disk devices.  See cgd(4).
    408  1.62.6.7  nathanw 
    409  1.62.6.7  nathanw #pseudo-device	cgd	4
    410  1.62.6.7  nathanw 
    411  1.62.6.2  nathanw ## RAIDframe disk driver: software RAID driver.  See raid(4).
    412  1.62.6.2  nathanw 
    413  1.62.6.3  nathanw pseudo-device	raid	8
    414  1.62.6.3  nathanw options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
    415  1.62.6.3  nathanw # Options to enable various other RAIDframe RAID types.
    416  1.62.6.3  nathanw # options	RF_INCLUDE_EVENODD=1
    417  1.62.6.3  nathanw # options	RF_INCLUDE_RAID5_RS=1
    418  1.62.6.3  nathanw # options	RF_INCLUDE_PARITYLOGGING=1
    419  1.62.6.3  nathanw # options	RF_INCLUDE_CHAINDECLUSTER=1
    420  1.62.6.3  nathanw # options	RF_INCLUDE_INTERDECLUSTER=1
    421  1.62.6.3  nathanw # options 	RF_INCLUDE_PARITY_DECLUSTERING=1
    422  1.62.6.3  nathanw # options	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
    423  1.62.6.3  nathanw 
    424  1.62.6.2  nathanw 
    425  1.62.6.2  nathanw ## Memory disk device, used on boot floppies with compressed
    426  1.62.6.2  nathanw ## kernel-plus-root-disk images.
    427  1.62.6.2  nathanw 
    428  1.62.6.2  nathanw #pseudo-device	md	1
    429  1.62.6.2  nathanw 
    430  1.62.6.2  nathanw ## Loopback network interface; required
    431  1.62.6.2  nathanw pseudo-device	loop
    432  1.62.6.2  nathanw 
    433  1.62.6.2  nathanw ## SLIP and CSLIP interfaces, for IP over a serial line.
    434  1.62.6.2  nathanw pseudo-device	sl		1
    435  1.62.6.2  nathanw 
    436  1.62.6.2  nathanw ## PPP, the successor to SLIP.  See pppd(8).
    437  1.62.6.2  nathanw pseudo-device	ppp		1
    438  1.62.6.2  nathanw 
    439  1.62.6.2  nathanw ## PPP over Ethernet (RFC 2516)
    440  1.62.6.2  nathanw pseudo-device	pppoe
    441  1.62.6.2  nathanw 
    442  1.62.6.2  nathanw ## Network "tunnel" device, allowing protocol stacks to run in the userland.
    443  1.62.6.2  nathanw ## This is used by the third-party user-mode "ppp" program, and others.
    444  1.62.6.2  nathanw #pseudo-device	tun		4
    445  1.62.6.2  nathanw 
    446  1.62.6.2  nathanw ## Generic L3 over IP tunnel
    447  1.62.6.2  nathanw #pseudo-device	gre		2	# generic L3 over IP tunnel
    448  1.62.6.2  nathanw 
    449  1.62.6.2  nathanw ## Berkeley Packet Filter, required to run RARPD.  A generic C-language
    450  1.62.6.2  nathanw ## interface that allows selective examining of incoming packets.
    451  1.62.6.2  nathanw pseudo-device	bpfilter	4
    452  1.62.6.2  nathanw 
    453  1.62.6.2  nathanw ## IP Filter, used in firewall and NAT applications.  See ipnat(8) for
    454  1.62.6.2  nathanw ## one example of the use of the IP Filter.
    455  1.62.6.2  nathanw #pseudo-device	ipfilter
    456  1.62.6.2  nathanw 
    457  1.62.6.2  nathanw ## for IPv6
    458  1.62.6.2  nathanw pseudo-device	gif		1	# IPv[46] over IPv[46] tunnel (RFC1933)
    459  1.62.6.2  nathanw #pseudo-device	faith		1	# IPv[46] tcp relay translation i/f
    460  1.62.6.2  nathanw #pseudo-device	stf		1	# 6to4 IPv6 over IPv4 encapsulation
    461  1.62.6.2  nathanw 
    462  1.62.6.2  nathanw ## IEEE 802.1Q Virtual LAN encapsulation, see vlan(4).
    463  1.62.6.2  nathanw pseudo-device	vlan
    464  1.62.6.2  nathanw 
    465  1.62.6.2  nathanw ## Simple inter-network traffic bridging
    466  1.62.6.2  nathanw pseudo-device	bridge
    467  1.62.6.2  nathanw 
    468  1.62.6.2  nathanw #### Other device configuration
    469  1.62.6.2  nathanw 
    470  1.62.6.2  nathanw ## Pseudo ttys, required for network logins and programs like screen.
    471  1.62.6.2  nathanw 
    472  1.62.6.2  nathanw pseudo-device	pty			# pseudo-terminals
    473  1.62.6.2  nathanw 
    474  1.62.6.2  nathanw ## Random device, used to implement /dev/random (a source of random noise),
    475  1.62.6.2  nathanw ## and generate randomness for some kernel formulae.
    476  1.62.6.2  nathanw 
    477  1.62.6.2  nathanw pseudo-device	rnd
    478  1.62.6.5  nathanw 
    479  1.62.6.5  nathanw pseudo-device	clockctl		# user control of clock subsystem
    480